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

12

/external/libhevc/
H A Ddecoder.arm64.mk99 comma := , macro
100 LOCAL_ASFLAGS_arm64 += $(addprefix -Wa$(comma)-I,$(libhevcd_inc_dir_arm64))
/external/v8/src/compiler/
H A Dschedule.cc41 bool comma = false; local
44 if (comma) os << ", ";
45 comma = true;
74 comma = false;
77 if (comma) os << ", ";
78 comma = true;
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONWriter.java63 * The comma flag determines if a comma should be output before the next
66 private boolean comma; field in class:JSONWriter
97 this.comma = false;
116 if (this.comma && this.mode == 'a') {
126 this.comma = true;
145 this.comma = false;
169 this.comma = true;
207 if (this.comma) {
213 this.comma
[all...]
/external/iptables/extensions/
H A Dlibxt_addrtype.c88 const char *comma; local
90 while ((comma = strchr(arg, ',')) != NULL) {
91 if (comma == arg || !parse_type(arg, comma-arg, mask))
94 arg = comma + 1;
H A Dlibxt_HMARK.c186 const char *comma; local
188 while ((comma = strchr(arg, ',')) != NULL) {
189 if (comma == arg ||
190 !hmark_parse(arg, comma-arg, info, &cb->xflags))
192 arg = comma+1;
H A Dlibxt_conntrack.c213 const char *comma; local
215 while ((comma = strchr(arg, ',')) != NULL) {
216 if (comma == arg || !parse_state(arg, comma-arg, sinfo))
218 arg = comma+1;
254 const char *comma; local
256 while ((comma = strchr(arg, ',')) != NULL) {
257 if (comma == arg || !conntrack_ps_state(info, arg, comma - arg))
260 arg = comma
290 const char *comma; local
324 const char *comma; local
1055 const char *comma; local
[all...]
/external/libvpx/libvpx/
H A Dargs.c110 char *comma = def->has_val ? "," : ", "; local
113 def->short_name, short_val, comma,
/external/toybox/lib/
H A Dgetmountlist.c15 // Only add a comma if old string didn't end with one
17 char *comma = ","; local
19 if (atold[strlen(atold)-1] == ',') comma = "";
20 temp = xmprintf("%s%s%s", atold, comma, new);
26 // iterate through strings in a comma separated list.
28 // sets *len to length of entry (not including comma)
/external/toybox/toys/lsb/
H A Dmount.c29 OPTIONS is a comma separated list of options, which can also be supplied
78 // Strip flags out of comma separated list of options, return flags,.
105 char *comma = strchr(new, ','); local
108 if (comma) *comma = 0;
128 if (!comma) break;
129 *comma = ',';
130 new = comma + 1;
/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/google-breakpad/src/processor/
H A Dminidump_processor.cc444 const char* comma = ""; local
447 cpu_info->append(comma);
449 comma = ",";
/external/icu/icu4c/source/tools/tzcode/
H A Dicuzdump.cpp334 char* comma = (char*)strchr(options[kOptCutover].value, ','); local
335 if (comma == NULL) {
338 *comma = 0;
340 high = atoi(comma + 1);
/external/ppp/pppd/
H A Dipv6cp.c335 char *comma, *arg, c; local
344 if ((comma = strchr(arg, ',')) == NULL)
345 comma = arg + strlen(arg);
348 * If comma first character, then no local identifier
350 if (comma != arg) {
351 c = *comma;
352 *comma = '\0';
364 *comma = c;
368 * If comma last character, the no remote identifier
370 if (*comma !
[all...]
/external/protobuf/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/v8/src/
H A Djson-stringifier.h103 Result Serialize_(Handle<Object> object, bool comma, Handle<Object> key);
397 Handle<Object> object, bool comma, Handle<Object> key) {
406 if (deferred_string_key) SerializeDeferredKey(comma, key);
413 if (deferred_string_key) SerializeDeferredKey(comma, key);
418 if (deferred_string_key) SerializeDeferredKey(comma, key);
422 if (deferred_string_key) SerializeDeferredKey(comma, key);
426 if (deferred_string_key) SerializeDeferredKey(comma, key);
434 if (deferred_string_key) SerializeDeferredKey(comma, key);
437 if (deferred_string_key) SerializeDeferredKey(comma, key);
443 if (deferred_string_key) SerializeDeferredKey(comma, ke
396 Serialize_( Handle<Object> object, bool comma, Handle<Object> key) argument
639 bool comma = false; local
[all...]
/external/clang/test/CodeGenCXX/
H A Dconst-init-cxx11.cpp263 constexpr const int &comma = (1, (2, ConstDerived{}).b); member in namespace:LiteralReference
/external/google-breakpad/src/testing/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/gtest/include/gtest/internal/
H A Dgtest-internal.h540 // Skips to the first non-space char after the first comma in 'str';
541 // returns NULL if no comma is found in 'str'.
543 const char* comma = strchr(str, ','); local
544 if (comma == NULL) {
547 while (IsSpace(*(++comma))) {}
548 return comma;
551 // Returns the prefix of 'str' before the first comma in it; returns
552 // the entire string if it contains no comma.
554 const char* comma = strchr(str, ','); local
555 return comma
[all...]
/external/iputils/
H A Dping_common.c1013 char *comma = ""; local
1049 comma = ", ";
1052 printf("%spipe %d", comma, pipesize);
1053 comma = ", ";
1058 comma, ipg/1000, ipg%1000, rtt/8000, (rtt/8)%1000);
/external/llvm/utils/unittest/googletest/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/mesa3d/src/glsl/
H A Dast_function.cpp84 const char *comma = ""; local
88 ralloc_asprintf_append(&str, "%s%s", comma, param->type->name);
89 comma = ", ";
/external/mesa3d/src/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/mksh/src/
H A Deval.c1777 char *brace_start, *brace_end, *comma = NULL; local
1788 comma = NULL;
1798 comma = p;
1817 if (!comma) {

Completed in 872 milliseconds

12