Home
last modified time | relevance | path

Searched refs:CHAR_COLON (Results 1 – 8 of 8) sorted by relevance

/third_party/pcre2/pcre2/src/
Dpcre2_convert.c197 if (c == CHAR_COLON && plength > 0 && in convert_posix()
213 if (c == CHAR_COLON) posix_state = POSIX_CLASS_STARTED; in convert_posix()
238 posix[1] == CHAR_COLON && in convert_posix()
241 posix[3] == CHAR_COLON && in convert_posix()
496 if (c != CHAR_COLON || pattern >= pattern_end || in convert_glob_parse_class()
511 if (*pattern == CHAR_COLON) in convert_glob_parse_class()
525 while (*class_ptr != CHAR_COLON) class_ptr++; in convert_glob_parse_class()
669 if (c == CHAR_LEFT_SQUARE_BRACKET && *pattern == CHAR_COLON) in convert_glob_parse_range()
702 else if (c == CHAR_LEFT_SQUARE_BRACKET && *pattern == CHAR_COLON) in convert_glob_parse_range()
886 out.out_str[2] = CHAR_COLON; in convert_glob()
[all …]
Dpcre2_substitute.c104 else if (*ptr == CHAR_COLON && !last && nestlevel == 0) goto EXIT; in find_text_end()
618 !star && ptr < repend - 2 && next == CHAR_COLON) in pcre2_substitute()
632 if (special == CHAR_PLUS && *ptr == CHAR_COLON) in pcre2_substitute()
Dpcre2_compile.c517 CHAR_COLON, CHAR_SEMICOLON,
3359 if (ptr < ptrend && (*ptr == CHAR_COLON || *ptr == CHAR_DOT || in parse_regex()
3363 errorcode = (*ptr-- == CHAR_COLON)? ERR12 : ERR13; in parse_regex()
3449 (*ptr == CHAR_COLON || *ptr == CHAR_DOT || in parse_regex()
3467 if (*ptr != CHAR_COLON) in parse_regex()
3806 if (ptr >= ptrend || *ptr != CHAR_COLON) in parse_regex()
3908 if (ptr >= ptrend || (*ptr != CHAR_COLON && in parse_regex()
3933 if (*ptr == CHAR_COLON && ptr + 1 < ptrend && in parse_regex()
3939 if (verbs[i].has_arg > 0 && *ptr != CHAR_COLON) in parse_regex()
3960 if (*ptr++ == CHAR_COLON) /* Skip past : or ) */ in parse_regex()
[all …]
Dpcre2_internal.h712 #define CHAR_COLON ':' macro
1009 #define CHAR_COLON '\072' macro
/third_party/node/lib/
Dpath.js40 CHAR_COLON,
246 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON) {
366 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON) {
408 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON &&
630 StringPrototypeCharCodeAt(resolvedPath, 1) === CHAR_COLON &&
706 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON) {
753 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON) {
843 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON &&
965 StringPrototypeCharCodeAt(path, 1) === CHAR_COLON) {
/third_party/node/lib/internal/
Dconstants.js21 CHAR_COLON: 58, /* : */ property
/third_party/node/lib/internal/modules/cjs/
Dloader.js122 CHAR_COLON
563 StringPrototypeCharCodeAt(from, from.length - 2) === CHAR_COLON)
576 code === CHAR_COLON) {
/third_party/node/tools/
Dlint-md.mjs2047 CHAR_COLON: 58, /* : */ property
5396 CHAR_COLON: ':', /* : */ property
11463 var CHAR_COLON = 0x3A; /* : */ variable
11678 && !(prev === CHAR_COLON && !cIsNsChar) // false on ': '
11680 || (prev === CHAR_COLON && cIsNsChar); // change to true on ':[^ ]'
11694 && c !== CHAR_COLON
11719 return !isWhitespace(c) && c !== CHAR_COLON;