/external/icu/icu4c/source/tools/toolutil/ |
D | filetools.cpp | 43 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir) { in isFileModTimeLater() argument 46 if (filePath == NULL || checkAgainst == NULL) { in isFileModTimeLater() 67 isLatest = isFileModTimeLater(filePath, newpath, isDir); in isFileModTimeLater() 72 int32_t latest = whichFileModTimeIsLater(filePath, newpath); in isFileModTimeLater() 89 int32_t latest = whichFileModTimeIsLater(filePath, checkAgainst); in isFileModTimeLater() 130 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar) { in swapFileSepChar() argument 131 for (int32_t i = 0, length = uprv_strlen(filePath); i < length; i++) { in swapFileSepChar() 132 filePath[i] = (filePath[i] == oldFileSepChar ) ? newFileSepChar : filePath[i]; in swapFileSepChar()
|
D | filetools.h | 27 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE); 30 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar);
|
/external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/objectal/ |
D | OALSimpleAudio.java | 152 public native boolean playBgVolumePanLoop(String filePath, float volume, in playBgVolumePanLoop() argument 168 public native ALSource playEffect(String filePath); in playEffect() argument 173 public native ALSource playEffectLoop(String filePath, boolean loop); in playEffectLoop() argument 178 public native ALSource playEffectVolumePitchPanLoop(String filePath, in playEffectVolumePitchPanLoop() argument 200 public native ALBuffer preloadEffect(String filePath); in preloadEffect() argument 204 public native ALBuffer preloadEffectReduceToMono(String filePath, in preloadEffectReduceToMono() argument 210 String filePath, in preloadEffectReduceToMonoCompletionBlock() argument 338 public native boolean unloadEffect(String filePath); in unloadEffect() argument
|
/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 | 42 my $filePath = $CollationDataPath . "/"; 77 my @icu = `$p -locale @locale[$n] -loop 1000 -file $filePath@data[$n] -qsort`; 78 my @nix = `$p -locale @locale[$n] -unix -loop 1000 -file $filePath@data[$n] -qsort`; 89 @icu = `$p -locale @locale[$n] -loop 1000 -file $filePath@data[$n] -keygen`; 90 @nix = `$p -locale @locale[$n] -unix -loop 1000 -file $filePath@data[$n] -keygen`;
|
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/objectal/ |
D | OALSimpleAudio.java | 41 public native ALBuffer preloadEffect (String filePath); in preloadEffect() argument 44 public native boolean unloadEffect (String filePath); in unloadEffect() argument 47 …public native ALSource playEffect (String filePath, float volume, float pitch, float pan, boolean … in playEffect() argument
|
/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/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/lzma/CPP/7zip/UI/Common/ |
D | Extract.cpp | 81 UString filePath; in DecompressArchive() local 85 RINOK(arc.GetItemPath(i, filePath)); in DecompressArchive() 89 if (!IsPath1PrefixedByPath2(filePath, elimPrefix)) in DecompressArchive() 93 wchar_t c = filePath[elimPrefix.Len()]; in DecompressArchive() 105 if (!wildcardCensor.CheckPath(isAltStream, filePath, !isFolder)) in DecompressArchive() 320 op.filePath = arcPath; in Extract()
|
/external/lzma/CPP/Windows/ |
D | FileFind.h | 106 bool FindFirst(CFSTR filePath, CStreamInfo &streamInfo); 117 CStreamEnumerator(const FString &filePath): _filePath(filePath) {} in CStreamEnumerator() argument
|
D | CommonDialog.cpp | 103 LPCWSTR filePath, in MyGetOpenFileName() argument 120 MyStringCopy(buf, (const char *)GetSystemString(filePath)); in MyGetOpenFileName() 150 MyStringCopy(buf, filePath); in MyGetOpenFileName()
|
D | FileFind.cpp | 356 FString filePath = path; in Find() local 357 filePath.DeleteFrom(colonPos); in Find() 359 if (Find(filePath)) in Find() 364 CStreamEnumerator enumerator(filePath); in Find()
|
/external/webrtc/webrtc/base/objc/ |
D | RTCLogging.h | 24 extern "C" NSString* RTCFileName(const char* filePath); 36 extern NSString* RTCFileName(const char* filePath);
|
/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/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/pdfium/core/src/fxge/ge/ |
D | text_int.h | 62 CFX_FontFaceInfo(CFX_ByteString filePath, in CFX_FontFaceInfo() argument 67 : m_FilePath(filePath), in CFX_FontFaceInfo()
|
/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/ |
D | RTCLogging.mm | 56 NSString* RTCFileName(const char* filePath) { 58 [[NSString alloc] initWithBytesNoCopy:const_cast<char*>(filePath) 59 length:strlen(filePath)
|
/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()
|
/external/clang/tools/clang-format/ |
D | clang-format-bbedit.applescript | 17 set filePath to urlToPOSIXPath(fileURL) 18 …-format -offset=" & selectionOffset & " -length=" & selectionLength & " " & quoted form of filePath
|
/external/libxml2/xstc/ |
D | xstc.py | 349 filePath = self.fileName 356 self.debugMsg("loading schema: %s" % filePath) 357 schema = parseSchema(filePath) 385 filePath = self.fileName 392 self.debugMsg("loading instance: %s" % filePath) 401 instance = parserCtxt.ctxtReadFile(filePath, None, libxml2.XML_PARSE_NOWARNING) 427 instance_Err = validationCtxt.schemaValidateFile(filePath, 0)
|