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

1 2

  /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/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...]
  /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 = ", "
  /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/libvpx/
args.c 124 char *comma = def->has_val ? "," : ", "; local
127 def->short_name, short_val, comma,
  /frameworks/base/media/libmedia/
MediaScanner.cpp 90 char* comma = strchr(extensions, ','); local
91 size_t length = (comma ? comma - extensions : strlen(extensions));
  /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/iproute2/tc/
q_cbq.c 499 int comma=0; local
503 comma=1;
506 if (comma)
  /build/core/
product_config.mk 239 comma := , macro
241 $(subst $(space),$(comma),$(strip $(PRODUCT_AAPT_CONFIG)))
  /system/core/libacc/tests/
disassem.cpp 568 int comma; local
572 comma = 0;
577 if (comma)
580 comma = 1;
  /system/core/libpixelflinger/codeflinger/
disassem.c 573 int comma; local
577 comma = 0;
582 if (comma)
585 comma = 1;
  /dalvik/vm/
Init.c 412 char* comma; local
420 comma = strchr(name, ','); // use name, not value, for safety
421 if (comma != NULL) {
422 if (comma < value) {
423 LOGE("JDWP opts: found comma before '=' in '%s'\n", mangle);
426 *comma = '\0';
434 if (comma == NULL) {
438 name = comma+1;
629 * Break comma-separated method signatures and enter them into the hash
    [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/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/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);
  /external/tcpdump/
print-egp.c 146 const char *comma; local
187 comma = "";
191 printf("%sd%d:", comma, (int)*cp++);
192 comma = ", ";
  /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/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/webkit/WebCore/bindings/v8/
V8Proxy.cpp 902 char* comma = strnstr(*ascii, ",", ascii.length()); local
903 if (!comma)
905 return atoi(comma + 1);
  /sdk/emulator/qtools/
armdis.cpp 293 const char *comma = ""; local
297 sprintf(tmp_reg, "%sr%d", comma, ii);
299 comma = ",";
  /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...]

Completed in 487 milliseconds

1 2