Searched defs:comma (Results 1 - 25 of 41) sorted by relevance

12

/external/chromium/net/base/
H A Ddata_url.cc30 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/qemu/
H A Dgen-charmap.py185 comma = "" variable in class:KMap
187 print "%s&_%s_charmap" % (comma, kmap.name),
188 comma = ", "
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
H A D15.10.3.1-1.js49 var comma = ', '; var singlequote = "'"; var closeparens = '))'; variable
108 return (statprefix + quote(regexp) + comma + flag + closeparens);
H A D15.10.3.1-2.js57 var comma = ', '; var singlequote = "'"; var closeparens = '))'; variable
116 return (statprefix + quote(regexp) + comma + flag + closeparens);
/external/iptables/extensions/
H A Dlibxt_state.c51 const char *comma; local
53 while ((comma = strchr(arg, ',')) != NULL) {
54 if (comma == arg || !state_parse_state(arg, comma-arg, sinfo))
56 arg = comma+1;
H A Dlibipt_addrtype.c86 const char *comma; local
88 while ((comma = strchr(arg, ',')) != NULL) {
89 if (comma == arg || !parse_type(arg, comma-arg, mask))
92 arg = comma + 1;
H A Dlibxt_conntrack.c170 const char *comma; local
172 while ((comma = strchr(arg, ',')) != NULL) {
173 if (comma == arg || !parse_state(arg, comma-arg, sinfo))
175 arg = comma+1;
211 const char *comma; local
213 while ((comma = strchr(arg, ',')) != NULL) {
214 if (comma == arg || !conntrack_ps_state(info, arg, comma - arg))
217 arg = comma
247 const char *comma; local
281 const char *comma; local
[all...]
/external/libvpx/libvpx/
H A Dargs.c124 char *comma = def->has_val ? "," : ", "; local
127 def->short_name, short_val, comma,
/external/iproute2/tc/
H A Dq_cbq.c498 int comma=0; local
502 comma=1;
505 if (comma)
/external/llvm/lib/TableGen/
H A DTGLexer.h41 comma, period, // , . enumerator in enum:llvm::tgtok::TokKind
/external/tcpdump/
H A Dprint-egp.c146 const char *comma; local
187 comma = "";
191 printf("%sd%d:", comma, (int)*cp++);
192 comma = ", ";
/external/icu4c/tools/tzcode/
H A Dicuzdump.cpp337 char* comma = (char*)strchr(options[kOptCutover].value, ','); local
338 if (comma == NULL) {
341 *comma = 0;
343 high = atoi(comma + 1);
/external/libppp/src/
H A Ddatalink.c1112 int comma = 0; local
1116 comma = 1;
1119 prompt_Printf(arg->prompt, "%sauth", comma ? ", " : "");
1120 comma = 1;
1123 prompt_Printf(arg->prompt, "%sE.164", comma ? ", " : "");
1126 comma = 1;
1129 prompt_Printf(arg->prompt, "%scbcp\n", comma ? ", " : "");
/external/open-vcdiff/gtest/include/gtest/internal/
H A Dgtest-internal.h643 // Skips to the first non-space char after the first comma in 'str';
644 // returns NULL if no comma is found in 'str'.
646 const char* comma = strchr(str, ','); local
647 if (comma == NULL) {
650 while (isspace(*(++comma))) {}
651 return comma;
654 // Returns the prefix of 'str' before the first comma in it; returns
655 // the entire string if it contains no comma.
657 const char* comma = strchr(str, ','); local
658 return comma
[all...]
/external/ppp/pppd/
H A Dipv6cp.c326 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 !
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-internal.h636 // 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
[all...]
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h608 // Skips to the first non-space char after the first comma in 'str';
609 // returns NULL if no comma is found in 'str'.
611 const char* comma = strchr(str, ','); local
612 if (comma == NULL) {
615 while (IsSpace(*(++comma))) {}
616 return comma;
619 // Returns the prefix of 'str' before the first comma in it; returns
620 // the entire string if it contains no comma.
622 const char* comma = strchr(str, ','); local
623 return comma
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-internal.h614 // Skips to the first non-space char after the first comma in 'str';
615 // returns NULL if no comma is found in 'str'.
617 const char* comma = strchr(str, ','); local
618 if (comma == NULL) {
621 while (IsSpace(*(++comma))) {}
622 return comma;
625 // Returns the prefix of 'str' before the first comma in it; returns
626 // the entire string if it contains no comma.
628 const char* comma = strchr(str, ','); local
629 return comma
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-internal.h614 // Skips to the first non-space char after the first comma in 'str';
615 // returns NULL if no comma is found in 'str'.
617 const char* comma = strchr(str, ','); local
618 if (comma == NULL) {
621 while (IsSpace(*(++comma))) {}
622 return comma;
625 // Returns the prefix of 'str' before the first comma in it; returns
626 // the entire string if it contains no comma.
628 const char* comma = strchr(str, ','); local
629 return comma
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h642 // Skips to the first non-space char after the first comma in 'str';
643 // returns NULL if no comma is found in 'str'.
645 const char* comma = strchr(str, ','); local
646 if (comma == NULL) {
649 while (IsSpace(*(++comma))) {}
650 return comma;
653 // Returns the prefix of 'str' before the first comma in it; returns
654 // the entire string if it contains no comma.
656 const char* comma = strchr(str, ','); local
657 return comma
[all...]
/external/mksh/src/
H A Deval.c1727 char *brace_start, *brace_end, *comma = NULL; local
1738 comma = NULL;
1747 comma = p;
1765 if (!comma) {
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Proxy.cpp822 char* comma = strnstr(*ascii, ",", ascii.length()); local
823 if (!comma)
825 return atoi(comma + 1);
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp1693 std::string comma; local
1698 s += comma + TypeString(proto[i], inTypeStr) + " ";
1700 comma = ", ";
/external/dnsmasq/src/
H A Doption.c508 /* 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 local
981 char *comma, *problem = NULL;; local
[all...]
/external/llvm/lib/AsmParser/
H A DLLToken.h25 equal, comma, // = , enumerator in enum:llvm::lltok::Kind

Completed in 644 milliseconds

12