HomeSort by relevance Sort by last modified time
    Searched refs:comma (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium/net/base/
data_url.cc 30 std::string::const_iterator comma = std::find(after_colon, end, ','); local
31 if (comma == end)
36 std::search(after_colon, comma, kBase64Tag,
39 bool base64_encoded = (it != comma);
41 if (comma != after_colon) {
43 std::string::const_iterator semi_colon = std::find(after_colon, comma, ';');
48 if (semi_colon != comma) {
50 it = std::search(semi_colon + 1, comma, kCharsetTag,
52 if (it != comma)
53 charset->assign(it + sizeof(kCharsetTag)-1, comma);
    [all...]
  /external/dnsmasq/src/
option.c 508 /* find next comma, split string with zero and eliminate spaces.
509 return start of string following comma */
513 char *comma, *p; local
515 if (!s || !(comma = strchr(s, c)))
518 p = comma;
519 *comma = ' ';
521 for (; isspace((int)*comma); comma++);
526 return comma;
671 char *comma = NULL, *problem = NULL local
981 char *comma, *problem = NULL;; local
    [all...]
  /external/iptables/extensions/
libip6t_state.c 52 const char *comma; local
54 while ((comma = strchr(arg, ',')) != NULL) {
55 if (comma == arg || !parse_state(arg, comma-arg, sinfo))
57 arg = comma+1;
libipt_state.c 52 const char *comma; local
54 while ((comma = strchr(arg, ',')) != NULL) {
55 if (comma == arg || !parse_state(arg, comma-arg, sinfo))
57 arg = comma+1;
libipt_addrtype.c 68 const char *comma; local
70 while ((comma = strchr(arg, ',')) != NULL) {
71 if (comma == arg || !parse_type(arg, comma-arg, mask))
74 arg = comma + 1;
libipt_conntrack.c 84 const char *comma; local
86 while ((comma = strchr(arg, ',')) != NULL) {
87 if (comma == arg || !parse_state(arg, comma-arg, sinfo))
89 arg = comma+1;
119 const char *comma; local
121 while ((comma = strchr(arg, ',')) != NULL) {
122 if (comma == arg || !parse_status(arg, comma-arg, sinfo))
124 arg = comma+1
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_BitSet.java 155 * @return A comma delimited list of the indices of all bits that are set.
162 boolean comma = false;
170 if (comma) {
174 comma = true;
  /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);
  /external/ipsec-tools/src/libipsec/
policy_token.l 75 comma \,
  /dalvik/dx/src/com/android/dx/ssa/
DomFront.java 131 boolean comma = false;
133 if (comma) {
137 comma = true;
  /external/qemu/
gen-charmap.py 46 specials = { 'COMMA': 'Comma',
185 comma = "" variable in class:KMap
187 print "%s&_%s_charmap" % (comma, kmap.name),
188 comma = ", "
gen-skin.py 41 comma = " "
  /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";
  /frameworks/base/media/libmedia/
MediaScanner.cpp 90 char* comma = strchr(extensions, ','); local
91 size_t length = (comma ? comma - extensions : strlen(extensions));
  /device/htc/common/
README.ecclist_for_mcc.conf 22 [MCC of a country] white space [Emergency number for that country, separated by comma]
  /external/tcpdump/
print-egp.c 146 const char *comma; local
187 comma = "";
191 printf("%sd%d:", comma, (int)*cp++);
192 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/protobuf/gtest/include/gtest/internal/
gtest-internal.h 636 // Skips to the first non-space char after the first comma in 'str';
637 // returns NULL if no comma is found in 'str'.
639 const char* comma = strchr(str, ','); local
640 if (comma == NULL) {
643 while (isspace(*(++comma))) {}
644 return comma;
647 // Returns the prefix of 'str' before the first comma in it; returns
648 // the entire string if it contains no comma.
650 const char* comma = strchr(str, ','); local
651 return comma == NULL ? String(str) : String(str, comma - str)
    [all...]
  /external/chromium/third_party/icu/source/tools/tzcode/
icuzdump.cpp 337 char* comma = (char*)strchr(options[kOptCutover].value, ','); local
338 if (comma == NULL) {
341 *comma = 0;
343 high = atoi(comma + 1);
  /external/icu4c/tools/tzcode/
icuzdump.cpp 337 char* comma = (char*)strchr(options[kOptCutover].value, ','); local
338 if (comma == NULL) {
341 *comma = 0;
343 high = atoi(comma + 1);
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenizerTest.java 134 String comma = ","; local
138 assertEquals(text + comma + space, rfc822Tokenizer.terminateToken(text));
142 assertEquals(text + comma + space, rfc822Tokenizer.terminateToken(null));
  /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...]
  /build/tools/droiddoc/src/
Stubs.java 402 String comma = ""; local
404 stream.print(comma + iface.fullName(classDeclTypeVars));
405 comma = ", ";
534 String comma; local
567 comma = "";
571 stream.print(comma + fullParameterTypeName(method, param.type(), count == size)
573 comma = ", ";
578 comma = "";
582 stream.print(comma + thrown.qualifiedName());
583 comma = ", "
    [all...]
  /external/v8/tools/
csvparser.js 71 pos += field.length + 3; // Skip comma and quotes.
77 pos += field.length + 1; // Skip comma.

Completed in 257 milliseconds

1 2 3