Home
last modified time | relevance | path

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

1234

/third_party/skia/third_party/externals/freetype/src/tools/
H A Dglnames.py50 "comma", "hyphen", "period", "slash", "zero",
163 "parenright", "asterisk", "plus", "comma", "hyphen",
1830 comma;002C
4967 comma = ""
4971 line += comma
4974 comma = ","
4977 comma = ",\n "
5230 comma = ""
5233 line += comma
5235 comma
[all...]
H A Dcordic.py8 comma = "" variable
23 sys.stdout.write( comma + repr( int(angle2) ) )
24 comma = ", " variable
/third_party/libwebsockets/lib/tls/
H A Dtls-network.c229 /* comma-separated alpn list, like "h2,http/1.1" to openssl alpn format */
232 lws_alpn_comma_to_openssl(const char *comma, uint8_t *os, int len) in lws_alpn_comma_to_openssl() argument
236 if (!comma) in lws_alpn_comma_to_openssl()
239 while (*comma && len > 2) { in lws_alpn_comma_to_openssl()
240 if (!plen && *comma == ' ') { in lws_alpn_comma_to_openssl()
241 comma++; in lws_alpn_comma_to_openssl()
249 if (*comma == ',') { in lws_alpn_comma_to_openssl()
252 comma++; in lws_alpn_comma_to_openssl()
254 *os++ = (uint8_t)*comma++; in lws_alpn_comma_to_openssl()
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_ws_comma.py26 comma = False
32 comma = True
34 if comma:
38 comma = False
H A Dfix_except.py55 (E, comma, N) = except_clause.children[1:4]
56 comma.replace(Name("as", prefix=" "))
87 # No space after a comma is legal; no space after "as",
/third_party/toybox/porting/liteos_a/toys/lsb/
H A Dmount.c27 OPTIONS is a comma separated list of options, which can also be supplied
85 // Strip flags out of comma separated list of options, return flags,.
113 char *comma = strchr(new, ','); in flag_opts() local
116 if (comma) *comma = 0; in flag_opts()
136 if (!comma) break; in flag_opts()
137 *comma = ','; in flag_opts()
138 new = comma + 1; in flag_opts()
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/
H A DtokenTypes.js4 exports.word = exports.tilde = exports.tab = exports.str = exports.space = exports.slash = exports.singleQuote = exports.semicolon = exports.plus = exports.pipe = exports.openSquare = exports.openParenthesis = exports.newline = exports.greaterThan = exports.feed = exports.equals = exports.doubleQuote = exports.dollar = exports.cr = exports.comment = exports.comma = exports.combinator = exports.colon = exports.closeSquare = exports.closeParenthesis = exports.caret = exports.bang = exports.backslash = exports.at = exports.asterisk = exports.ampersand = void 0;
11 var comma = 44; // `,`.charCodeAt(0); variable
12 exports.comma = comma;
/third_party/mesa3d/src/mapi/glapi/gen/
H A Dgl_apitemp.py58 comma = ""
78 t_string = t_string + comma + p.format_string()
79 p_string = p_string + comma + p.name
80 o_string = o_string + comma + cast + p.name
81 comma = ", "
/third_party/toybox/toys/lsb/
H A Dmount.c31 OPTIONS is a comma separated list of options, which can also be supplied
89 // Strip flags out of comma separated list of options, return flags,.
117 char *comma = strchr(new, ','); in flag_opts() local
120 if (comma) *comma = 0; in flag_opts()
140 if (!comma) break; in flag_opts()
141 *comma = ','; in flag_opts()
142 new = comma + 1; in flag_opts()
/third_party/astc-encoder/Source/
H A Dastcenc_diagnostic_trace.cpp95 bool comma = parent && parent->m_attrib_count; in TraceNode() local
103 if (comma) in TraceNode()
139 bool comma = m_attrib_count; in add_attrib() local
142 if (comma) in add_attrib()
/third_party/mesa3d/android/
H A Dmesa3d_cross.mk88 -Ddri-drivers=$(subst $(space),$(comma),$(BOARD_MESA3D_CLASSIC_DRIVERS)) \
89 -Dgallium-drivers=$(subst $(space),$(comma),$(BOARD_MESA3D_GALLIUM_DRIVERS)) \
90 -Dvulkan-drivers=$(subst $(space),$(comma),$(subst radeon,amd,$(BOARD_MESA3D_VULKAN_DRIVERS))) \
157 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
159 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
173 $(subst -Wl$(comma)--fatal-warnings,, \
174 $(subst -Wl$(comma)--no-undefined-version,, \
175 $(subst -Wl$(comma)--gc-sections,, \
/third_party/toybox/lib/
H A Dcommas.c1 /* commas.c - Deal with comma separated lists
33 // Only add a comma if old string didn't end with one in comma_collate()
35 char *comma = ","; in comma_collate() local
37 if (atold[strlen(atold)-1] == ',') comma = ""; in comma_collate()
38 temp = xmprintf("%s%s%s", atold, comma, new); in comma_collate()
44 // iterate through strings in a comma separated list.
46 // sets *len to length of entry (not including comma)
/third_party/lwip/src/netif/ppp/
H A Dipv6cp.c341 char *comma, *arg, c; local
350 if ((comma = strchr(arg, ',')) == NULL)
351 comma = arg + strlen(arg);
354 * If comma first character, then no local identifier
356 if (comma != arg) {
357 c = *comma;
358 *comma = '\0';
370 *comma = c;
374 * If comma last character, the no remote identifier
376 if (*comma !
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
H A DLLParser.cpp422 } while (EatIfPresent(lltok::comma)); in ParseDepLibs()
725 } while (EatIfPresent(lltok::comma)); in ParseNamedMetadata()
898 ParseToken(lltok::comma, "expected comma after alias or ifunc's type")) in parseIndirectSymbol()
971 while (Lex.getKind() == lltok::comma) { in parseIndirectSymbol()
1111 while (Lex.getKind() == lltok::comma) { in ParseGlobal()
2040 return TokError("expected metadata after comma");
2052 } while (EatIfPresent(lltok::comma));
2127 /// This returns with AteExtraComma set to true if it ate an excess comma at the
2132 while (EatIfPresent(lltok::comma)) {
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Djson_c_generator.py405 comma = "," if isCommaNeeded else ""
433 code += " vk_json_printf(_OUT, \"]%s\\n\");\n" % comma
446 code += " vk_json_printf(_OUT, \" \\\"NULL\\\"%s\\n\");\n" % comma
465 comma = "," if isCommaNeeded else ""
499 code += " vk_json_printf(_OUT, \"]%s\\n\");\n" %(comma)
501 code += " vk_json_printf(_OUT, \" \\\"NULL\\\"%s\\n\");\n" %(comma)
508 comma = "," if isCommaNeeded else ""
512 code += " vk_json_printf(_OUT, \"\\\"%s\\\" : \\\"\\\"%s\\n\");\n" %(memberName, comma)
/third_party/curl/scripts/
H A Dcd2cd66 my $comma = 0;
70 push @o, sprintf "%s.BR $s", $comma ? ",\n": "";
71 $comma = 1;
H A Dcd2nroff88 my $comma = 0;
92 push @o, sprintf "%s.BR $s", $comma ? ",\n": "";
93 $comma = 1;
/third_party/icu/icu4c/source/tools/tzcode/
H A Dicuzdump.cpp340 char* comma = (char*)strchr(options[kOptCutover].value, ','); in main() local
341 if (comma == NULL) { in main()
344 *comma = 0; in main()
346 high = atoi(comma + 1); in main()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H A Dicuzdump.cpp338 char* comma = (char*)strchr(options[kOptCutover].value, ','); in main() local
339 if (comma == NULL) { in main()
342 *comma = 0; in main()
344 high = atoi(comma + 1); in main()
/third_party/python/Lib/
H A Dmimetypes.py131 comma = url.find(',')
132 if comma < 0:
135 semi = url.find(';', 0, comma)
139 type = url[:comma]
/third_party/node/deps/v8/src/utils/
H A Dostreams.h192 const char* comma = ""; in operator <<() local
194 for (T it = range.start; it != range.end; ++it, comma = ", ") { in operator <<()
195 os << comma << *it; in operator <<()
/third_party/node/deps/v8/src/compiler/
H A Dschedule.cc474 bool comma = false; in operator <<() local
476 if (comma) os << ", "; in operator <<()
477 comma = true; in operator <<()
501 comma = false; in operator <<()
503 if (comma) os << ", "; in operator <<()
504 comma = true; in operator <<()
/third_party/googletest/googlemock/test/
H A Dgmock-pp_test.cc3 // Used to test MSVC treating __VA_ARGS__ with a comma in it as one value
25 static_assert(GMOCK_PP_HAS_COMMA(GMOCK_TEST_REPLACE_comma_WITH_COMMA(comma)),
28 GMOCK_PP_HAS_COMMA(GMOCK_TEST_REPLACE_comma_WITH_COMMA(comma(unrelated))),
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp593 case MIToken::comma: in toString()
660 } while (consumeIfPresent(MIToken::comma)); in parseBasicBlockDefinition()
762 } while (consumeIfPresent(MIToken::comma)); in parseBasicBlockLiveins()
792 } while (consumeIfPresent(MIToken::comma)); in parseBasicBlockSuccessors()
933 if (Token.isNot(MIToken::comma)) in parse()
961 if (Token.isNot(MIToken::comma)) in parse()
1007 if (Token.isNot(MIToken::comma)) in parse()
1549 if (Token.is(MIToken::comma)) in parseTargetImmMnemonic()
1562 if (!Token.is(MIToken::comma)) in parseTargetImmMnemonic()
2005 } while (consumeIfPresent(MIToken::comma));
[all...]
/third_party/json/docs/examples/
H A Daccept__string.cpp19 "strings": ["extra", "comma", ] in main()

Completed in 28 milliseconds

1234