Searched refs:comma (Results 1 - 25 of 82) sorted by relevance

1234

/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/dbus/test/name-test/
H A Dtest-shutdown.c20 char *comma; local
25 comma = strchr (session_addr_no_guid, ',');
26 if (comma == NULL)
28 *comma = '\0';
H A Dtest-privserver-client.c40 char *comma; local
63 char *comma = strrchr (addr, ','); local
64 if (comma)
65 *comma = '\0';
/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/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/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/ipsec-tools/src/libipsec/
H A Dpolicy_token.l75 comma \,
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DDomFront.java131 boolean comma = false;
133 if (comma) {
137 comma = true;
/external/qemu/
H A Dgen-charmap.py185 comma = "" variable in class:KMap
187 print "%s&_%s_charmap" % (comma, kmap.name),
188 comma = ", "
H A Dgen-skin.py41 comma = " "
/external/strace/
H A Dstrace-graph156 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";
/external/tcpdump/
H A Dprint-egp.c146 const char *comma; local
187 comma = "";
191 printf("%sd%d:", comma, (int)*cp++);
192 comma = ", ";
/external/clang/lib/Parse/
H A DParseTemplate.cpp259 if (Tok.is(tok::comma)) {
356 // a comma or closing brace.
357 SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
360 // Did we find a comma or the end of the template parmeter list?
361 if (Tok.is(tok::comma)) {
371 SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
386 case tok::comma:
403 case tok::comma:
430 case tok::comma:
505 } else if (Tok.is(tok::equal) || Tok.is(tok::comma) ||
[all...]
H A DParseInit.cpp83 case tok::comma:
84 // Since a comma cannot occur in a constant-expression, this must
425 if (Tok.isNot(tok::comma)) break;
452 // grammatically ok (i.e. we have a comma coming up) try to continue
454 // diagnostics for later elements that we find. If we don't see a comma,
459 if (Tok.isNot(tok::comma)) {
465 // If we don't have a comma continued list, we're done.
466 if (Tok.isNot(tok::comma)) break;
468 // TODO: save comma locations if some client cares.
471 // Handle trailing comma
[all...]
H A DParseDecl.cpp99 /// which is followed by a comma or close parenthesis, then the arguments
127 Tok.is(tok::comma)) {
128 if (Tok.is(tok::comma)) {
242 (ParmLoc.isValid() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren))) {
243 // Eat the comma.
247 // Parse the non-empty comma-separated list of expressions.
255 if (Tok.isNot(tok::comma))
257 ConsumeToken(); // Eat the comma, move to the next argument
267 if (Tok.is(tok::comma)) {
544 SkipUntil(tok::comma, to
[all...]
/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/webkit/Source/WebCore/bindings/v8/
H A DDebuggerScript.js71 var comma = contextData.indexOf(",");
72 if (comma === -1)
76 var idSuffix = contextData.substring(comma); // including the comma
/external/llvm/lib/AsmParser/
H A DLLParser.cpp284 while (EatIfPresent(lltok::comma)) {
505 } while (EatIfPresent(lltok::comma));
719 while (Lex.getKind() == lltok::comma) {
1106 return TokError("expected metadata after comma");
1143 } while (EatIfPresent(lltok::comma));
1167 /// This returns with AteExtraComma set to true if it ate an excess comma at the
1172 while (EatIfPresent(lltok::comma)) {
1236 /// comma at the end of the line and find that it is followed by metadata.
1247 if (Lex.getKind() != lltok::comma)
1250 while (EatIfPresent(lltok::comma)) {
[all...]
H A DLLToken.h25 equal, comma, // = , enumerator in enum:llvm::lltok::Kind
/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/llvm/lib/TableGen/
H A DTGLexer.h40 comma, period, // , . enumerator in enum:llvm::tgtok::TokKind

Completed in 709 milliseconds

1234