/external/icu/icu4c/source/tools/toolutil/ |
D | filetools.cpp | 45 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir) { in isFileModTimeLater() argument 48 if (filePath == NULL || checkAgainst == NULL) { in isFileModTimeLater() 73 isLatest = isFileModTimeLater(filePath, newpath.data(), isDir); in isFileModTimeLater() 78 int32_t latest = whichFileModTimeIsLater(filePath, newpath.data()); in isFileModTimeLater() 95 int32_t latest = whichFileModTimeIsLater(filePath, checkAgainst); in isFileModTimeLater() 136 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar) { in swapFileSepChar() argument 137 for (int32_t i = 0, length = uprv_strlen(filePath); i < length; i++) { in swapFileSepChar() 138 filePath[i] = (filePath[i] == oldFileSepChar ) ? newFileSepChar : filePath[i]; in swapFileSepChar()
|
D | filetools.h | 29 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE); 32 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar);
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
D | gUnitBaseTest.java | 68 String filePath = testInput; in execLexer() local 69 File testInputFile = new File(filePath); in execLexer() 72 testInputFile = new File(packagePath, filePath); in execLexer() 73 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath(); in execLexer() 75 input = new ANTLRFileStream(filePath); in execLexer() 159 String filePath = testInput; in execParser() local 160 File testInputFile = new File(filePath); in execParser() 163 testInputFile = new File(packagePath, filePath); in execParser() 164 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath(); in execParser() 166 input = new ANTLRFileStream(filePath); in execParser() [all …]
|
D | gUnitExecutor.java | 610 String filePath = testInput.input; in getANTLRInputStream() local 611 File testInputFile = new File(filePath); in getANTLRInputStream() 614 testInputFile = new File(this.testsuiteDir, filePath); in getANTLRInputStream() 615 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath(); in getANTLRInputStream() 618 …ew File("."+File.separator+grammarInfo.getGrammarPackage().replace(".", File.separator), filePath); in getANTLRInputStream() 619 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath(); in getANTLRInputStream() 622 input = new ANTLRFileStream(filePath); in getANTLRInputStream()
|
/external/icu/icu4c/source/test/perf/collationperf/ |
D | CollPerf.pl | 45 my $filePath = $CollationDataPath . "/"; 80 my @icu = `$p -locale @locale[$n] -loop 1000 -file $filePath@data[$n] -qsort`; 81 my @nix = `$p -locale @locale[$n] -unix -loop 1000 -file $filePath@data[$n] -qsort`; 92 @icu = `$p -locale @locale[$n] -loop 1000 -file $filePath@data[$n] -keygen`; 93 @nix = `$p -locale @locale[$n] -unix -loop 1000 -file $filePath@data[$n] -keygen`;
|
/external/deqp/scripts/src_util/ |
D | common.py | 58 def isTextFile (filePath): argument 59 ext = os.path.splitext(filePath)[1] 66 f = open(filePath, "rb")
|
/external/clang/include/clang/ARCMigrate/ |
D | FileRemapper.h | 47 bool initFromFile(StringRef filePath, DiagnosticsEngine &Diag, 55 void remap(StringRef filePath, std::unique_ptr<llvm::MemoryBuffer> memBuf); 65 const FileEntry *getOriginalFile(StringRef filePath);
|
/external/clang/lib/ARCMigrate/ |
D | FileRemapper.cpp | 56 bool FileRemapper::initFromFile(StringRef filePath, DiagnosticsEngine &Diag, in initFromFile() argument 60 std::string infoFile = filePath; in initFromFile() 206 void FileRemapper::remap(StringRef filePath, in remap() argument 208 remap(getOriginalFile(filePath), std::move(memBuf)); in remap() 227 const FileEntry *FileRemapper::getOriginalFile(StringRef filePath) { in getOriginalFile() argument 228 const FileEntry *file = FileMgr->getFile(filePath); in getOriginalFile()
|
/external/lz4/tests/ |
D | test-lz4-speed.py | 193 …ranch, commit, args, executableName, md5sum, compilerVersion, resultsFileName, filePath, fileName): argument 196 …commit, args, executableName, md5sum, compilerVersion, resultsFileName, filePath, fileName, csize,… 199 …commit, args, executableName, md5sum, compilerVersion, resultsFileName, filePath, fileName, csize,… 220 for filePath in testFilePaths: 221 fileName = filePath.rpartition('/')[2] 223 …nch, commit, args, 'lz4', md5_lz4, 'gcc_version='+gcc_version, resultsFileName, filePath, fileName) 228 …ommit, args, 'lz4c32', md5_lz4c32, 'gcc_version='+gcc_version, resultsFileName, filePath, fileName) 233 …s, 'lz4_clang', md5_lz4_clang, 'clang_version='+clang_version, resultsFileName, filePath, fileName)
|
/external/lzma/CPP/Windows/ |
D | FileFind.cpp | 456 FString filePath = path; in Find() local 457 filePath.DeleteFrom(colonPos); in Find() 469 if (IsDrivePath2(filePath) && in Find() 470 (colonPos == 2 || colonPos == 3 && filePath[2] == '\\')) in Find() 476 Name = filePath; in Find() 479 isOk = Find(filePath); in Find() 485 CStreamEnumerator enumerator(filePath); in Find()
|
D | FileFind.h | 107 bool FindFirst(CFSTR filePath, CStreamInfo &streamInfo); 118 CStreamEnumerator(const FString &filePath): _filePath(filePath) {} in CStreamEnumerator() argument
|
D | CommonDialog.cpp | 105 LPCWSTR filePath, in MyGetOpenFileName() argument 122 MyStringCopy(buf, (const char *)GetSystemString(filePath)); in MyGetOpenFileName() 152 MyStringCopy(buf, filePath); in MyGetOpenFileName()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typesolvers/ |
D | JavaParserTypeSolver.java | 139 String filePath = srcDir.getAbsolutePath(); 141 filePath += "/" + nameElements[j]; 143 filePath += ".java"; 153 File srcFile = new File(filePath);
|
/external/testng/src/main/java/org/testng/internal/ |
D | YamlParser.java | 13 public XmlSuite parse(String filePath, InputStream is, boolean loadClasses) in parse() argument 16 return Yaml.parse(filePath, is); in parse()
|
/external/python/cpython3/Mac/BuildScript/ |
D | seticon.m | 16 NSString* filePath = [NSString stringWithUTF8String:argv[2]]; 22 forFile: filePath
|
/external/python/cpython2/Mac/BuildScript/ |
D | seticon.m | 16 NSString* filePath = [NSString stringWithUTF8String:argv[2]]; 22 forFile: filePath
|
/external/antlr/antlr-3.4/runtime/Python/ |
D | setup.py | 44 filePath = os.path.join(root, name) 47 log.info("removing '%s'", filePath) 48 os.unlink(filePath) 52 filePath, exc
|
/external/webrtc/talk/app/webrtc/objc/public/ |
D | RTCLogging.h | 41 extern "C" NSString* RTCFileName(const char* filePath); 53 extern NSString* RTCFileName(const char* filePath);
|
/external/webrtc/webrtc/base/objc/ |
D | RTCLogging.h | 24 extern "C" NSString* RTCFileName(const char* filePath); 36 extern NSString* RTCFileName(const char* filePath);
|
/external/parameter-framework/upstream/test/test-platform/ |
D | main.cpp | 86 auto filePath = options.front(); in main() local 108 if (!CTestPlatform(filePath, portNumber).run(strError)) { in main()
|
/external/webrtc/talk/app/webrtc/objc/ |
D | RTCLogging.mm | 56 NSString* RTCFileName(const char* filePath) { 58 [[NSString alloc] initWithBytesNoCopy:const_cast<char*>(filePath) 59 length:strlen(filePath)
|
/external/clang/tools/clang-format-vs/ClangFormat/ |
D | ClangFormatPackage.cs | 205 string filePath = GetDocumentPath(view); in MenuItemCallback() 208 var root = XElement.Parse(RunClangFormat(text, start, length, path, filePath)); in MenuItemCallback() 241 … private string RunClangFormat(string text, int offset, int length, string path, string filePath) in RunClangFormat() argument 262 assumeFilename = filePath; in RunClangFormat()
|
/external/swiftshader/third_party/LLVM/lib/Archive/ |
D | ArchiveWriter.cpp | 158 Archive::addFileBefore(const sys::Path& filePath, iterator where, in addFileBefore() argument 161 if (sys::fs::exists(filePath.str(), Exists) || !Exists) { in addFileBefore() 170 mbr->path = filePath; in addFileBefore() 179 bool hasSlash = filePath.str().find('/') != std::string::npos; in addFileBefore() 182 if (hasSlash || filePath.str().length() > 15) in addFileBefore()
|
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/ |
D | ResourceLoaderAdaptor.java | 111 String filePath = loadPathCache.lookup(getLoadPaths(), name); in locateFile() local 112 if (filePath != null) { in locateFile() 113 file = newFile(filePath); in locateFile()
|
D | LoadPathToFileCache.java | 66 public void add(List<String> loadPaths, String filename, String filePath) { in add() argument 70 cache.put(filePathMapKey, filePath); in add()
|