HomeSort by relevance Sort by last modified time
    Searched full:separator (Results 826 - 850 of 2854) sorted by null

<<31323334353637383940>>

  /external/guava/guava/src/com/google/common/primitives/
Chars.java 352 * by {@code separator}. For example, {@code join("-", '1', '2', '3')} returns
355 * @param separator the text that should appear between consecutive values in
359 public static String join(String separator, char... array) {
360 checkNotNull(separator);
367 = new StringBuilder(len + separator.length() * (len - 1));
370 builder.append(separator).append(array[i]);
Doubles.java 292 * by {@code separator}. For example, {@code join("-", 1.0, 2.0, 3.0)} returns
299 * @param separator the text that should appear between consecutive values in
303 public static String join(String separator, double... array) {
304 checkNotNull(separator);
313 builder.append(separator).append(array[i]);
Floats.java 289 * {@code separator}. For example, {@code join("-", 1.0f, 2.0f, 3.0f)}
296 * @param separator the text that should appear between consecutive values in
300 public static String join(String separator, float... array) {
301 checkNotNull(separator);
310 builder.append(separator).append(array[i]);
Ints.java 361 * by {@code separator}. For example, {@code join("-", 1, 2, 3)} returns
364 * @param separator the text that should appear between consecutive values in
368 public static String join(String separator, int... array) {
369 checkNotNull(separator);
378 builder.append(separator).append(array[i]);
Longs.java 345 * by {@code separator}. For example, {@code join("-", 1L, 2L, 3L)} returns
348 * @param separator the text that should appear between consecutive values in
352 public static String join(String separator, long... array) {
353 checkNotNull(separator);
362 builder.append(separator).append(array[i]);
Shorts.java 358 * by {@code separator}. For example, {@code join("-", (short) 1, (short) 2,
361 * @param separator the text that should appear between consecutive values in
365 public static String join(String separator, short... array) {
366 checkNotNull(separator);
375 builder.append(separator).append(array[i]);
generate.sh 374 * by {@code separator}. For example, {@code join("-", 1?, 2?, 3?)} returns
377 * @param separator the text that should appear between consecutive values in
381 public static String join(String separator, primtyp... array) {
382 checkNotNull(separator);
391 builder.append(separator).append(array[i]);
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Chars.java 301 * by {@code separator}. For example, {@code join("-", '1', '2', '3')} returns
304 * @param separator the text that should appear between consecutive values in
308 public static String join(String separator, char... array) {
309 checkNotNull(separator);
316 = new StringBuilder(len + separator.length() * (len - 1));
319 builder.append(separator).append(array[i]);
Ints.java 305 * by {@code separator}. For example, {@code join("-", 1, 2, 3)} returns
308 * @param separator the text that should appear between consecutive values in
312 public static String join(String separator, int... array) {
313 checkNotNull(separator);
322 builder.append(separator).append(array[i]);
Shorts.java 306 * by {@code separator}. For example, {@code join("-", (short) 1, (short) 2,
309 * @param separator the text that should appear between consecutive values in
313 public static String join(String separator, short... array) {
314 checkNotNull(separator);
323 builder.append(separator).append(array[i]);
  /external/icu4c/common/
loclikely.cpp 80 * Append a tag to a buffer, adding the separator if necessary. The buffer
81 * must be large enough to contain the resulting tag plus any separator
332 /* extra separator is required */
501 * instead. Otherwise, move past any separator.
531 * Move past any separator.
555 /* back up over consumed trailing separator */
    [all...]
  /external/icu4c/i18n/unicode/
choicfmt.h 83 * choiceStyle = number separator message ('|' number separator message)*
86 * separator = less_than | less_than_or_equal
103 * the sequence of <code>(number separator string)</code> in an equivalent pattern string.
104 * <code>closure[i]==TRUE</code> corresponds to a <code>less_than</code> separator sign.
112 * any range's message. That range's number is returned, ignoring the separator/closure.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddSupportJarAction.java 269 File libraryPath = new File(supportPath, FD_V7 + File.separator + FD_GRIDLAYOUT);
305 SdkConstants.FD_EXTRAS + File.separator
306 + VENDOR_ID + File.separator
317 SdkConstants.FD_EXTRAS + File.separator
318 + VENDOR_ID + File.separator
336 File path = new File(supportDir, FD_V4 + File.separator + ANDROID_SUPPORT_V4_JAR);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/
plugin.xml 442 <separator name="group1" />
443 <separator name="group2" />
444 <separator name="group3" />
445 <separator name="group4" />
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.cc 137 char separator = '('; local
139 query.push_back(separator);
140 separator = ',';
645 const char* separator = "( "; local
648 query.append(separator);
649 values.append(separator);
650 separator = ", ";
    [all...]
  /external/chromium/base/
file_path.cc 91 // Look for a separator right after the drive specification.
99 // Look for a separator in the first position.
317 // separator intact indicating alternate root.
341 // Keep everything after the final separator, but if the pathname is only
342 // one character and it's a separator, leave it alone.
461 // Don't append a separator if the path is empty (indicating the current
465 // Don't append a separator if the path still ends with a trailing
466 // separator after stripping (indicating the root directory).
468 // Don't append a separator if the path is just a drive letter.
    [all...]
  /external/chromium_org/base/files/
file_path.cc 85 // Look for a separator right after the drive specification.
93 // Look for a separator in the first position.
330 // separator intact indicating alternate root.
354 // Keep everything after the final separator, but if the pathname is only
355 // one character and it's a separator, leave it alone.
501 // Don't append a separator if the path is empty (indicating the current
505 // Don't append a separator if the path still ends with a trailing
506 // separator after stripping (indicating the root directory).
508 // Don't append a separator if the path is just a drive letter.
    [all...]
  /external/chromium/chrome/browser/tab_contents/
render_view_context_menu.cc 140 case WebMenuItem::SEPARATOR:
308 // If this is the first extension-provided menu item, add a separator.
358 // a separator. The converse case is handled below.
362 last_type = ExtensionMenuItem::SEPARATOR;
391 // Auto-append a separator if needed.
392 if (last_type != ExtensionMenuItem::SEPARATOR)
397 } else if (item->type() == ExtensionMenuItem::SEPARATOR) {
398 if (i != items.begin() && last_type != ExtensionMenuItem::SEPARATOR) {
549 // section, so omit the separator there.
    [all...]
  /libcore/luni/src/main/java/java/io/
File.java 69 * <p>This field is initialized from the system property "file.separator".
78 public static final String separator; field in class:File
85 * <p>This field is initialized from the system property "path.separator".
107 separatorChar = System.getProperty("file.separator", "/").charAt(0);
108 pathSeparatorChar = System.getProperty("path.separator", ":").charAt(0);
109 separator = String.valueOf(separatorChar);
139 * placing a path separator between the two.
208 // Joins two path components, adding a separator only if necessary.
443 int separatorIndex = path.lastIndexOf(separator);
    [all...]
  /external/chromium/googleurl/src/
url_parse.cc 79 // Found separator: <username>:<password>
84 // No separator, treat everything as the username
156 // Search backwards for @, which is the separator between the user info and
547 // Skip the separator after the key (if any).
557 // Finally skip the next separator if any
  /external/chromium_org/third_party/icu/source/common/
locdispnames.cpp 289 static const char _kSeparator[] = "separator";
536 /* append separator */
562 /* append separator */
588 /* append separator */
644 /* Remove separator */
  /external/chromium_org/third_party/icu/source/test/intltest/
idnaref.cpp 723 if(!(labelLen==0 && done)){// make sure this is not a root label separator.
756 // add the label separator
805 // add the label separator
909 // add the label separator
962 // add the label separator
  /external/icu4c/test/intltest/
idnaref.cpp 725 if(!(labelLen==0 && done)){// make sure this is not a root label separator.
758 // add the label separator
807 // add the label separator
911 // add the label separator
964 // add the label separator
  /libcore/json/src/main/java/org/json/
JSONTokener.java 373 * Expect the name/value separator to be either a colon ':', an
377 int separator = nextCleanInternal(); local
378 if (separator != ':' && separator != '=') {
422 /* A separator without a value first means "null". */
  /libcore/luni/src/main/java/java/util/logging/
FileHandler.java 72 * <li>"/" represents the local pathname separator</li>
268 .endsWith(File.separator));
272 .endsWith(File.separator));
296 sb.append(File.separator);
302 sb.append(File.separator);

Completed in 557 milliseconds

<<31323334353637383940>>