/third_party/openssl/test/ |
H A D | bio_prefix_text.c | 142 char *colon; in setup() local 188 colon = strchr(arg, ':'); in setup() 190 if (colon != NULL) { in setup() 198 colon++; in setup() 200 colon = arg; in setup() 202 indent = strtoul(colon, &endptr, 10); in setup() 226 colon = strchr(arg, ':'); in setup() 228 if (colon != NULL) { in setup() 236 colon++; in setup() 238 colon in setup() [all...] |
/third_party/libwebsockets/lib/plat/unix/ |
H A D | unix-caps.c | 54 char *colon = strchr(u_colon_g, ':'), u[33]; local 59 if (!colon) 62 ulen = (size_t)(unsigned int)lws_ptr_diff(colon, u_colon_g); 69 colon++; 76 if (getgrnam_r(colon, &gr, strs, sizeof(strs), &g) || !g) { 79 g = getgrnam(colon); 82 lwsl_err("%s: unknown group '%s'\n", __func__, colon);
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | cpu-arm.c | 40 char *line, *end, *colon; in get_cpuinfo_line() local 48 if (!(colon = strchr(line, ':'))) in get_cpuinfo_line() 51 if (++colon >= end) in get_cpuinfo_line() 54 return pa_xstrndup(colon, end - colon); in get_cpuinfo_line()
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
H A D | mhd2spdy_structures.c | 74 char *colon; in parse_uri() local 95 colon = strrchr((*uri)->host_and_port, ':'); in parse_uri() 96 if(NULL == colon) in parse_uri() 104 port = atoi(colon + 1); in parse_uri() 111 asprintf(&((*uri)->host), "%.*s", (int)(colon - (*uri)->host_and_port), (*uri)->host_and_port); in parse_uri()
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
H A D | tokenTypes.js | 4 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; 13 var colon = 58; // `:`.charCodeAt(0); variable 14 exports.colon = colon;
|
/third_party/musl/src/misc/ |
H A D | getopt_long.c | 60 int colon = optstring[optstring[0]=='+'||optstring[0]=='-']==':'; in __getopt_long_core() local 96 if (colon || !opterr) in __getopt_long_core() 108 if (colon) return ':'; in __getopt_long_core() 127 if (!colon && opterr) in __getopt_long_core()
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/jsonrpc2/ |
H A D | stream.go | 117 colon := strings.IndexRune(line, ':') 118 if colon < 0 { 121 name, value := line[:colon], strings.TrimSpace(line[colon+1:])
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/ |
H A D | stream.go | 117 colon := strings.IndexRune(line, ':') 118 if colon < 0 { 121 name, value := line[:colon], strings.TrimSpace(line[colon+1:])
|
/third_party/spirv-tools/utils/vscode/src/lsp/jsonrpc2/ |
H A D | stream.go | 117 colon := strings.IndexRune(line, ':') 118 if colon < 0 { 121 name, value := line[:colon], strings.TrimSpace(line[colon+1:])
|
/third_party/gn/src/util/test/ |
H A D | gn_test.cc | 69 const char* const colon = strchr(pattern, ':'); in PatternListMatchString() local 73 if (!colon) in PatternListMatchString() 76 return PatternListMatchString(colon + 1, str); in PatternListMatchString()
|
/third_party/libunwind/libunwind/tests/ |
H A D | test-coredump-unwind.c | 320 char *colon; in main() local 321 unsigned long vaddr = strtoul(*argv, &colon, 16); in main() 322 if (*colon != ':') in main() 324 if (_UCD_add_backing_file_at_vaddr(ui, vaddr, colon + 1) < 0) in main() 325 error_msg("Can't add backing file '%s'", colon + 1); in main()
|
/third_party/gn/src/gn/ |
H A D | err.cc | 181 std::string colon; in InternalPrintToStdout() local 183 colon = ": "; in InternalPrintToStdout() 184 OutputString(loc_str + toolchain_str + colon + info_->message + "\n"); in InternalPrintToStdout()
|
H A D | label.cc | 26 // Given the separate-out input (everything before the colon) in the dep rule, 47 // Given the separated-out target name (after the colon) computes the final 111 // Skip over the drive letter colon. in Resolve() 209 This consists of a source-root-absolute path, a colon, and a name. This means 233 the path name and just start with a colon. This format is recommended for 250 we prefer to omit the colon and name when possible:
|
/third_party/libunwind/libunwind/src/ |
H A D | os-linux.h | 207 char perm[16], dash = 0, colon = 0, *cp; in maps_next() local 270 cp = scan_char (cp, &colon); in maps_next() 277 if (dash != '-' || colon != ':') in maps_next()
|
/third_party/python/Lib/ |
H A D | ntpath.py | 84 # volume), or if a pathname after the volume-letter-and-colon or UNC-resource 112 colon = b':' 116 colon = ':' 143 result_drive and result_drive[-1:] != colon): 152 # colon) and the path specification. 164 up to and including the colon. e.g. splitdrive("c:/dir") returns ("c:", "/dir") 178 colon = b':' 183 colon = ':' 197 if normp[1:2] == colon:
|
/third_party/python/Lib/test/ |
H A D | test_lltrace.py | 81 offset, colon, opname_oparg = line.partition(":") 82 if not colon:
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
H A D | upnp_xml.c | 50 * (and ?), but may have an inner structure of <namespace><colon><plain_label>. 73 * colon) and then the tag name itself. 183 * s: might be some other namespace name followed by colon 184 * u: might be some other namespace name followed by colon
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
H A D | upnp_xml.c | 50 * (and ?), but may have an inner structure of <namespace><colon><plain_label>. 73 * colon) and then the tag name itself. 183 * s: might be some other namespace name followed by colon 184 * u: might be some other namespace name followed by colon
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 773 // type, followed by a colon, then the fields surrounded by nested sets of in SkipModuleSummaryEntry() 781 if (ParseToken(lltok::colon, "expected ':' at start of summary entry") || in SkipModuleSummaryEntry() 7477 if (ParseToken(lltok::colon, "expected ':' here") || 7480 ParseToken(lltok::colon, "expected ':' here") || 7484 ParseToken(lltok::colon, "expected ':' here") || 7513 if (ParseToken(lltok::colon, "expected ':' here") || 7516 ParseToken(lltok::colon, "expected ':' here") || 7544 ParseToken(lltok::colon, "expected ':' here") || 7573 if (ParseToken(lltok::colon, "expected ':' here") || 7576 ParseToken(lltok::colon, "expecte [all...] |
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
H A D | connection.c | 844 size += strlen (pos->header) + strlen (pos->value) + 4; /* colon, space, linefeeds */ 1777 char *colon; local 1779 /* line should be normal header line, find colon */ 1780 colon = strchr (line, ':'); 1781 if (NULL == colon) 1785 "Received malformed line (no colon), closing connection.\n"); 1789 colon[0] = '\0'; 1790 colon++; /* advance to value */ 1791 while ((colon[0] != '\0') && ((colon[ [all...] |
/third_party/rust/crates/syn/src/ |
H A D | ty.rs | 928 let colon: Token![:] = input.parse()?; in parse_bare_fn_arg() 929 Some((name, colon)) in parse_bare_fn_arg() 963 let colon: Token![:] = input.parse()?; in parse_bare_variadic() 964 Some((name, colon)) in parse_bare_variadic() 1161 if let Some((name, colon)) = &self.name { in to_tokens() 1163 colon.to_tokens(tokens); in to_tokens() 1173 if let Some((name, colon)) = &self.name { in to_tokens() 1175 colon.to_tokens(tokens); in to_tokens()
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | OpenArchive.cpp | 890 int colon = FindAltStreamColon_in_Path(item.Path);
891 if (colon >= 0)
893 item.MainPath.DeleteFrom((unsigned)colon);
894 item.AltStreamName = item.Path.Ptr((unsigned)(colon + 1));
895 item.MainIsDir = (colon == 0 || IsPathSepar(item.Path[(unsigned)colon - 1]));
910 int colon;
913 colon = FindAltStreamColon_in_Path(s);
914 if (colon >= 0)
916 item.AltStreamName = s.Ptr((unsigned)(colon [all...] |
/third_party/skia/third_party/externals/microhttpd/src/spdy2http/ |
H A D | proxy.c | 237 char *colon; in parse_uri() local 275 colon = strrchr((*uri)->host_and_port, ':'); in parse_uri() 276 if(NULL == colon) in parse_uri() 298 port = atoi(colon + 1); in parse_uri() 305 asprintf(&((*uri)->host), "%.*s", (int)(colon - (*uri)->host_and_port), (*uri)->host_and_port); in parse_uri()
|
/third_party/rust/crates/cxx/macro/src/ |
H A D | expand.rs | 458 let colon = arg.colon_token; in expand_cxx_function_decl() 461 quote!(#var #colon *const #ty) in expand_cxx_function_decl() 463 quote!(#var #colon *const #ty) in expand_cxx_function_decl() 465 quote!(#var #colon ::cxx::private::FatFunction) in expand_cxx_function_decl() 467 quote!(#var #colon *mut #ty) in expand_cxx_function_decl() 469 quote!(#var #colon #ty) in expand_cxx_function_decl() 498 let colon = receiver.colon_token; in expand_cxx_function_shim() 500 quote!(#var #colon #ty) in expand_cxx_function_shim() 971 let colon = receiver.colon_token; in expand_rust_function_shim_impl() 973 quote!(#receiver_var #colon #receiver_typ in expand_rust_function_shim_impl() [all...] |
/third_party/lwip/src/netif/ppp/ |
H A D | ipcp.c | 449 char *colon; local 457 if ((colon = strchr(arg, ':')) == NULL) 463 * If colon first character, then no local addr. 465 if (colon != arg && option_priority >= prio_local) { 466 *colon = '\0'; 480 *colon = ':'; 485 * If colon last character, then no remote addr. 487 if (*++colon != '\0' && option_priority >= prio_remote) { 488 if ((remote = inet_addr(colon)) == (u32_t) -1) { 489 if ((hp = gethostbyname(colon)) [all...] |