Home
last modified time | relevance | path

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

12

/dports/deskutils/nextcloudclient/desktop-3.4.1/test/
H A Dtestfolderwatcher.cpp78 QString _rootPath; member in TestFolderWatcher
109 _rootPath = rootDir.canonicalPath(); in TestFolderWatcher()
123 _watcher->init(_rootPath); in TestFolderWatcher()
148 QString file(_rootPath + "/foo.txt"); in testACreate()
165 mkdir(_rootPath + "/a0"); in testMove3LevelDirWithFile()
166 mkdir(_rootPath + "/a0/b"); in testMove3LevelDirWithFile()
167 mkdir(_rootPath + "/a0/b/c"); in testMove3LevelDirWithFile()
169 mv(_rootPath + "/a0", _rootPath + "/a"); in testMove3LevelDirWithFile()
186 QString file(_rootPath+"/a1/b3/c3"); in testRemoveADir()
223 QString old_file(_rootPath+"/a1/b1"); in testRenameDirectorySameBase()
[all …]
/dports/deskutils/owncloudclient/ownCloud-2.8.2.4246/test/
H A Dtestfolderwatcher.cpp78 QString _rootPath; member in TestFolderWatcher
109 _rootPath = rootDir.canonicalPath(); in TestFolderWatcher()
123 _watcher->init(_rootPath); in TestFolderWatcher()
148 QString file(_rootPath + "/foo.txt"); in testACreate()
164 QString file(_rootPath+"/a1/b1/new_dir"); in testCreateADir()
175 QString file(_rootPath+"/a1/b3/c3"); in testRemoveADir()
190 QString file1(_rootPath+"/a2/renamefile"); in testRenameAFile()
212 QString old_file(_rootPath+"/a1/b1"); in testRenameDirectorySameBase()
213 QString new_file(_rootPath+"/a1/brename"); in testRenameDirectorySameBase()
233 QString old_file(_rootPath+"/a1/brename"); in testRenameDirectoryDifferentBase()
[all …]
/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarthDrivers/cache_leveldb/
H A DLevelDBCache.cpp57 _rootPath = URI( *_options.rootPath(), options.referrer() ).full();
65 _rootPath = cachePath;
91 _tracker = new Tracker(_options, _rootPath);
93 if ( !_rootPath.empty() )
120 if ( !osgDB::fileExists(_rootPath) )
122 if (osgDB::makeDirectory(_rootPath) == false)
140 OE_INFO << LC << "Opened a cache at \"" << _rootPath << "\"" << std::endl;
153 status = leveldb::DB::Open(options, _rootPath, &_db);
158 status = leveldb::RepairDB(_rootPath, options);
161 status = leveldb::DB::Open(options, _rootPath, &_db);
[all …]
H A DLevelDBCache67 std::string _rootPath;
/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarthDrivers/cache_rocksdb/
H A DRocksDBCache.cpp59 _rootPath = URI( *_options.rootPath(), options.referrer() ).full(); in RocksDBCacheImpl()
67 _rootPath = cachePath; in RocksDBCacheImpl()
93 _tracker = new Tracker(_options, _rootPath); in RocksDBCacheImpl()
95 if ( !_rootPath.empty() ) in RocksDBCacheImpl()
122 if ( !osgDB::fileExists(_rootPath) ) in init()
124 if (osgDB::makeDirectory(_rootPath) == false) in init()
142 OE_INFO << LC << "Opened a cache at \"" << _rootPath << "\"" << std::endl; in init()
174 status = rocksdb::DB::Open(options, _rootPath, &_db); in open()
179 status = rocksdb::RepairDB(_rootPath, options); in open()
182 status = rocksdb::DB::Open(options, _rootPath, &_db); in open()
[all …]
H A DRocksDBCache67 std::string _rootPath;
/dports/devel/poco/poco-1.10.1-all/Util/src/
H A DWinRegistryConfiguration.cpp26 …WinRegistryConfiguration(const std::string& rootPath, REGSAM extraSam): _rootPath(rootPath), _extr… in WinRegistryConfiguration()
29 if (!_rootPath.empty()) in WinRegistryConfiguration()
31 if (_rootPath[_rootPath.length() - 1] != '\\') in WinRegistryConfiguration()
32 _rootPath += '\\'; in WinRegistryConfiguration()
45 std::string fullPath = _rootPath + convertToRegFormat(key, keyName); in getRaw()
85 std::string fullPath = _rootPath + convertToRegFormat(key, keyName); in setRaw()
94 std::string fullPath = _rootPath + convertToRegFormat(key, keyName); in enumerate()
/dports/www/thundersnarf/thundersnarf/protected/yii114/framework/cli/commands/
H A DWebAppCommand.php22 private $_rootPath; variable in WebAppCommand
56 $this->_rootPath=$path=$dir;
58 $this->_rootPath=$path=$dir.DIRECTORY_SEPARATOR.basename($path);
84 $yii=$this->getRelativePath($yii,$this->_rootPath.DIRECTORY_SEPARATOR.'index.php');
93 …$yii=$this->getRelativePath($yii,$this->_rootPath.DIRECTORY_SEPARATOR.'protected'.DIRECTORY_SEPARA…
102 …$yiic=$this->getRelativePath($yiic,$this->_rootPath.DIRECTORY_SEPARATOR.'protected'.DIRECTORY_SEPA…
/dports/www/limesurvey/limesurvey/framework/cli/commands/
H A DWebAppCommand.php20 private $_rootPath; variable in WebAppCommand
67 $this->_rootPath=$path=$dir;
69 $this->_rootPath=$path=$dir.DIRECTORY_SEPARATOR.basename($path);
146 $yii=$this->getRelativePath($yii,$this->_rootPath.DIRECTORY_SEPARATOR.'index.php');
162 …$yii=$this->getRelativePath($yii,$this->_rootPath.DIRECTORY_SEPARATOR.'protected'.DIRECTORY_SEPARA…
178 …$yiic=$this->getRelativePath($yiic,$this->_rootPath.DIRECTORY_SEPARATOR.'protected'.DIRECTORY_SEPA…
/dports/games/flightgear/flightgear-2020.3.11/src/GUI/
H A DQmlPropertyModel.cxx45 _props = fgGetNode(_rootPath.toStdString()); in computeProps()
47 qWarning() << "Passed non-existant path to QmlPropertyModel:" << _rootPath; in computeProps()
169 QString _rootPath; member in FGQmlPropertyModel::PropertyModelPrivate
185 return d->_rootPath; in rootPath()
216 if (d->_rootPath == rootPath) in setRootPath()
220 d->_rootPath = rootPath; in setRootPath()
225 emit rootPathChanged(d->_rootPath); in setRootPath()
/dports/devel/msbuild/msbuild-0.06/src/Tasks/
H A DGetReferenceAssemblyPaths.cs55 private string _rootPath; field in Microsoft.Build.Tasks.GetReferenceAssemblyPaths
136 return _rootPath;
141 _rootPath = value;
240 _tfmPaths = GetPaths(_rootPath, moniker); in Execute()
251 _tfmPathsNoProfile = GetPaths(_rootPath, monikerWithNoProfile); in Execute()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Net.Http.Formatting/
H A DMultipartFileStreamProvider.cs22 private string _rootPath; field in System.Net.Http.MultipartFileStreamProvider
51 _rootPath = Path.GetFullPath(rootPath); in MultipartFileStreamProvider()
87 localFilePath = Path.Combine(_rootPath, Path.GetFileName(filename)); in GetStream()
H A DMultipartFormDataStreamProvider.cs26 private string _rootPath; field in System.Net.Http.MultipartFormDataStreamProvider
55 _rootPath = Path.GetFullPath(rootPath); in MultipartFormDataStreamProvider()
100 localFilePath = Path.Combine(_rootPath, Path.GetFileName(filename)); in GetStream()
/dports/devel/simgear/simgear-2020.3.11/simgear/io/
H A Duntar.hxx76 return _rootPath; in rootPath()
89 SGPath _rootPath; member in simgear::ArchiveExtractor
H A DArchiveExtractor_private.hxx59 return outer->_rootPath; in extractRootPath()
/dports/misc/usd/USD-21.11/pxr/usdImaging/usdImaging/
H A DresolvedAttributeCache.h87 , _rootPath(SdfPath::AbsoluteRootPath()) in _time()
97 , _rootPath(SdfPath::AbsoluteRootPath()) in UsdImaging_ResolvedAttributeCache()
113 if (!prim.GetPath().HasPrefix(_rootPath) in GetValue()
118 _rootPath.GetString().c_str()); in GetValue()
175 if (rootPath == _rootPath) in SetRootPath()
179 _rootPath = rootPath; in SetRootPath()
184 const SdfPath & GetRootPath() const { return _rootPath; } in GetRootPath()
340 SdfPath _rootPath; variable
404 if (!prim || prim.IsPrototype() || prim.GetPath() == _rootPath) in _GetValue()
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/libethereum/
H A DDatabasePaths.cpp15 DatabasePaths::DatabasePaths(fs::path const& _rootPath, h256 const& _genesisHash) noexcept in DatabasePaths() argument
18 m_rootPath = _rootPath; in DatabasePaths()
H A DDatabasePaths.h17 DatabasePaths(boost::filesystem::path const& _rootPath, h256 const& _genesisHash) noexcept;
/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2/core/
H A DFileScanner.cpp67 std::string _rootPath; member in FileScannerBase
82 _rootPath = Path::GetDirectory(pattern); in FileScannerBase()
111 return _currentPath + _rootPath.size() + 1; in GetPathRelative()
126 PushState(_rootPath); in Next()
/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarthDrivers/cache_filesystem/
H A DFileSystemCache.cpp73 std::string _rootPath;
179 _rootPath = URI( *fsco.rootPath(), options.referrer() ).full();
186 OE_INFO << LC << "Opened a filesystem cache at \"" << _rootPath << "\"\n";
192 return _bins.getOrCreate( name, new FileSystemCacheBin( name, _rootPath ) );
204 _defaultBin = new FileSystemCacheBin( "__default", _rootPath );
/dports/games/flightgear/flightgear-2020.3.11/src/Network/http/
H A DMirrorPropertyTreeWebsocket.hxx52 std::string _rootPath; member in flightgear::http::MirrorPropertyTreeWebsocket
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/burner/macos/
H A DFBScanner.mm79 if (!_rootPath)
83 [_rootPath cStringUsingEncoding:NSUTF8StringEncoding]);
/dports/devel/poco/poco-1.10.1-all/Util/include/Poco/Util/
H A DWinRegistryConfiguration.h63 std::string _rootPath;
/dports/games/residualvm/residualvm-0.3.1/gui/
H A Doptions.cpp1493 _rootPath = 0; in GlobalOptionsDialog()
1838 _rootPath->setLabel(_c("None", "path")); in build()
1840 _rootPath->setLabel(rootPath); in build()
1891 Common::String rootPath(_rootPath->getLabel()); in apply()
2080 _rootPath->setLabel(path); in handleCommand()
2097 _rootPath->setLabel(_c("None", "path")); in handleCommand()
2422 if (_rootPath) { in setupCloudTab()
2423 _rootPath->setVisible(true); in setupCloudTab()
2424 _rootPath->setPos(_rootPath->getRelX(), serverLabelPosition + serverRootY - serverInfoY); in setupCloudTab()
2463 if (_rootPath) in setupCloudTab()
[all …]
/dports/misc/usd/USD-21.11/pxr/usdImaging/usdImagingGL/
H A Dengine.cpp163 , _rootPath(rootPath) in UsdImagingGLEngine()
229 root.GetStage()->GetPrimAtPath(_rootPath), in PrepareBatch()
1337 if (!root.GetPath().HasPrefix(_rootPath)) { in _CanPrepare()
1341 _rootPath.GetText()); in _CanPrepare()

12