Home
last modified time | relevance | path

Searched refs:homePath (Results 1 – 25 of 2471) sorted by relevance

12345678910>>...99

/dports/audio/sayonara/sayonara-player-5bbf1399332d5d59362ad03bf625f9132be72206/test/Util/
H A DStandardPathTest.cpp53 const auto homePath = QDir(QDir::home().absoluteFilePath(".qttest")); in test() local
55 QVERIFY(!QFile::exists(homePath.absoluteFilePath("share/sayonara"))); in test()
56 QVERIFY(Util::xdgSharePath() == homePath.absoluteFilePath("share/sayonara")); in test()
57 QVERIFY(Util::xdgSharePath("file.txt") == homePath.absoluteFilePath("share/sayonara/file.txt")); in test()
60 QVERIFY(Util::xdgConfigPath() == homePath.absoluteFilePath("config/sayonara")); in test()
61 QVERIFY(Util::xdgConfigPath("file.txt") == homePath.absoluteFilePath("config/sayonara/file.txt")); in test()
64 QVERIFY(Util::xdgCachePath() == homePath.absoluteFilePath("cache/sayonara")); in test()
65 QVERIFY(Util::xdgCachePath("file.txt") == homePath.absoluteFilePath("cache/sayonara/file.txt")); in test()
75 QVERIFY(Util::translationsPath() == homePath.absoluteFilePath("share/sayonara/translations")); in test()
79 QVERIFY(Util::coverDirectory() == homePath.absoluteFilePath("cache/sayonara/covers")); in test()
[all …]
/dports/games/openjk/OpenJK-07675e2/shared/sys/
H A Dsys_unix.cpp459 Com_sprintf( homePath, sizeof( homePath ), "%s%c", p, PATH_SEP ); in Sys_DefaultHomePath()
463 Q_strcat( homePath, sizeof( homePath ), com_homepath->string ); in Sys_DefaultHomePath()
465 Q_strcat( homePath, sizeof( homePath ), HOMEPATH_NAME_MACOSX ); in Sys_DefaultHomePath()
469 return homePath; in Sys_DefaultHomePath()
480 Com_sprintf( homePath, sizeof( homePath ), "%s%c", p, PATH_SEP ); in Sys_DefaultHomePath()
482 Q_strcat( homePath, sizeof( homePath ), com_homepath->string ); in Sys_DefaultHomePath()
484 Q_strcat( homePath, sizeof( homePath ), HOMEPATH_NAME_UNIX ); in Sys_DefaultHomePath()
486 return homePath; in Sys_DefaultHomePath()
493 Q_strcat( homePath, sizeof( homePath ), com_homepath->string ); in Sys_DefaultHomePath()
495 Q_strcat( homePath, sizeof( homePath ), HOMEPATH_NAME_UNIX ); in Sys_DefaultHomePath()
[all …]
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/shared_core/system/
H A DWin32User.cpp68 wchar_t homePath[MAX_PATH]; in currentCSIDLPersonalHomePath() local
73 homePath); in currentCSIDLPersonalHomePath()
76 return FilePath(homePath); in currentCSIDLPersonalHomePath()
91 wchar_t homePath[MAX_PATH]; in defaultCSIDLPersonalHomePath() local
99 return FilePath(homePath); in defaultCSIDLPersonalHomePath()
114 return FilePath(homeDrive + homePath); in homepathHomePath()
181 FilePath homePath = source.second(); in getUserHomePath() local
182 if (!homePath.isEmpty()) in getUserHomePath()
185 if (homePath.exists()) in getUserHomePath()
193 homePath = FilePath(path); in getUserHomePath()
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/tests/auto/utils/stringutils/
H A Dtst_stringutils.cpp104 QCOMPARE(Utils::withTildeHomePath(QDir::homePath()), QString::fromLatin1("~")); in testWithTildeHomePath()
105 QCOMPARE(Utils::withTildeHomePath(QDir::homePath() + QLatin1Char('/')), in testWithTildeHomePath()
110 QCOMPARE(Utils::withTildeHomePath(QDir::homePath() + QString::fromLatin1("/foo")), in testWithTildeHomePath()
112 QCOMPARE(Utils::withTildeHomePath(QDir::homePath() + QString::fromLatin1("/foo/")), in testWithTildeHomePath()
119 QCOMPARE(Utils::withTildeHomePath(QDir::homePath() + QString::fromLatin1("/../foo")), in testWithTildeHomePath()
120 QString(QDir::homePath() + QString::fromLatin1("/../foo"))); in testWithTildeHomePath()
123 QCOMPARE(Utils::withTildeHomePath(QDir::homePath()), QDir::homePath()); in testWithTildeHomePath()
124 QCOMPARE(Utils::withTildeHomePath(QDir::homePath() + QString::fromLatin1("/foo")), in testWithTildeHomePath()
125 QDir::homePath() + QString::fromLatin1("/foo")); in testWithTildeHomePath()
126 QCOMPARE(Utils::withTildeHomePath(QDir::homePath() + QString::fromLatin1("/../foo")), in testWithTildeHomePath()
[all …]
/dports/x11/kf5-kdelibs4support/kdelibs4support-5.89.0/src/kdecore/
H A Dqtest_kde.h75 assert( !QDir::homePath().isEmpty() ); \
76 …qputenv("XDG_DATA_HOME", QFile::encodeName( QDir::homePath() + QString::fromLatin1("/.kde-unit-tes…
77 …qputenv("XDG_CONFIG_HOME", QFile::encodeName( QDir::homePath() + QString::fromLatin1("/.kde-unit-t…
78 …qputenv("XDG_CACHE_HOME", QFile::encodeName( QDir::homePath() + QString::fromLatin1("/.kde-unit-te…
81 … QFile::remove(QDir::homePath() + QString::fromLatin1("/.kde-unit-test/xdg/config/qttestrc")); \
126 assert( !QDir::homePath().isEmpty() ); \
127 …qputenv("XDG_DATA_HOME", QFile::encodeName( QDir::homePath() + QString::fromLatin1("/.kde-unit-tes…
128 …qputenv("XDG_CONFIG_HOME", QFile::encodeName( QDir::homePath() + QString::fromLatin1("/.kde-unit-t…
129 …qputenv("XDG_CACHE_HOME", QFile::encodeName( QDir::homePath() + QString::fromLatin1("/.kde-unit-te…
132 … QFile::remove(QDir::homePath() + QString::fromLatin1("/.kde-unit-test/xdg/config/qttestrc")); \
/dports/games/tremulous/tremulous/tremulous-1.1.0-src/src/unix/
H A Dunix_shared.c45 static char homePath[MAX_OSPATH]; variable
382 Q_strncpyz(homePath, path, sizeof(homePath)); in Sys_SetDefaultHomePath()
389 if (*homePath) in Sys_DefaultHomePath()
390 return homePath; in Sys_DefaultHomePath()
393 Q_strncpyz(homePath, p, sizeof(homePath)); in Sys_DefaultHomePath()
395 Q_strcat(homePath, sizeof(homePath), "/Library/Application Support/Tremulous"); in Sys_DefaultHomePath()
397 Q_strcat(homePath, sizeof(homePath), "/.tremulous"); in Sys_DefaultHomePath()
399 if (mkdir(homePath, 0777)) { in Sys_DefaultHomePath()
401 …Sys_Error("Unable to create directory \"%s\", error is %s(%d)\n", homePath, strerror(errno), errno… in Sys_DefaultHomePath()
403 return homePath; in Sys_DefaultHomePath()
/dports/audio/muse-sequencer/muse-4.0.0/src/libs/plugin/
H A Dplugin_cache_reader.cpp443 if(!homePath.isEmpty()) in pluginGetLadspaDirectories()
444 homePath += QString("/ladspa:") + homePath + QString("/.ladspa:"); in pluginGetLadspaDirectories()
475 if(!homePath.isEmpty()) in pluginGetMessDirectories()
504 if(!homePath.isEmpty()) in pluginGetDssiDirectories()
505 homePath += QString("/dssi:") + homePath + QString("/.dssi:"); in pluginGetDssiDirectories()
608 if(!homePath.isEmpty()) in pluginGetVstDirectories()
613 homePath += QString("/vst:") + homePath + QString("/.vst"); in pluginGetVstDirectories()
615 homePath += QString("/vst win 32bit:") + homePath + QString("/.vst win 32bit"); in pluginGetVstDirectories()
618 vstPath = homePath; in pluginGetVstDirectories()
645 if(!homePath.isEmpty()) in pluginGetLv2Directories()
[all …]
/dports/archivers/libarchive-qt/libarchive-qt-9863127fb8dda7242215c09efbc976193365fee4/lib/StandardPaths/
H A DNBStandardPaths_unix.cpp63 return QDir::homePath(); in writableLocation()
71 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
97 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
139 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
185 value = QDir::homePath() + value.mid(5); in writableLocation()
193 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
196 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
199 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
203 path = QDir::homePath() + QLatin1String("/.fonts"); in writableLocation()
207 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
[all …]
/dports/games/iortcw/iortcw-1.51c/SP/code/sys/
H A Dsys_unix.c75 Com_sprintf(homePath, sizeof(homePath), "%s%c", p1, PATH_SEP); in Sys_DefaultHomePath()
77 Q_strcat(homePath, sizeof(homePath), in Sys_DefaultHomePath()
81 Q_strcat(homePath, sizeof(homePath), com_homepath->string); in Sys_DefaultHomePath()
83 Q_strcat(homePath, sizeof(homePath), HOMEPATH_NAME_MACOSX); in Sys_DefaultHomePath()
89 Com_sprintf(homePath, sizeof(homePath), "%s%c", p1, PATH_SEP); in Sys_DefaultHomePath()
100 Q_strcat(homePath, sizeof(homePath), com_homepath->string); in Sys_DefaultHomePath()
102 Q_strcat(homePath, sizeof(homePath), HOMEPATH_NAME_UNIX); in Sys_DefaultHomePath()
107 Com_sprintf(homePath, sizeof(homePath), "%s%c", p1, PATH_SEP); in Sys_DefaultHomePath()
110 Q_strcat(homePath, sizeof(homePath), com_homepath->string); in Sys_DefaultHomePath()
112 Q_strcat(homePath, sizeof(homePath), HOMEPATH_NAME_UNIX); in Sys_DefaultHomePath()
[all …]
/dports/games/iortcw/iortcw-1.51c/MP/code/sys/
H A Dsys_unix.c75 Com_sprintf(homePath, sizeof(homePath), "%s%c", p1, PATH_SEP); in Sys_DefaultHomePath()
77 Q_strcat(homePath, sizeof(homePath), in Sys_DefaultHomePath()
81 Q_strcat(homePath, sizeof(homePath), com_homepath->string); in Sys_DefaultHomePath()
83 Q_strcat(homePath, sizeof(homePath), HOMEPATH_NAME_MACOSX); in Sys_DefaultHomePath()
89 Com_sprintf(homePath, sizeof(homePath), "%s%c", p1, PATH_SEP); in Sys_DefaultHomePath()
100 Q_strcat(homePath, sizeof(homePath), com_homepath->string); in Sys_DefaultHomePath()
102 Q_strcat(homePath, sizeof(homePath), HOMEPATH_NAME_UNIX); in Sys_DefaultHomePath()
107 Com_sprintf(homePath, sizeof(homePath), "%s%c", p1, PATH_SEP); in Sys_DefaultHomePath()
110 Q_strcat(homePath, sizeof(homePath), com_homepath->string); in Sys_DefaultHomePath()
112 Q_strcat(homePath, sizeof(homePath), HOMEPATH_NAME_UNIX); in Sys_DefaultHomePath()
[all …]
/dports/net/zerotier/ZeroTierOne-1.8.3/osdep/
H A DEthernetTap.cpp60 const char *homePath, in newInstance() argument
72 …return std::shared_ptr<EthernetTap>(new VirtualTap(homePath,mac,mtu,metric,nwid,friendlyName,handl… in newInstance()
86 …return std::shared_ptr<EthernetTap>(new MacKextEthernetTap(homePath,mac,mtu,metric,nwid,friendlyNa… in newInstance()
88 …return std::shared_ptr<EthernetTap>(new MacEthernetTap(homePath,mac,mtu,metric,nwid,friendlyName,h… in newInstance()
95 …return std::shared_ptr<EthernetTap>(new LinuxEthernetTap(homePath,mac,mtu,metric,nwid,friendlyName… in newInstance()
129 …return std::shared_ptr<EthernetTap>(new WindowsEthernetTap(homePath,mac,mtu,metric,nwid,friendlyNa… in newInstance()
133 …return std::shared_ptr<EthernetTap>(new BSDEthernetTap(homePath,mac,mtu,metric,nwid,friendlyName,h… in newInstance()
137 …return std::shared_ptr<EthernetTap>(new NetBSDEthernetTap(homePath,mac,mtu,metric,nwid,friendlyNam… in newInstance()
141 …return std::shared_ptr<EthernetTap>(new BSDEthernetTap(homePath,mac,mtu,metric,nwid,friendlyName,h… in newInstance()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/gui/util/
H A Dqdesktopservices_x11.cpp134 return QDir::homePath(); in storageLocation()
142 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in storageLocation()
151 xdgDataHome = QDir::homePath() + QLatin1String("/.local/share"); in storageLocation()
161 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in storageLocation()
196 value = QDir::homePath() + value.mid(5); in storageLocation()
205 path = QDir::homePath() + QLatin1String("/Desktop"); in storageLocation()
208 path = QDir::homePath() + QLatin1String("/Documents"); in storageLocation()
211 path = QDir::homePath() + QLatin1String("/Pictures"); in storageLocation()
215 path = QDir::homePath() + QLatin1String("/.fonts"); in storageLocation()
219 path = QDir::homePath() + QLatin1String("/Music"); in storageLocation()
[all …]
/dports/audio/cantata/cantata-2.4.2/3rdparty/solid-lite/
H A Dxdgbasedirs.cpp38 QString homePath( const char *variable, const char *defaultSubDir );
52 QString Solid::XdgBaseDirs::homePath( const char *resource ) in Q_GLOBAL_STATIC()
56 instance()->mDataHome = instance()->homePath( "XDG_DATA_HOME", ".local/share" ); in Q_GLOBAL_STATIC()
61 instance()->mConfigHome = instance()->homePath( "XDG_CONFIG_HOME", ".config" ); in Q_GLOBAL_STATIC()
88 const QString fullPath = homePath( resource ) + QLatin1Char( '/' ) + relPath; in findResourceFile()
107 QString XdgBaseDirsSingleton::homePath( const char *variable, const char *defaultSubDir ) in homePath() function in XdgBaseDirsSingleton
113 xdgPath = QDir::homePath() + QLatin1Char( '/' ) + QLatin1String( defaultSubDir ); in homePath()
117 xdgPath = QDir::homePath() + QLatin1Char( '/' ) + QString::fromLocal8Bit( env ); in homePath()
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]
/dports/devel/qt5-qmake/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]
/dports/x11-toolkits/qt5-widgets/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_unix.cpp207 return QDir::homePath(); in writableLocation()
218 xdgCacheHome = QDir::homePath() + QLatin1String("/.cache"); in writableLocation()
280 xdgConfigHome = QDir::homePath() + QLatin1String("/.config"); in writableLocation()
299 result = QDir::homePath() + value.mid(5); in writableLocation()
314 path = QDir::homePath() + QLatin1String("/Desktop"); in writableLocation()
317 path = QDir::homePath() + QLatin1String("/Documents"); in writableLocation()
320 path = QDir::homePath() + QLatin1String("/Pictures"); in writableLocation()
328 path = QDir::homePath() + QLatin1String("/Music"); in writableLocation()
332 path = QDir::homePath() + QLatin1String("/Videos"); in writableLocation()
335 path = QDir::homePath() + QLatin1String("/Downloads"); in writableLocation()
[all …]

12345678910>>...99