Searched refs:CHAR_COLON (Results 1 – 9 of 9) sorted by relevance
/third_party/pcre2/pcre2/src/ |
D | pcre2_convert.c | 196 if (c == CHAR_COLON && plength > 0 && in convert_posix() 212 if (c == CHAR_COLON) posix_state = POSIX_CLASS_STARTED; in convert_posix() 237 posix[1] == CHAR_COLON && in convert_posix() 240 posix[3] == CHAR_COLON && in convert_posix() 495 if (c != CHAR_COLON || pattern >= pattern_end || in convert_glob_parse_class() 510 if (*pattern == CHAR_COLON) in convert_glob_parse_class() 524 while (*class_ptr != CHAR_COLON) class_ptr++; in convert_glob_parse_class() 668 if (c == CHAR_LEFT_SQUARE_BRACKET && *pattern == CHAR_COLON) in convert_glob_parse_range() 701 else if (c == CHAR_LEFT_SQUARE_BRACKET && *pattern == CHAR_COLON) in convert_glob_parse_range() 885 out.out_str[2] = CHAR_COLON; in convert_glob() [all …]
|
D | pcre2_substitute.c | 104 else if (*ptr == CHAR_COLON && !last && nestlevel == 0) goto EXIT; in find_text_end() 621 !star && ptr < repend - 2 && next == CHAR_COLON) in pcre2_substitute() 635 if (special == CHAR_PLUS && *ptr == CHAR_COLON) in pcre2_substitute()
|
D | pcre2_compile.c | 517 CHAR_COLON, CHAR_SEMICOLON, 3361 if (ptr < ptrend && (*ptr == CHAR_COLON || *ptr == CHAR_DOT || in parse_regex() 3365 errorcode = (*ptr-- == CHAR_COLON)? ERR12 : ERR13; in parse_regex() 3451 (*ptr == CHAR_COLON || *ptr == CHAR_DOT || in parse_regex() 3469 if (*ptr != CHAR_COLON) in parse_regex() 3808 if (ptr >= ptrend || *ptr != CHAR_COLON) in parse_regex() 3910 if (ptr >= ptrend || (*ptr != CHAR_COLON && in parse_regex() 3935 if (*ptr == CHAR_COLON && ptr + 1 < ptrend && in parse_regex() 3941 if (verbs[i].has_arg > 0 && *ptr != CHAR_COLON) in parse_regex() 3962 if (*ptr++ == CHAR_COLON) /* Skip past : or ) */ in parse_regex() [all …]
|
D | pcre2_internal.h | 711 #define CHAR_COLON ':' macro 1008 #define CHAR_COLON '\072' macro
|
/third_party/node/lib/ |
D | path.js | 42 CHAR_COLON, 251 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON) { 371 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON) { 413 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON && 639 StringPrototypeCharCodeAt(resolvedPath, 1) === CHAR_COLON && 715 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON) { 762 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON) { 852 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON && 974 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON) {
|
D | url.js | 147 CHAR_COLON, 533 code !== CHAR_COLON);
|
/third_party/node/lib/internal/ |
D | constants.js | 21 CHAR_COLON: 58, /* : */ property
|
/third_party/node/lib/internal/modules/cjs/ |
D | loader.js | 140 CHAR_COLON, 715 StringPrototypeCharCodeAt(from, from.length - 2) === CHAR_COLON) 728 code === CHAR_COLON) {
|
/third_party/node/tools/lint-md/ |
D | lint-md.mjs | 18786 var CHAR_COLON = 0x3A; variable 18941 && !(prev === CHAR_COLON && !cIsNsChar) 18943 || (prev === CHAR_COLON && cIsNsChar); 18950 && c !== CHAR_COLON 18970 return !isWhitespace(c) && c !== CHAR_COLON;
|