HomeSort by relevance Sort by last modified time
    Searched refs:rootPath (Results 1 - 25 of 35) sorted by null

1 2

  /external/catch2/scripts/
embedClara.py 8 rootPath = os.path.dirname(os.path.realpath( os.path.dirname(sys.argv[0])))
10 filename = os.path.join( rootPath, "third_party", "clara.hpp" )
11 outfilename = os.path.join( rootPath, "include", "external", "clara.hpp" )
approve.py 11 rootPath = os.path.join( catchPath, 'projects/SelfTest/Baselines' )
14 files = [os.path.join( rootPath, f ) for f in sys.argv[1:]]
16 files = glob.glob( os.path.join( rootPath, "*.unapproved.txt" ) )
20 justFilename = unapprovedFile[len(rootPath)+1:]
releaseNotes.py 15 rootPath = os.path.join( catchPath, 'include/' )
16 versionPath = os.path.join( rootPath, "internal/catch_version.hpp" )
generateSingleHeader.py 26 rootPath = os.path.join( catchPath, 'include/' )
56 dirs = [os.path.join( rootPath, s) for s in ['', 'internal', 'reporters']]
93 parseFile( rootPath + headerPath + sep, headerFile )
120 parseFile( rootPath, 'catch.hpp' )
approvalTests.py 19 rootPath = os.path.join(catchPath, 'projects/SelfTest/Baselines')
155 baselinesPath = os.path.join(rootPath, '{0}.approved.txt'.format(baseName))
156 rawResultsPath = os.path.join(rootPath, '_{0}.tmp'.format(baseName))
157 filteredResultsPath = os.path.join(rootPath, '{0}.unapproved.txt'.format(baseName))
releaseCommon.py 11 rootPath = os.path.join( catchPath, 'include/' )
12 versionPath = os.path.join( rootPath, "internal/catch_version.cpp" )
13 definePath = os.path.join(rootPath, 'catch.hpp')
  /external/lzma/CPP/Windows/
FileSystem.h 14 CFSTR rootPath ,
23 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
FileSystem.cpp 23 CFSTR rootPath,
36 res = GetVolumeInformation(fs2fas(rootPath),
48 res = GetVolumeInformationW(fs2us(rootPath),
86 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize)
98 sizeIsDetected = BOOLToBool(pGetDiskFreeSpaceEx(fs2fas(rootPath), &freeBytesToCaller2, &totalSize2, &freeSize2));
102 if (!::GetDiskFreeSpace(fs2fas(rootPath), &numSectorsPerCluster, &bytesPerSector, &numFreeClusters, &numClusters))
113 sizeIsDetected = BOOLToBool(pGetDiskFreeSpaceEx(fs2us(rootPath), &freeBytesToCaller2, &totalSize2, &freeSize2));
117 if (!::GetDiskFreeSpaceW(fs2us(rootPath), &numSectorsPerCluster, &bytesPerSector, &numFreeClusters, &numClusters))
FileLink.cpp 354 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
FileIO.cpp 27 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
FileFind.cpp 52 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
  /external/skia/src/utils/
SkOSPath.h 25 * Assembles rootPath and relativePath into a single path, like this:
26 * rootPath/relativePath.
27 * It is okay to call with a NULL rootPath and/or relativePath. A path
32 static SkString Join(const char* rootPath, const char* relativePath);
SkOSPath.cpp 10 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) {
11 SkString result(rootPath);
  /external/skqp/src/utils/
SkOSPath.h 25 * Assembles rootPath and relativePath into a single path, like this:
26 * rootPath/relativePath.
27 * It is okay to call with a NULL rootPath and/or relativePath. A path
32 static SkString Join(const char* rootPath, const char* relativePath);
SkOSPath.cpp 10 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) {
11 SkString result(rootPath);
  /external/testng/src/main/java/org/testng/internal/
PathUtils.java 29 Path rootPath = Paths.get(suite.getFileName()).getParent();
30 return rootPath.resolve(suiteFile).normalize().toString();
  /development/tools/idegen/src/com/android/idegen/
FrameworkModule.java 60 private void appendContentRoot(StringBuilder stringBuilder, String rootPath)
62 File intermediates = new File(rootPath);
  /external/parameter-framework/upstream/tools/xmlValidator/
xmlValidator.py 103 for rootPath, _, files in walk(xmlDirectory):
106 xmlFilePath = path.join(rootPath, filename)
  /external/ltp/testcases/kernel/fs/scsi/ltpfs/
main.c 45 char rootPath[BUFFSIZE];
145 strcpy(rootPath, argv[i]);
219 if (strcmp(rootPath, file) == 0) {
503 changedir(rootPath);
  /developers/build/prebuilts/gradle/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 454 final String rootPath = mBaseDir.getPath();
455 if (rootPath.equals(path)) {
457 } else if (rootPath.endsWith("/")) {
458 path = path.substring(rootPath.length());
460 path = path.substring(rootPath.length() + 1);
  /developers/samples/android/content/documentsUi/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 454 final String rootPath = mBaseDir.getPath();
455 if (rootPath.equals(path)) {
457 } else if (rootPath.endsWith("/")) {
458 path = path.substring(rootPath.length());
460 path = path.substring(rootPath.length() + 1);
  /development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/
MyCloudProvider.java 454 final String rootPath = mBaseDir.getPath();
455 if (rootPath.equals(path)) {
457 } else if (rootPath.endsWith("/")) {
458 path = path.substring(rootPath.length());
460 path = path.substring(rootPath.length() + 1);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
TestSuiteContentReport.java 214 Path rootPath = Paths.get(rFolder.getAbsolutePath());
215 String folderRelativePath = rootPath.relativize(folderPath).toString();
222 String fileRelativePath = rootPath.relativize(Paths.get(file.getAbsolutePath())).toString();
  /build/soong/finder/
finder.go 237 // FindNamedAt searches under <rootPath> for every file named <fileName>
240 func (f *Finder) FindNamedAt(rootPath string, fileName string) []string {
251 return f.FindMatching(rootPath, filter)
262 func (f *Finder) FindFirstNamedAt(rootPath string, fileName string) []string {
276 return f.FindMatching(rootPath, filter)
283 func (f *Finder) FindMatching(rootPath string, filter WalkFunc) []string {
289 isRel = !filepath.IsAbs(rootPath)
291 rootPath = filepath.Join(workingDir, rootPath)
294 rootPath = filepath.Clean(rootPath
    [all...]
  /external/parameter-framework/upstream/tools/xmlGenerator/
EddParser.py 484 rootPath = GroupPath()
485 rootPath.addChildren(paths)
487 return rootPath

Completed in 921 milliseconds

1 2