Home
last modified time | relevance | path

Searched refs:origFilePath (Results 1 – 25 of 39) sorted by relevance

12

/dports/devel/kdevelop/kdevelop-21.12.3/kdevplatform/util/
H A Dkdevformatsource.cpp29 QString origFilePath = origFileInfo.canonicalFilePath(); in main() local
35 tempFilePath = origFilePath; in main()
39 KDevFormatFile formatFile(origFilePath, tempFilePath); in main()
H A Dkdevformatfile.cpp19 KDevFormatFile::KDevFormatFile(const QString& origFilePath, const QString& tempFilePath) in KDevFormatFile() argument
21 , m_origFilePath(origFilePath)
H A Dkdevformatfile.h24 KDevFormatFile(const QString& origFilePath, const QString& tempFilePath);
/dports/devel/kf5-kio/kio-5.89.0/src/ioslaves/trash/tests/
H A Dtesttrash.cpp287 …if (origFilePath.contains(QChar(0x2153)) || origFilePath.contains(QLatin1Char('%')) || origFilePat… in checkInfoFile()
311 if (!QFile::exists(origFilePath)) { in trashFile()
312 createTestFile(origFilePath); in trashFile()
314 QUrl u = QUrl::fromLocalFile(origFilePath); in trashFile()
334 QVERIFY(!QFile::exists(origFilePath)); in trashFile()
414 if (!QFile::exists(origFilePath)) { in trashFileIntoOtherPartition()
415 createTestFile(origFilePath); in trashFileIntoOtherPartition()
417 QUrl u = QUrl::fromLocalFile(origFilePath); in trashFileIntoOtherPartition()
432 QVERIFY(!QFile::exists(origFilePath)); in trashFileIntoOtherPartition()
480 QUrl u = QUrl::fromLocalFile(origFilePath); in trashSymlink()
[all …]
H A Dtesttrash.h98 void trashFile(const QString &origFilePath, const QString &fileId);
99 void trashSymlink(const QString &origFilePath, const QString &fileName, bool broken);
/dports/graphics/dcp2icc/dcp2icc-0.1/fixes/XMP-Toolkit/
H A DXMPFiles.cpp1145 std::string origFilePath ( this->filePath ); in CloseFile() local
1184 CreateTempFile ( origFilePath, &tempFilePath, kCopyMacRsrc ); in CloseFile()
1189 this->handler->WriteFile ( origFileRef, origFilePath ); in CloseFile()
1211 CreateTempFile ( origFilePath, &copyFilePath, kCopyMacRsrc ); in CloseFile()
1223 CreateTempFile ( origFilePath, &tempFilePath ); in CloseFile()
1225 LFA_Rename ( origFilePath.c_str(), tempFilePath.c_str() ); in CloseFile()
1232 LFA_Rename ( copyFilePath.c_str(), origFilePath.c_str() ); in CloseFile()
1236 LFA_Rename ( tempFilePath.c_str(), origFilePath.c_str() ); in CloseFile()
1256 LFA_Delete ( origFilePath.c_str() ); in CloseFile()
1257 LFA_Rename ( tempFilePath.c_str(), origFilePath.c_str() ); in CloseFile()
/dports/graphics/dcp2icc/dcp2icc-0.1/XMP-Toolkit-SDK-4.4.2/source/XMPFiles/
H A DXMPFiles.cpp1145 std::string origFilePath ( this->filePath ); in CloseFile() local
1184 CreateTempFile ( origFilePath, &tempFilePath, kCopyMacRsrc ); in CloseFile()
1189 this->handler->WriteFile ( origFileRef, origFilePath ); in CloseFile()
1211 CreateTempFile ( origFilePath, &copyFilePath, kCopyMacRsrc ); in CloseFile()
1223 CreateTempFile ( origFilePath, &tempFilePath ); in CloseFile()
1225 LFA_Rename ( origFilePath.c_str(), tempFilePath.c_str() ); in CloseFile()
1232 LFA_Rename ( copyFilePath.c_str(), origFilePath.c_str() ); in CloseFile()
1236 LFA_Rename ( tempFilePath.c_str(), origFilePath.c_str() ); in CloseFile()
1256 LFA_Delete ( origFilePath.c_str() ); in CloseFile()
1257 LFA_Rename ( tempFilePath.c_str(), origFilePath.c_str() ); in CloseFile()
/dports/cad/fritzing/fritzing-app-0.9.2b/src/partseditor/obsolete/
H A Dpartseditorview.cpp939 if (origFilePath.endsWith(".fp")) { in createSvgFromImage()
942 QString svg = geda.convert(origFilePath, false); in createSvgFromImage()
946 if (origFilePath.endsWith(".lib")) { in createSvgFromImage()
948 QStringList defs = KicadSchematic2Svg::listDefs(origFilePath); in createSvgFromImage()
950 throw tr("no schematics found in %1").arg(origFilePath); in createSvgFromImage()
968 QString svg = kicad.convert(origFilePath, def); in createSvgFromImage()
972 if (origFilePath.endsWith(".mod")) { in createSvgFromImage()
974 QStringList modules = KicadModule2Svg::listModules(origFilePath); in createSvgFromImage()
976 throw tr("no footprints found in %1").arg(origFilePath); in createSvgFromImage()
994 QString svg = kicad.convert(origFilePath, module, false); in createSvgFromImage()
[all …]
/dports/deskutils/syncthingtray/c++utilities/tests/
H A Dtestutils.cpp332 const auto origFilePath(testFilePath(relativeTestFilePath)); in workingCopyPathAs() local
336 origFile.open(origFilePath, ios_base::in | ios_base::binary); in workingCopyPathAs()
339 …<< "\": an IO error occurred when opening original file \"" << origFilePath << "\"." << Phrases::E… in workingCopyPathAs()
364 cerr << "an IO error occurred when reading original file \"" << origFilePath << "\""; in workingCopyPathAs()
/dports/net-p2p/qbittorrent/qbittorrent-4.3.9/src/base/bittorrent/
H A Dtorrentinfo.h79 QString origFilePath(int index) const;
H A Dtorrentinfo.cpp286 QString TorrentInfo::origFilePath(const int index) const in origFilePath() function in TorrentInfo
514 origFilePaths << origFilePath(i); in defaultContentLayout()
/dports/devel/qbs/qbs-src-1.21.0/src/lib/corelib/language/
H A Dlanguage.cpp502 void ResolvedProduct::cacheExecutablePath(const QString &origFilePath, const QString &fullFilePath) in cacheExecutablePath() argument
505 m_executablePathCache.insert(origFilePath, fullFilePath); in cacheExecutablePath()
508 QString ResolvedProduct::cachedExecutablePath(const QString &origFilePath) const in cachedExecutablePath()
511 return m_executablePathCache.value(origFilePath); in cachedExecutablePath()
H A Dlanguage.h615 void cacheExecutablePath(const QString &origFilePath, const QString &fullFilePath);
616 QString cachedExecutablePath(const QString &origFilePath) const;
/dports/cad/fritzing/fritzing-app-0.9.2b/src/partseditor/
H A Dpemainwindow.cpp1666 if (origFilePath.endsWith(".fp")) { in createSvgFromImage()
1669 QString svg = geda.convert(origFilePath, false); in createSvgFromImage()
1673 if (origFilePath.endsWith(".lib")) { in createSvgFromImage()
1675 QStringList defs = KicadSchematic2Svg::listDefs(origFilePath); in createSvgFromImage()
1677 throw tr("no schematics found in %1").arg(origFilePath); in createSvgFromImage()
1695 QString svg = kicad.convert(origFilePath, def); in createSvgFromImage()
1699 if (origFilePath.endsWith(".mod")) { in createSvgFromImage()
1701 QStringList modules = KicadModule2Svg::listModules(origFilePath); in createSvgFromImage()
1703 throw tr("no footprints found in %1").arg(origFilePath); in createSvgFromImage()
1721 QString svg = kicad.convert(origFilePath, module, false); in createSvgFromImage()
[all …]
H A Dpemainwindow.h146 QString createSvgFromImage(const QString &origFilePath);
/dports/graphics/dcp2icc/dcp2icc-0.1/XMP-Toolkit-SDK-4.4.2/source/XMPFiles/FormatSupport/
H A DSWF_Support.hpp202 std::string origFilePath; member in SWF_Support::FileInfo
H A DSWF_Support.cpp361 this->origFilePath.assign ( origPath ); in FileInfo()
414 CreateTempFile ( this->origFilePath, &updatePath, kCopyMacRsrc ); in Decompress()
/dports/textproc/highlight/highlight-4.1/src/gui-qt/
H A Dmainwindow.cpp1184 QString inFileName, inFilePath, origFilePath; in on_pbStartConversion_clicked() local
1204 inFilePath = origFilePath = ui->lvInputFiles->item(i)->data(Qt::UserRole).toString(); in on_pbStartConversion_clicked()
1213 …statusBar()->showMessage(tr("Processing %1 (%2/%3)").arg(origFilePath).arg(i+1).arg(ui->lvInputFil… in on_pbStartConversion_clicked()
1228 … QMessageBox::warning(this, tr("Unknown syntax"), tr("Could not convert %1").arg(origFilePath)); in on_pbStartConversion_clicked()
1229 inputErrors.append(origFilePath); in on_pbStartConversion_clicked()
1231 …r("Lua error"), tr("Could not convert %1:\nLua Syntax error: %2").arg(origFilePath).arg(QString::f… in on_pbStartConversion_clicked()
1232 inputErrors.append(origFilePath); in on_pbStartConversion_clicked()
1246 QString absOutPath=origFilePath + getOutFileSuffix(); in on_pbStartConversion_clicked()
1318 inputErrors.append(origFilePath); in on_pbStartConversion_clicked()
1320 outputErrors.append(origFilePath); in on_pbStartConversion_clicked()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/corelib/io/
H A Dqfilesystemengine_win.cpp846 const QString origFilePath = entry.filePath(); in fillMetaData() local
847 if (origFilePath.endsWith(QLatin1String(".lnk")) && !isDirPath(origFilePath, 0)) { in fillMetaData()
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/impexp/Classes/
H A DImportExport.php1186 $origFilePath = 'RTEmagicP_' . $filename;
1187 return $origFilePath;
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqfilesystemengine_win.cpp1121 const QString origFilePath = entry.filePath(); in fillMetaData() local
1122 if (origFilePath.endsWith(QLatin1String(".lnk")) && !isDirPath(origFilePath, 0)) { in fillMetaData()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqfilesystemengine_win.cpp1121 const QString origFilePath = entry.filePath(); in fillMetaData() local
1122 if (origFilePath.endsWith(QLatin1String(".lnk")) && !isDirPath(origFilePath, 0)) { in fillMetaData()
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqfilesystemengine_win.cpp1121 const QString origFilePath = entry.filePath(); in fillMetaData() local
1122 if (origFilePath.endsWith(QLatin1String(".lnk")) && !isDirPath(origFilePath, 0)) { in fillMetaData()
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqfilesystemengine_win.cpp1121 const QString origFilePath = entry.filePath(); in fillMetaData() local
1122 if (origFilePath.endsWith(QLatin1String(".lnk")) && !isDirPath(origFilePath, 0)) { in fillMetaData()
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqfilesystemengine_win.cpp1121 const QString origFilePath = entry.filePath(); in fillMetaData() local
1122 if (origFilePath.endsWith(QLatin1String(".lnk")) && !isDirPath(origFilePath, 0)) { in fillMetaData()

12