Searched refs:separator (Results 1 - 21 of 21) sorted by relevance

/frameworks/compile/mclinker/lib/Support/Unix/
H A DPathV3.inc28 const char separator = '/';
58 if (separator == pathname[handler]) { // handler = 1st '/'
63 case separator: { // '//'
64 while (next < pathname.size() && separator == pathname[next])
77 case separator: { // '/./'
86 case separator: { // '/../'
92 handler = pathname.find_first_of(separator, handler);
102 handler = pathname.find_first_of(separator, handler+3);
110 handler = pathname.find_first_of(separator, handler+2);
118 handler = pathname.find_first_of(separator, handle
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DPath.cpp47 return (separator == m_PathName[0]);
54 return ('.' == m_PathName[0] && separator == m_PathName[1]);
75 if(m_PathName[m_PathName.length()-1] == separator &&
76 pPath.native()[0] == separator) {
84 else if(this->string()[this->native().size()-1] != separator &&
85 pPath.string()[0] != separator) {
136 while(separator == m_PathName[pSepPos])
145 size_t end_pos = m_PathName.find_last_of(separator);
153 size_t begin_pos = m_PathName.find_last_of(separator)+1;
188 return (value == separator
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DMCLDFile.cpp40 size_t pos = pName.find_last_of(sys::fs::separator);
/frameworks/base/test-runner/src/junit/runner/
H A DClassPathTestCollector.java59 String separator= System.getProperty("path.separator");
60 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);
H A DTestCaseClassLoader.java56 String separator= System.getProperty("path.separator");
58 StringTokenizer st= new StringTokenizer(classPath, separator);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DManagerService.java48 Environment.getExternalStorageDirectory() + File.separator + "layout-test-results";
54 EXPECTED_RESULT_LOCATION_RELATIVE_DIR_PREFIXES.add("platform" + File.separator +
55 "android-v8" + File.separator);
56 EXPECTED_RESULT_LOCATION_RELATIVE_DIR_PREFIXES.add("platform" + File.separator +
57 "android" + File.separator);
H A DSummarizer.java229 return new File(ManagerService.RESULTS_ROOT_DIR_PATH + File.separator +
460 id = relativePath.replace(File.separator, ":");
/frameworks/base/core/java/android/util/
H A DJsonWriter.java137 * The name/value separator; either ":" or ": ".
139 private String separator = ":"; field in class:JsonWriter
166 this.separator = ":";
169 this.separator = ": ";
516 out.append(separator);
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageManagerBaseTest.java631 doValidateZeroLongFile(path + File.separator + "subdir1", "FiftyLongs", 50, true);
634 doValidateIntContents(path + File.separator + "subdir2", "OneToOneThousandInts", 0, 1000);
637 doValidateZeroLongFile(path + File.separator + "subdir2" + File.separator + "subdir2a",
641 doValidateIntContents(path + File.separator + "subdir2" + File.separator + "subdir2a"
642 + File.separator + "subdir2a1", "OneToOneThousandInts", 0, 1000);
/frameworks/base/core/java/android/net/
H A DUri.java177 * scheme separator ':' and the fragment separator '#'. If this is a
188 * scheme separator ':' and the fragment separator '#'. If this is a
273 * the query separator ('?') and before the fragment separator ('#'). This
283 * the query separator ('?') and before the fragment separator ('#'). This
486 /** Cached scheme separator index. */
496 /** Cached fragment separator inde
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h31 const wchar_t separator = L'\\'; member in namespace:mcld::sys::fs
34 const char separator = '/';
115 /// is_separator - is the given character a separator of a path.
117 // @result true if \a value is a path separator character on the host OS
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
H A DBandwidthTest.java120 File tmpSaveFile = new File(BASE_DIR + File.separator + TMP_FILENAME);
170 File tmpSaveFile = new File(BASE_DIR + File.separator + TMP_FILENAME);
233 File tmpSaveFile = new File(BASE_DIR + File.separator + TMP_FILENAME);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
H A DScreenshotTest.java125 return new File(Environment.getExternalStorageDirectory(), "Pictures" + File.separator +
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfoSource.java305 String separator = System.getProperty("path.separator", ":");
306 return classPath.split(Pattern.quote(separator));
H A DInstrumentationTestRunner.java635 return getTargetContext().getFilesDir().getAbsolutePath() + File.separator +
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DFontLoader.java116 fontOsLocation + File.separator);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java1081 private static String combineStrings(int[] list, String separator) { argument
1094 int separatorLength = separator.length();
1110 sb.append(separator);
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h1076 const AString &s, const char *separator, List<AString> *items) {
1080 ssize_t offset = s.find(separator, start);
1088 start = offset + strlen(separator);
1075 SplitString( const AString &s, const char *separator, List<AString> *items) argument
/frameworks/base/core/java/android/content/
H A DSyncManager.java1358 final String separator = new String(chars);
1365 pw.println(separator);
1408 pw.println(separator);
/frameworks/base/services/java/com/android/server/pm/
H A DUserManagerService.java83 private static final String USER_INFO_DIR = "system" + File.separator + "users";
H A DPackageManagerService.java3563 return new File(mUserAppDataDir.getAbsolutePath() + File.separator + userId);
3575 return new File(mUserAppDataDir.getAbsolutePath() + File.separator + userId
3576 + File.separator + packageName);

Completed in 504 milliseconds