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

1 2 3 4 5 6

  /external/skia/src/utils/
SkOSPath.cpp 19 SkString SkOSPath::Basename(const char* fullPath) {
20 if (!fullPath) {
23 const char* filename = strrchr(fullPath, SEPARATOR);
25 filename = fullPath;
32 SkString SkOSPath::Dirname(const char* fullPath) {
33 if (!fullPath) {
36 const char* end = strrchr(fullPath, SEPARATOR);
40 if (end == fullPath) {
41 SkASSERT(fullPath[0] == SEPARATOR);
44 return SkString(fullPath, end - fullPath)
    [all...]
SkOSPath.h 36 * Behaves like python's os.path.basename. If the fullPath is
38 * @param fullPath Full path to the file.
42 static SkString Basename(const char* fullPath);
46 * Behaves like python's os.path.dirname. If the fullPath is
48 * @param fullPath Full path to the file.
52 static SkString Dirname(const char* fullPath);
  /external/skqp/src/utils/
SkOSPath.cpp 19 SkString SkOSPath::Basename(const char* fullPath) {
20 if (!fullPath) {
23 const char* filename = strrchr(fullPath, SEPARATOR);
25 filename = fullPath;
32 SkString SkOSPath::Dirname(const char* fullPath) {
33 if (!fullPath) {
36 const char* end = strrchr(fullPath, SEPARATOR);
40 if (end == fullPath) {
41 SkASSERT(fullPath[0] == SEPARATOR);
44 return SkString(fullPath, end - fullPath)
    [all...]
SkOSPath.h 36 * Behaves like python's os.path.basename. If the fullPath is
38 * @param fullPath Full path to the file.
42 static SkString Basename(const char* fullPath);
46 * Behaves like python's os.path.dirname. If the fullPath is
48 * @param fullPath Full path to the file.
52 static SkString Dirname(const char* fullPath);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/util/
utility.h 21 #define OPEN_FILE_WB(filePtr, fullPath) \
24 if(fullPath != NULL) \
26 filePtr = fopen(fullPath, "wb"); \
29 printf("could not open %s to write to.", fullPath); \
39 #define OPEN_FILE_AB(filePtr, fullPath) \
42 if(fullPath != NULL) \
44 filePtr = fopen(fullPath, "ab"); \
47 printf("could not open %s to write to.", fullPath); \
57 #define OPEN_FILE_RB(filePtr, fullPath) \
60 if(fullPath != NULL)
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/icu/
XPPUtil.java 40 String fullPath = whichFile.getFullXPath(xpath);
41 if (fullPath == null) {
44 return getAttributeValue(fullPath, attribute);
48 String fullPath = file.getFullXPath(xpath);
49 xpp.set(fullPath);
BreakIteratorMapper.java 53 String fullPath = specialsFile.getFullXPath(path);
55 xpp.set(fullPath);
60 System.err.println("WARNING: brkiter: in " + locale + ".xml (ICU specials): Ignoring path: " + fullPath);
65 System.err.println("WARNING: brkiter: in " + locale + ".xml (ICU specials): Ignoring path (unknown special): " + fullPath);
77 .println("WARNING: brkiter: in " + locale + ".xml (ICU specials): Ignoring path (unknown element: " + element2 + "): " + fullPath);
82 System.err.println("WARNING: brkiter: in " + locale + ".xml (ICU specials): Malformed path: " + fullPath);
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
FileSystemResourceLoader.java 77 String fullPath;
79 fullPath = file.getCanonicalPath();
81 fullPath = file.getAbsolutePath();
83 return String.format("%s@%s", fullPath, file.lastModified());
  /external/icu/icu4c/source/tools/toolutil/
pkg_gencmn.cpp 411 char *fullPath = NULL;
429 fullPath = pathToFullPath(filename, source);
442 files[fileCount].pathname=fullPath;
447 file=T_FileStream_open(fullPath, "rb");
449 fprintf(stderr, "gencmn: unable to open listed file %s\n", fullPath);
456 fprintf(stderr, "gencmn: unable to get length of listed file %s\n", fullPath);
465 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
515 char *fullPath;
520 fullPath = (char *)uprv_malloc(newLength);
522 uprv_strcpy(fullPath, source)
    [all...]
  /external/ImageMagick/Magick++/fuzz/
main.cc 75 fullPath[BUFSIZE],
79 GetFullPathName(argv[0], BUFSIZE, fullPath, lppPart);
80 PathRemoveExtension(fullPath);
81 fileName = wstring(fullPath) + L".input";
  /external/cldr/tools/java/org/unicode/cldr/tool/
ShowCoverageLevels.java 32 String fullPath = cldrFileToCheck.getFullXPath(path);
33 if (fullPath == null) {
37 // Level level = testInfo.getSupplementalDataInfo().getCoverageLevel(fullPath, locale);
38 Level level = coverageInfo.getCoverageLevel(fullPath, locale);
43 + locale + ", " + path + ", " + fullPath + ", " + value);
DiffWithParent.java 31 true).addColumn("Locale").addColumn("Value").addColumn("FullPath");
44 String fullPath = file.getFullXPath(path);
47 if (!value.equals(pvalue) || !fullPath.equals(pfullPath)) {
50 .addCell(showDistinguishingAttributes(fullPath)).finishRow();
89 private static String showDistinguishingAttributes(String fullPath) {
90 fullParts.set(fullPath);
91 String path = CLDRFile.getDistinguishingXPath(fullPath, null, false);
PivotData.java 118 // find all the unique paths that I have, where the value or fullpath is different from the parent.
130 String fullPath = me.getFullXPath(path);
139 if (!fullPath.equals(oldFullXPath) || !value.equals(oldValue)) {
140 if (fullPath.contains("[@casing") != oldFullXPath.contains("[@casing")) {
144 + CldrUtility.LINE_SEPARATOR + fullPath + CldrUtility.LINE_SEPARATOR + oldFullXPath);
211 String fullPath = null, value = null, oldFullXPath = null, oldValue = null;
212 fullPath = toAddFrom.getFullXPath(path);
213 if (fullPath == null) continue;
221 if (!fullPath.equals(oldFullXPath) || !value.equals(oldValue)) {
222 if (oldFullXPath != null && fullPath.contains("[@casing") != oldFullXPath.contains("[@casing"))
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
CharacterFallbacks.java 29 String fullPath = characterFallbacks.getFullXPath(path);
30 parts.set(fullPath);
38 throw new IllegalArgumentException("Illegal value in " + fullPath);
  /external/lzma/CPP/7zip/Bundles/SFXSetup/
ExtractCallbackSfx.cpp 86 FString fullPath = _directoryPath;
89 fullPath += us2fs(dirPathParts[i]);
90 CreateDir(fullPath);
91 fullPath.Add_PathSepar();
104 UString fullPath;
109 fullPath = _itemDefaultName;
114 fullPath.SetFromBstr(prop.bstrVal);
116 _filePath = fullPath;
152 SplitPathToParts(fullPath, pathParts);
156 UString processedPath = fullPath;
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/test/
CheckCasing.java 39 public CheckCLDR handleCheck(String path, String fullPath, String value, Options options,
42 if (fullPath == null) return this; // skip paths that we don't have
43 if (fullPath.indexOf("casing") < 0) return this;
46 parts.set(fullPath);
CheckForInheritanceMarkers.java 11 public CheckCLDR handleCheck(String path, String fullPath, String value, Options options,
CheckAlt.java 19 public CheckCLDR handleCheck(String path, String fullPath, String value,
21 if (fullPath == null) return this; // skip paths that we don't have
46 // if (fullPath.contains("x999")) {
CheckCurrencies.java 17 public CheckCLDR handleCheck(String path, String fullPath, String value, Options options,
20 if (fullPath == null) return this; // skip paths that we don't have
CheckMetazones.java 16 public CheckCLDR handleCheck(String path, String fullPath, String value, Options options,
19 if (fullPath == null) return this; // skip paths that we don't have
  /external/deqp/scripts/build/
common.py 108 fullPath = os.path.join(path, binWithExt)
109 if os.path.isfile(fullPath) and os.access(fullPath, os.X_OK):
110 return fullPath
  /external/lzma/CPP/7zip/UI/Common/
ArchiveOpenCallback.cpp 109 FString fullPath;
110 if (!NFile::NName::GetFullPath(_folderPrefix, us2fs(name2), fullPath))
112 if (!_fileInfo.Find(fullPath))
118 if (!inFile->Open(fullPath))
  /external/cldr/tools/java/org/unicode/cldr/json/
CldrItem.java 67 private String fullPath;
97 CldrItem(String path, String fullPath, String untransformedPath, String untransformedFullPath, String value) {
102 System.out.println("FULLPATH => " + fullPath);
108 this.fullPath = fullPath;
120 return fullPath;
148 public void setFullPath(String fullPath) {
149 this.fullPath = fullPath;
    [all...]
  /external/antlr/gunit/src/main/java/org/antlr/gunit/
Interp.java 109 public static String getTestsuiteDir(String fullPath, String fileName) {
110 return fullPath.substring(0, fullPath.length()-fileName.length());
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
ResourceLoaderAdaptor.java 196 String fullPath;
198 fullPath = file.getCanonicalPath();
200 fullPath = file.getAbsolutePath();
202 return String.format("%s@%s", fullPath, file.lastModified());

Completed in 6984 milliseconds

1 2 3 4 5 6