HomeSort by relevance Sort by last modified time
    Searched full:comma (Results 76 - 100 of 664) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebKit/chromium/public/
WebFileChooserParams.h 48 // |acceptTypes| has a comma-separated MIME types such as "audio/*,text/plain".
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_config.h 59 unsigned long csv; /* comma-separated value output */
  /packages/inputmethods/LatinIME/java/res/xml/
kbd_phone_symbols.xml 37 <!-- Pause is a comma.
  /sdk/emulator/keymaps/
qwerty.kcm 33 COMMA ',' ',' ',' ';' ';' '|'
  /external/gtest/include/gtest/internal/
gtest-internal.h 637 // Skips to the first non-space char after the first comma in 'str';
638 // returns NULL if no comma is found in 'str'.
640 const char* comma = strchr(str, ','); local
641 if (comma == NULL) {
644 while (isspace(*(++comma))) {}
645 return comma;
648 // Returns the prefix of 'str' before the first comma in it; returns
649 // the entire string if it contains no comma.
651 const char* comma = strchr(str, ','); local
652 return comma == NULL ? String(str) : String(str, comma - str)
    [all...]
  /external/bison/tests/
existing.at 210 | param_list comma NAME
213 | param_list comma error
229 | rexpression_list comma rexp
233 | rexpression_list comma error
243 | expression_list comma exp
247 | expression_list comma error
250 /* Expressions, not including the comma operator. */
347 comma : ',' opt_nls
  /external/bluetooth/bluez/tools/
hciconfig.8 94 is a comma-separated list of packet types, where the possible packet types are
256 or a comma-separated list of keywords, where possible keywords are
hcitool.1 82 is a comma-separated list of packet types, where the possible packet types are
122 is a comma-separated list of packet types, where the possible packet types are
  /external/grub/netboot/
README.netboot 49 Probe for CS89x0 base address using LIST of comma separated hex
104 Probe for NE base address using LIST of comma separated hex
  /external/icu4c/test/letest/
xmlreader.cpp 63 // trim whitespace following the comma
109 // trim whiteapce following the comma
  /external/v8/src/
prettyprinter.h 181 // of tags, the indentation of their bodies, and comma separating their
198 // of attribute blocks, the indentation of their bodies, and comma
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
15.10.3.1-1.js 49 var comma = ', '; var singlequote = "'"; var closeparens = '))'; variable
108 return (statprefix + quote(regexp) + comma + flag + closeparens);
15.10.3.1-2.js 57 var comma = ', '; var singlequote = "'"; var closeparens = '))'; variable
116 return (statprefix + quote(regexp) + comma + flag + closeparens);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java 244 * Returns true if the token is followed by a comma in the original full name.
254 * @param commonPrefixes comma-separated list of common prefixes,
256 * @param commonLastNamePrefixes comma-separated list of common last name prefixes,
258 * @param commonSuffixes comma-separated list of common suffixes,
260 * @param commonConjunctions comma-separated list of common conjuctions,
284 * Converts a comma-separated list of Strings to a set of Strings. Trims strings
684 // If the first word is followed by a comma, assume that it's the family name
691 // If the second word is followed by a comma and the first word
    [all...]
PostalSplitter.java 77 private static final String COMMA = ",";
206 if (hasCity) builder.append(COMMA + SPACE);
  /build/tools/droiddoc/src/
Stubs.java 396 String comma = ""; local
398 stream.print(comma + iface.fullName(classDeclTypeVars));
399 comma = ", ";
528 String comma; local
561 comma = "";
565 stream.print(comma + fullParameterTypeName(method, param.type(), count == size)
567 comma = ", ";
572 comma = "";
576 stream.print(comma + thrown.qualifiedName());
577 comma = ", "
    [all...]
  /external/ppp/pppd/
ipv6cp.c 326 char *comma, *arg, c; local
335 if ((comma = strchr(arg, ',')) == NULL)
336 comma = arg + strlen(arg);
339 * If comma first character, then no local identifier
341 if (comma != arg) {
342 c = *comma;
343 *comma = '\0';
355 *comma = c;
359 * If comma last character, the no remote identifier
361 if (*comma != 0 && *++comma != '\0')
    [all...]
  /external/opencore/oscl/oscl/oscllib/src/
oscl_library_list.cpp 30 #define COMMA ','
166 if (COMMA == buf[0])
168 // If already found a comma, break and skip this malformed line
  /external/qemu/
qemu-option.c 64 * delimiter is fixed to be comma which starts a new option. To specify an
65 * option value that contains commas, double each comma.
251 * contains commas, double each comma so it won't be recognized as the end of
  /external/strace/
strace-graph 156 print STDERR "$0: $ARGV: $.: missing comma in array.\n";
178 print STDERR "$0: $ARGV: $.: missing comma in struct.\n";
189 print STDERR "$0: $ARGV: $.: missing comma.\n";
  /bionic/libc/regex/
cname.h 98 { "comma", ',' },
  /dalvik/libcore/luni/src/main/java/java/net/
SocketPermission.java 37 * by a comma:
115 * The action list is a comma-separated list which can consists of the
191 * Gets a comma-separated list of all actions allowed by this permission. If
195 * @return the comma-separated action list.
  /external/dropbear/
cli-algo.c 47 /* get the comma-separated list from the buffer ie "algo1,algo2,algo3" */
  /external/icu4c/i18n/
msgfmt.cpp 48 #define COMMA ((UChar)0x002C)
641 case COMMA:
730 appendTo += COMMA;
733 appendTo += COMMA;
766 appendTo += COMMA;
772 appendTo += COMMA;
777 appendTo += COMMA;
782 appendTo += COMMA;
787 appendTo += COMMA;
795 appendTo += COMMA;
    [all...]
plurrule_impl.h 40 #define COMMA ((UChar)0x002C)

Completed in 378 milliseconds

1 2 34 5 6 7 8 91011>>