HomeSort by relevance Sort by last modified time
    Searched refs:separator (Results 26 - 50 of 266) sorted by null

12 3 4 5 6 7 8 91011

  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.8-3.js 24 ECMA Section: 15.5.4.8 String.prototype.split( separator )
29 searching from left to right for occurrences of the given separator; these
31 to divide up this string value. The separator may be a string of any length.
33 As a special case, if the separator is the empty string, the string is split
37 If the separator is not supplied, then the result array contains just one
40 When the split method is called with one argument separator, the following steps are taken:
44 3. If separator is not supplied, call the [[Put]] method of A with 0 and
46 4. Call ToString(separator).
50 8. If Result(6) is zero (the separator string is empty), go to step 17.
108 // this.toString() is the empty string, separator is specified
    [all...]
  /external/nist-sip/java/gov/nist/core/
NameValue.java 55 private String separator; field in class:NameValue
66 separator = Separators.EQUALS;
84 separator = Separators.EQUALS;
100 * Set the separator for the encoding method below.
103 separator = sep;
166 buffer.append(name).append(separator).append(quotes);
172 buffer.append(name).append(separator).append(gvlist.encode());
177 return name + separator + quotes + quotes;
181 buffer.append(name).append(separator).append(quotes).append(quotes);
184 buffer.append(name).append(separator); // JvB: fix, case: "sip:host?subject=
    [all...]
NameValueList.java 61 private String separator; field in class:NameValueList
67 this.separator = ";";
72 this.separator = ";";
79 public void setSeparator(String separator) {
80 this.separator = separator;
106 buffer.append(separator);
217 retval.setSeparator(this.separator);
ParserCore.java 48 protected NameValue nameValue(char separator) throws ParseException {
63 if (la == separator ) {
  /cts/tests/tests/permission/src/android/permission/cts/
NoReadLogsPermissionTest.java 54 String separator = System.getProperty("line.separator"); local
57 log.append(separator);
  /external/proguard/src/proguard/wtk/
ProGuardObfuscator.java 116 String separator = System.getProperty("path.separator"); local
121 // Find the next separator, or the end of the String.
122 int next_index = classPathString.indexOf(separator, index);
135 // Continue after the separator.
  /sdk/androidprefs/src/com/android/prefs/
AndroidLocation.java 45 * @return an OS specific path, terminated by a separator.
58 sPrefsLocation = home + File.separator + ".android" + File.separator;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
AdtTestData.java 71 if (!mOsRootDataPath.endsWith(File.separator)) {
72 sLogger.info("Fixing test_data env variable (does not end with path separator)");
73 mOsRootDataPath = mOsRootDataPath.concat(File.separator);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
FileTest.java 65 return path + File.separator;
75 tempDirectory = new File(addTrailingSlash(System.getProperty("java.io.tmpdir")) + "harmony-test-" + getClass().getSimpleName() + File.separator);
298 File.separator + "pa th" + File.separator + "another\u20ac" + File.separator + "pa%th"));
402 if (!dirName.endsWith(File.separator)) {
403 dirName += File.separator;
406 dir.getPath() + File.separator, dirName);
415 String sep = File.separator;
734 f = new File(base + "Temp" + File.separator + File.separator + "temp.tst")
1015 String separator = File.separator; local
    [all...]
FilePermissionTest.java 122 FilePermission fp13 = new FilePermission(File.separator, "read");
123 FilePermission fp14 = new FilePermission(File.separator + "*", "read");
125 fp14 = new FilePermission(File.separator + "-", "read");
165 char separator = File.separatorChar; local
166 char nonSeparator = (separator == '/') ? '\\' : '/';
169 FilePermission fp2 = new FilePermission(separator + "a", "read");
170 assertFalse("Assert 0: non-separator worked", fp1.implies(fp2));
172 assertFalse("Assert 1: non-separator worked", fp1.implies(fp2));
  /external/guava/src/com/google/common/base/
Splitter.java 32 * into substrings, by recognizing a <i>separator</i> (a.k.a. "delimiter")
75 * The separator recognized by the splitter does not have to be a single
108 * Returns a splitter that uses the given single-character separator. For
112 * @param separator the character to recognize as a separator
113 * @return a splitter, with default settings, that recognizes that separator
115 public static Splitter on(char separator) {
116 return on(CharMatcher.is(separator));
121 * given {@code CharMatcher} to be a separator. For example, {@code
126 * character is a separator
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
TrustManagerFactoryImpl.java 56 + java.io.File.separator + "etc" + java.io.File.separator
57 + "security" + java.io.File.separator
  /cts/tools/host/src/com/android/cts/
HostConfig.java 135 String[] subDirs = configPath.split("\\" + File.separator);
153 configFile = mConfigRoot + File.separator + fileName;
173 String caseRoot = repositoryRoot + File.separator + caseCfg;
174 String planRoot = repositoryRoot + File.separator + planCfg;
175 String resRoot = repositoryRoot + File.separator + resCfg;
370 InputStream in = getClass().getResourceAsStream(File.separator + name);
471 String pathName = mRoot + File.separator + f.getName()
472 + File.separator + TestSessionLog.CTS_RESULT_FILE_NAME;
561 String xmlPath = getRoot() + File.separator
577 return packagePath.substring(packagePath.lastIndexOf(File.separator) + 1
    [all...]
HostLock.java 41 mFile = new File(tmpdir + File.separator + "ctsLockFile.txt");
HostUtils.java 249 * @param separator The separator between the date information and time information.
250 * @param dateSeparator The date separator separating the date information nibbles.
251 * @param timeSeparator The time separator separating the time information nibbles.
254 public static String getFormattedTimeString(long milliSec, String separator,
266 if ((separator == null) || (separator.length() == 0)) {
267 separator = "_";
279 + separator + "%02d" + timeSeparator + "%02d" + timeSeparator + "%02d";
  /cts/tools/host/test/com/android/cts/
ConsoleTests.java 57 mPath1 = ROOT + File.separator + "com.google.android.cts.p1.zip";
58 mPath2 = ROOT + File.separator + "com.google.android.cts.p2.zip";
59 mPath3 = ROOT + File.separator + "net.sf.jlee.cts.p3.zip";
113 mPath1 = ROOT + File.separator + "com.google.android.cts.p1.zip";
114 mPath2 = ROOT + File.separator + "com.google.android.cts.p2.zip";
115 mPath3 = ROOT + File.separator + "net.sf.jlee.cts.p3.zip";
173 mPath1 = ROOT + File.separator + pkgName1;
174 mPath2 = ROOT + File.separator + pkgName2;
192 mPath1 = ROOT + File.separator + pkgName1;
207 mPath1 = ROOT + File.separator + name + HostConfig.FILE_SUFFIX_ZIP
    [all...]
  /external/proguard/src/proguard/io/
FileDataEntry.java 55 .substring(directory.getPath().length() + File.separator.length())
  /packages/apps/Mms/src/com/android/mms/data/
ContactList.java 66 public String formatNames(String separator) {
72 return TextUtils.join(separator, names);
75 public String formatNamesAndNumbers(String separator) {
81 return TextUtils.join(separator, nans);
  /cts/tools/dex-tools/src/dex/reader/
TypeFormatter.java 91 private String format(List<?> elements, String separator) {
96 builder.append(separator);
  /dalvik/dx/src/junit/runner/
ClassPathTestCollector.java 58 String separator= System.getProperty("path.separator"); local
59 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);
  /external/bluetooth/glib/glib/
gfileutils.h 110 gchar *g_build_path (const gchar *separator,
113 gchar *g_build_pathv (const gchar *separator,
  /external/junit/src/junit/runner/
ClassPathTestCollector.java 61 String separator= System.getProperty("path.separator"); local
62 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);
  /frameworks/base/test-runner/src/junit/runner/
ClassPathTestCollector.java 59 String separator= System.getProperty("path.separator"); local
60 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);
  /libcore/junit/src/test/java/junit/runner/
ClassPathTestCollector.java 58 String separator= System.getProperty("path.separator"); local
59 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);
  /packages/apps/CertInstaller/src/com/android/certinstaller/
Util.java 72 private static String toHexString(byte[] bytes, String separator) {
75 hexString.append(Integer.toHexString(0xFF & b)).append(separator);

Completed in 553 milliseconds

12 3 4 5 6 7 8 91011