/third_party/node/deps/v8/src/objects/ |
H A D | js-regexp.cc | 265 int escapes = 0; in CountAdditionalEscapeChars() local 274 escapes--; in CountAdditionalEscapeChars() 282 escapes++; in CountAdditionalEscapeChars() 289 escapes++; in CountAdditionalEscapeChars() 292 escapes++; in CountAdditionalEscapeChars() 295 escapes += std::strlen("\\u2028") - 1; in CountAdditionalEscapeChars() 298 escapes += std::strlen("\\u2029") - 1; in CountAdditionalEscapeChars() 304 DCHECK_GE(escapes, 0); in CountAdditionalEscapeChars() 305 DCHECK_IMPLIES(escapes != 0, needs_escapes); in CountAdditionalEscapeChars() 307 return escapes; in CountAdditionalEscapeChars() [all...] |
/third_party/python/Tools/i18n/ |
H A D | pygettext.py | 212 global escapes, escape 222 escapes = [r"\%03o" % i for i in range(mod)] 224 escapes[i] = chr(i) 225 escapes[ord('\\')] = r'\\' 226 escapes[ord('\t')] = r'\t' 227 escapes[ord('\r')] = r'\r' 228 escapes[ord('\n')] = r'\n' 229 escapes[ord('\"')] = r'\"' 233 return ''.join(escapes[ord(c)] if ord(c) < 128 else c for c in s) 236 return ''.join(escapes[ [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | smacker.c | 85 int escapes[3]; member 164 if(val == ctx->escapes[0]) { in smacker_decode_bigtree() 167 } else if(val == ctx->escapes[1]) { in smacker_decode_bigtree() 170 } else if(val == ctx->escapes[2]) { in smacker_decode_bigtree() 202 int escapes[3]; in smacker_decode_header_tree() local 237 escapes[0] = get_bits(gb, 16); in smacker_decode_header_tree() 238 escapes[1] = get_bits(gb, 16); in smacker_decode_header_tree() 239 escapes[2] = get_bits(gb, 16); in smacker_decode_header_tree() 243 ctx.escapes[0] = escapes[ in smacker_decode_header_tree() [all...] |
/third_party/python/Tools/unicode/ |
H A D | makeunicodedata.py | 649 # figure out how many phrasebook escapes we need 650 escapes = 0 651 while escapes * 256 < len(wordlist): 652 escapes = escapes + 1 653 print(escapes, "escapes") 655 short = 256 - escapes
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | dumpICUrules.bat | 467 s|\\u([a-zA-Z0-9]{4})|<<u$1>>|g; # Transform Unicode escapes 471 s|\\(.)|<<q$1>>|g; # Transform backslash escapes
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | Util.pm | 97 This adds quotes (") around the given string, and escapes any $, @, \, 138 escapes have been injected as necessary depending on the content of each
|
/third_party/openssl/util/perl/OpenSSL/ |
H A D | Util.pm | 97 This adds quotes (") around the given string, and escapes any $, @, \, 138 escapes have been injected as necessary depending on the content of each
|
/third_party/toybox/toys/pending/ |
H A D | awk.c | 875 char *p, *escapes = "\\abfnrtv\"/"; in get_string_or_regex() local 880 } else if ((p = strchr(escapes, TT.scs->ch))) { in get_string_or_regex() 881 // posix regex does not use these escapes, in get_string_or_regex() 883 int c = "\\\a\b\f\n\r\t\v\"/"[p-escapes]; in get_string_or_regex() 2528 char *p, *escapes = is_regex ? "abfnrtv\"/" : "\\abfnrtv\"/"; in escape_str() local 2533 } else if ((p = strchr(escapes, *++s))) { in escape_str() 2534 // checking char after \ for known escapes in escape_str() 2535 int c = (is_regex?"\a\b\f\n\r\t\v\"/":"\\\a\b\f\n\r\t\v\"/")[p-escapes]; in escape_str() 3474 // Count ampersands in repl string; may be overcount due to \& escapes. in gsub()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_compile.c | 511 static const short int escapes[] = { variable 569 static const short int escapes[] = { variable 981 escapes table. */ in show_parsed() 985 if (meta_arg == (uint32_t)(-escapes[cc - ESCAPES_FIRST])) break; in show_parsed() 1473 * Handle escapes * 1484 of escapes that have further processing, only sequences that define a data 1537 else if ((i = escapes[c - ESCAPES_FIRST]) != 0) in check_escape() 1622 /* A number of Perl escapes are not handled by PCRE. We give an explicit in check_escape() 1807 are octal escapes if there are not that many previous captures. */ in check_escape() 2264 The problem in trying to be exactly like Perl is in the handling of escapes [all...] |
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 778 front of a brace) escapes its special meaning. The result of filling 1630 backslash escapes, using alternative C<DELIMITERS> may speed up the
|
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 778 front of a brace) escapes its special meaning. The result of filling 1630 backslash escapes, using alternative C<DELIMITERS> may speed up the
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 1125 % The expandable \pdfescapestring primitive escapes parentheses, 6240 % @tex ... @end tex escapes into raw TeX temporarily. 7326 % why catcode 0 for \ in the above? To recognize \\ \{ \} as "escapes"
|
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | 12115 tokenValue += scanIdentifierParts(); // reuse `scanIdentifierParts` so unicode escapes are handled [all...] |
/third_party/typescript/lib/ |
H A D | tsserverlibrary.js | [all...] |
H A D | typescript.js | [all...] |
H A D | typescriptServices.js | [all...] |
H A D | tsserver.js | [all...] |