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

<<11121314151617181920>>

  /external/chromium_org/v8/src/
array.js 69 function SparseJoinWithSeparator(array, len, convert, separator) {
84 return %SparseJoinWithSeparator(elements, len, separator);
88 // Optimized for sparse arrays if separator is ''.
118 function Join(array, length, separator, convert) {
132 if (separator.length == 0) {
135 return SparseJoinWithSeparator(array, length, convert, separator);
149 // We pull the empty separator check outside the loop for speed!
150 if (separator.length == 0) {
162 // Non-empty separator case.
182 var result = %_FastAsciiArrayJoin(elements, separator);
    [all...]
  /external/v8/src/
array.js 70 function SparseJoinWithSeparator(array, len, convert, separator) {
85 return %SparseJoinWithSeparator(elements, len, separator);
89 // Optimized for sparse arrays if separator is ''.
119 function Join(array, length, separator, convert) {
133 if (separator.length == 0) {
136 return SparseJoinWithSeparator(array, length, convert, separator);
150 // We pull the empty separator check outside the loop for speed!
151 if (separator.length == 0) {
163 // Non-empty separator case.
183 var result = %_FastAsciiArrayJoin(elements, separator);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
shell.c 409 char separator[20]; /* Separator character for MODE_List */ member in struct:callback_data
429 #define MODE_List 2 /* One record per line with a separator */
601 ** Output a single term of CSV. Actually, p->separator is used for
602 ** the separator, which may or may not be a comma. p->nullvalue is
612 int nSep = strlen30(p->separator);
615 || (z[i]==p->separator[0] &&
616 (nSep==1 || memcmp(z, p->separator, nSep)==0)) ){
633 fprintf(p->out, "%s", p->separator);
729 fprintf(p->out,"%s%s",azCol[i], i==nArg-1 ? "\n" : p->separator);
    [all...]
  /external/sqlite/dist/orig/
shell.c 427 char separator[20]; /* Separator character for MODE_List */ member in struct:callback_data
447 #define MODE_List 2 /* One record per line with a separator */
619 ** Output a single term of CSV. Actually, p->separator is used for
620 ** the separator, which may or may not be a comma. p->nullvalue is
629 int nSep = strlen30(p->separator);
632 || (z[i]==p->separator[0] &&
633 (nSep==1 || memcmp(z, p->separator, nSep)==0)) ){
650 fprintf(p->out, "%s", p->separator);
746 fprintf(p->out,"%s%s",azCol[i], i==nArg-1 ? "\n" : p->separator);
    [all...]
  /external/sqlite/dist/
shell.c 432 char separator[20]; /* Separator character for MODE_List */ member in struct:callback_data
452 #define MODE_List 2 /* One record per line with a separator */
624 ** Output a single term of CSV. Actually, p->separator is used for
625 ** the separator, which may or may not be a comma. p->nullvalue is
634 int nSep = strlen30(p->separator);
637 || (z[i]==p->separator[0] &&
638 (nSep==1 || memcmp(z, p->separator, nSep)==0)) ){
655 fprintf(p->out, "%s", p->separator);
751 fprintf(p->out,"%s%s",azCol[i], i==nArg-1 ? "\n" : p->separator);
    [all...]
  /libcore/luni/src/main/java/java/text/
DecimalFormat.java 124 * <td>Decimal separator or monetary decimal separator.</td>
136 * <td>Grouping separator.</td>
177 * separator is used instead of the decimal separator.</td>
212 * positive from negative values. Another example is that the decimal separator
213 * and thousands separator should be distinct characters, or parsing will be
216 * The <em>grouping separator</em> is a character that separates clusters of
265 * <li>The grouping separator ',' can occur inside the integer and sigDigits
434 * to the right of the decimal separator are suppressed after the minimum numbe
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
BitSet.java 474 * separator The string to put in between elements
479 String separator = ","; local
486 buf.append(separator);
504 * separator The string to put in between elements
507 public String toString(String separator, List vocabulary) {
515 str += separator;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CsvUtils.java 53 * flag is specified, these methods add an extra space just after the comma separator. Note that
117 * Find the index of a comma separator. The search takes account of quoted fields and escape
122 * @return the index of the comma separator, exclusive.
282 * space after each comma separator. {@link #JOIN_FLAGS_ALWAYS_QUOTED} will always add
294 final String separator = COMMA + ((joinFlags & JOIN_FLAGS_EXTRA_SPACE) != 0 ? " " : ""); local
298 sb.append(separator);
  /dalvik/libdex/
DexUtf.cpp 214 bool sepOrFirst = true; // first character or just encountered a separator.
240 // The wrong separator character.
244 // Separator at start or two separators in a row.
  /developers/build/
build.gradle 70 // Don't substitute a dot for the separator between the end of the
88 char separator = current.list().length > 1 ? '/' : '.';
89 collapsedPath.insert(0, "${current.name}${separator}");
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
BufferedWriterTest.java 134 String separator = System.getProperty("line.separator"); local
140 .equals("Hello" + separator + "World"));
  /external/chromium/chrome/browser/net/gaia/
token_service.cc 60 int separator = value.find(':'); local
61 std::string service = value.substr(0, separator);
62 std::string token = value.substr(separator + 1);
  /external/chromium_org/chrome_frame/
chrome_launcher.cc 50 0x180E, /* Mongolian Vowel Separator */
63 0x2028, /* Line Separator */
64 0x2029, /* Paragraph Separator */
  /external/chromium_org/content/browser/geolocation/
network_location_provider.cc 80 const base::string16 separator(ASCIIToUTF16("|"));
85 *key += separator;
87 *key += separator;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ContextMenu.js 82 case "separator":
83 return { type: "separator" };
154 this._items.push(new WebInspector.ContextMenuItem(this._contextMenu, "separator"));
  /external/chromium_org/ui/views/controls/menu/
menu.h 61 // Whether or not an item is a separator.
117 SEPARATOR
189 // Adds a separator to this menu
  /external/chromium_org/ui/views/controls/table/
table_header.cc 30 // Amount of space above/below the separator.
73 // Paint the background and a separator at the bottom. The separator color
  /external/chromium_org/ui/webui/resources/js/cr/ui/
menu_item.js 17 * Creates a new menu separator element.
18 * @return {cr.ui.MenuItem} The new separator element.
118 * @return {boolean} Whether the menu item is a separator.
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewGroupTest.java 60 defaultLineSeparator = System.getProperty("line.separator");
61 System.setProperty("line.separator", "\n");
66 System.setProperty("line.separator", defaultLineSeparator);
  /frameworks/base/packages/PrintSpooler/res/layout/
print_job_config_activity_content_editing.xml 221 android:background="@color/separator"
245 android:background="@color/separator"
263 android:background="@color/separator"
  /libcore/luni/src/test/java/libcore/java/io/
OldBufferedWriterTest.java 105 String separator = System.getProperty("line.separator"); local
111 sw.toString().equals("Hello" + separator + "World"));
  /libcore/luni/src/test/java/libcore/java/lang/
OldSystemTest.java 177 /*"user.timezone",*/ "path.separator",
179 "line.separator", "file.separator",
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
SplitTest.java 30 // A separator that doesn't occur in the input gets you the input.
41 // Examples without a trailing separator (and hence without a trailing empty match):
47 // Examples with a trailing separator (and hence possibly with a trailing empty match):
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
locale.h 59 char *thousands_sep; /* Thousands separator. */
70 Fourth char is the separator. Fifth char is '\0'. */
74 char *mon_thousands_sep; /* Thousands separator. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
locale.h 59 char *thousands_sep; /* Thousands separator. */
70 Fourth char is the separator. Fifth char is '\0'. */
74 char *mon_thousands_sep; /* Thousands separator. */

Completed in 1705 milliseconds

<<11121314151617181920>>