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

12

/frameworks/compile/mclinker/lib/Support/
H A DPath.cpp29 return (value == separator || value == preferred_separator);
37 return (value == separator);
73 return (separator == m_PathName[0]);
80 return ('.' == m_PathName[0] && separator == m_PathName[1]);
101 if(m_PathName[m_PathName.length()-1] == separator &&
102 pPath.native()[0] == separator) {
110 else if(this->native()[this->native().size()-1] != separator &&
111 pPath.native()[0] != separator) {
142 // On Windows platform, path can not append separator.
160 while(separator
[all...]
H A DCommandLine.cpp32 char separator = *(pArgName.data() + 1); local
33 if ('=' == separator)
/frameworks/compile/mclinker/lib/Support/Unix/
H A DPathV3.inc57 if (separator == pathname[handler]) { // handler = 1st '/'
62 case separator: { // '//'
63 while (next < pathname.size() && separator == pathname[next])
76 case separator: { // '/./'
85 case separator: { // '/../'
91 handler = pathname.find_first_of(separator, handler);
101 handler = pathname.find_first_of(separator, handler+3);
109 handler = pathname.find_first_of(separator, handler+2);
117 handler = pathname.find_first_of(separator, handler+1);
123 handler = pathname.find_first_of(separator, handle
[all...]
/frameworks/compile/mclinker/lib/Support/Windows/
H A DPathV3.inc50 if (separator == pathname[handler]) { // handler = 1st '/'
55 case separator: { // '//'
56 while (next < pathname.size() && separator == pathname[next])
69 case separator: { // '/./'
78 case separator: { // '/../'
84 handler = pathname.find_first_of(separator, handler);
94 handler = pathname.find_first_of(separator, handler+3);
102 handler = pathname.find_first_of(separator, handler+2);
110 handler = pathname.find_first_of(separator, handler+1);
116 handler = pathname.find_first_of(separator, handle
[all...]
/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/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.java180 * the scheme separator ':' and the fragment separator '#'. If this is a
191 * the scheme separator ':' and the fragment separator '#'. If this is a
276 * the query separator ('?') and before the fragment separator ('#'). This
286 * the query separator ('?') and before the fragment separator ('#'). This
489 /** Cached scheme separator index. */
499 /** Cached fragment separator inde
[all...]
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DTracer.java213 private static String join(String separator, Object[] strings) { argument
219 builder.append(separator);
/frameworks/base/core/java/android/os/
H A DBuild.java696 private static String[] getStringList(String property, String separator) { argument
701 return value.split(separator);
/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h30 const char separator = '/'; member in namespace:mcld::sys::fs
33 const char separator = '/';
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
H A DBandwidthTest.java118 File tmpSaveFile = new File(BASE_DIR + File.separator + TMP_FILENAME);
168 File tmpSaveFile = new File(BASE_DIR + File.separator + TMP_FILENAME);
231 File tmpSaveFile = new File(BASE_DIR + File.separator + TMP_FILENAME);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
H A DScreenshotTest.java129 return new File(Environment.getExternalStorageDirectory(), "Pictures" + File.separator +
/frameworks/compile/mclinker/lib/Core/
H A DGeneralOptions.cpp74 size_t pos = pName.find_last_of(sys::fs::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));
/frameworks/base/media/java/android/media/tv/
H A DTvContract.java1111 String separator = "";
1113 sb.append(separator).append(genre);
1114 separator = ",";
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DRuimRecords.java730 final int separator = localeStr.indexOf('-');
731 if (separator < 0) {
734 localeLangs[i] = localeStr.substring(0, separator);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java1376 private static String combineStrings(int[] list, String separator) { argument
1389 int separatorLength = separator.length();
1405 sb.append(separator);
/frameworks/base/core/java/android/content/res/
H A DResources.java1938 final int separator = languageTag.indexOf('-');
1942 if (separator == -1) {
1946 language = languageTag.substring(0, separator);
1947 remainder = languageTag.substring(separator);
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DFileRotatorTest.java374 String dirPath = getContext().getFilesDir() + File.separator + "inaccessible";
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
H A DMain.java272 File attrs = new File(res, "values" + File.separator + "attrs.xml");
/frameworks/multidex/library/src/android/support/multidex/
H A DMultiDex.java63 private static final String SECONDARY_FOLDER_NAME = "code_cache" + File.separator +
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DTimePickerDialog.java275 TextView separatorView = (TextView) view.findViewById(R.id.separator);
333 ((TextView) view.findViewById(R.id.separator)).setTextColor(mThemeDark? white : timeDisplay);
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h1389 const AString &s, const char *separator, List<AString> *items) {
1393 ssize_t offset = s.find(separator, start);
1401 start = offset + strlen(separator);
1388 SplitString( const AString &s, const char *separator, List<AString> *items) argument

Completed in 2991 milliseconds

12