Searched refs:filePath (Results 1 - 25 of 105) sorted by relevance

12345

/external/icu/icu4c/source/tools/toolutil/
H A Dfiletools.h27 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE);
30 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar);
H A Dfiletools.cpp43 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir) { argument
46 if (filePath == NULL || checkAgainst == NULL) {
67 isLatest = isFileModTimeLater(filePath, newpath, isDir);
72 int32_t latest = whichFileModTimeIsLater(filePath, newpath);
89 int32_t latest = whichFileModTimeIsLater(filePath, checkAgainst);
130 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar) { argument
131 for (int32_t i = 0, length = uprv_strlen(filePath); i < length; i++) {
132 filePath[i] = (filePath[i] == oldFileSepChar ) ? newFileSepChar : filePath[
[all...]
/external/testng/src/main/java/org/testng/xml/
H A DIFileParser.java9 T parse(String filePath, InputStream is, boolean loadClasses) throws TestNGException; argument
/external/webrtc/talk/app/webrtc/objc/
H A DRTCLogging.mm56 NSString* RTCFileName(const char* filePath) {
58 [[NSString alloc] initWithBytesNoCopy:const_cast<char*>(filePath)
59 length:strlen(filePath)
/external/testng/src/main/java/org/testng/internal/
H A DYamlParser.java13 public XmlSuite parse(String filePath, InputStream is, boolean loadClasses) argument
16 return Yaml.parse(filePath, is);
/external/lzma/CPP/Windows/
H A DCommonDialog.h11 LPCWSTR initialDir, // can be NULL, so dir prefix in filePath will be used
12 LPCWSTR filePath, // full path
H A DCommonDialog.cpp103 LPCWSTR filePath,
120 MyStringCopy(buf, (const char *)GetSystemString(filePath));
150 MyStringCopy(buf, filePath);
101 MyGetOpenFileName(HWND hwnd, LPCWSTR title, LPCWSTR initialDir, LPCWSTR filePath, LPCWSTR filterDescription, LPCWSTR filter, UString &resPath , bool openFolder ) argument
H A DFileFind.h106 bool FindFirst(CFSTR filePath, CStreamInfo &streamInfo);
117 CStreamEnumerator(const FString &filePath): _filePath(filePath) {} argument
/external/clang/include/clang/ARCMigrate/
H A DFileRemapper.h47 bool initFromFile(StringRef filePath, DiagnosticsEngine &Diag,
55 void remap(StringRef filePath, std::unique_ptr<llvm::MemoryBuffer> memBuf);
65 const FileEntry *getOriginalFile(StringRef filePath);
/external/deqp/scripts/src_util/
H A Dcommon.py58 def isTextFile (filePath):
59 ext = os.path.splitext(filePath)[1]
66 f = open(filePath, "rb")
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/objectal/
H A DOALSimpleAudio.java41 public native ALBuffer preloadEffect (String filePath); argument
44 public native boolean unloadEffect (String filePath); argument
47 public native ALSource playEffect (String filePath, float volume, float pitch, float pan, boolean loop); argument
H A DOALAudioTrack.java41 public native boolean preloadFile (String filePath); argument
/external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/objectal/
H A DOALSimpleAudio.java152 public native boolean playBgVolumePanLoop(String filePath, float volume, argument
168 public native ALSource playEffect(String filePath); argument
173 public native ALSource playEffectLoop(String filePath, boolean loop); argument
178 public native ALSource playEffectVolumePitchPanLoop(String filePath, argument
200 public native ALBuffer preloadEffect(String filePath); argument
204 public native ALBuffer preloadEffectReduceToMono(String filePath, argument
210 String filePath,
338 public native boolean unloadEffect(String filePath); argument
209 preloadEffectReduceToMonoCompletionBlock( String filePath, boolean reduceToMono, @ObjCBlock(name = �) Block_preloadEffectReduceToMonoCompletionBlock completionBlock) argument
/external/parameter-framework/upstream/test/test-platform/
H A Dmain.cpp86 auto filePath = options.front(); local
108 if (!CTestPlatform(filePath, portNumber).run(strError)) {
/external/pdfium/core/src/fxge/ge/
H A Dtext_int.h62 CFX_FontFaceInfo(CFX_ByteString filePath, argument
67 : m_FilePath(filePath),
/external/webrtc/talk/app/webrtc/objc/public/
H A DRTCLogging.h41 extern "C" NSString* RTCFileName(const char* filePath);
53 extern NSString* RTCFileName(const char* filePath);
/external/webrtc/webrtc/base/objc/
H A DRTCLogging.h24 extern "C" NSString* RTCFileName(const char* filePath);
36 extern NSString* RTCFileName(const char* filePath);
/external/mdnsresponder/mDNSPosix/
H A DmDNSPosix.h63 extern int ParseDNSServers(mDNS *m, const char *filePath);
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
H A DLoadPathToFileCache.java64 * @param filePath the absolute filepath location of the file
66 public void add(List<String> loadPaths, String filename, String filePath) { argument
70 cache.put(filePathMapKey, filePath);
H A DResourceLoaderAdaptor.java111 String filePath = loadPathCache.lookup(getLoadPaths(), name);
112 if (filePath != null) {
113 file = newFile(filePath);
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitBaseTest.java68 String filePath = testInput;
69 File testInputFile = new File(filePath);
72 testInputFile = new File(packagePath, filePath);
73 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath();
75 input = new ANTLRFileStream(filePath);
159 String filePath = testInput;
160 File testInputFile = new File(filePath);
163 testInputFile = new File(packagePath, filePath);
164 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath();
166 input = new ANTLRFileStream(filePath);
[all...]
/external/clang/lib/ARCMigrate/
H A DFileRemapper.cpp56 bool FileRemapper::initFromFile(StringRef filePath, DiagnosticsEngine &Diag, argument
60 std::string infoFile = filePath;
206 void FileRemapper::remap(StringRef filePath, argument
208 remap(getOriginalFile(filePath), std::move(memBuf));
227 const FileEntry *FileRemapper::getOriginalFile(StringRef filePath) { argument
228 const FileEntry *file = FileMgr->getFile(filePath);
/external/antlr/antlr-3.4/runtime/Python/
H A Dsetup.py44 filePath = os.path.join(root, name)
47 log.info("removing '%s'", filePath)
48 os.unlink(filePath)
52 filePath, exc
/external/icu/icu4c/source/test/perf/collationperf/
H A DCollPerf.pl42 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/lzma/CPP/7zip/UI/Common/
H A DExtract.cpp81 UString filePath; local
85 RINOK(arc.GetItemPath(i, filePath));
89 if (!IsPath1PrefixedByPath2(filePath, elimPrefix))
93 wchar_t c = filePath[elimPrefix.Len()];
105 if (!wildcardCensor.CheckPath(isAltStream, filePath, !isFolder))
320 op.filePath = arcPath;

Completed in 815 milliseconds

12345