/third_party/mesa3d/src/compiler/glsl/glcpp/ |
H A D | pp.c | 115 const char *backslash, *newline, *search_start; in remove_line_continuations() local 121 backslash = strchr(shader, '\\'); in remove_line_continuations() 124 if (backslash == NULL) in remove_line_continuations() 183 (backslash == NULL || newline < backslash)) in remove_line_continuations() 198 if (backslash == NULL) in remove_line_continuations() 201 search_start = backslash + 1; in remove_line_continuations() 203 /* At each line continuation, (backslash followed by a in remove_line_continuations() 208 if (backslash[1] == '\r' || backslash[ in remove_line_continuations() [all...] |
/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; 49 var backslash = 92; // '\\'.charCodeAt(0); variable 50 exports.backslash = backslash;
|
H A D | tokenize.js | 30 } else if (code === t.backslash) { 169 while (css.charCodeAt(escapePos - 1) === t.backslash) {
|
/third_party/node/test/sequential/ |
H A D | test-module-loading.js | 30 const backslash = /\\/g; 234 assert.match(e.message.replace(backslash, '/'), /file7\/index\.node/); 274 id = id.replace(backslash, '/');
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | dumpICUrules.bat | 397 # If there is a trailing backslash, then delete it -- we don't 468 s|\\\"|<<dq>>|g; # Transform backslash double quote 469 s|\\\'|<<sq>>|g; # Transform backslash single quote 470 s|\\\#|<<lb>>|g; # Transform backslash pound 471 s|\\(.)|<<q$1>>|g; # Transform backslash escapes
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | dgst.c | 510 * to backslash. The backslash pointer is a flag to indicating whether a newline 511 * is present in the filename. If a newline is present, the backslash flag is 512 * set and the output format will contain a backslash at the beginning of the 517 static const char *newline_escape_filename(const char *file, int * backslash) in newline_escape_filename() argument 535 *backslash = 1; in newline_escape_filename() 552 int i, backslash = 0, ret = EXIT_FAILURE; in do_fp() local 622 file = newline_escape_filename(file, &backslash); in do_fp() 624 if (backslash == 1) in do_fp()
|
/third_party/openssl/apps/ |
H A D | dgst.c | 510 * to backslash. The backslash pointer is a flag to indicating whether a newline 511 * is present in the filename. If a newline is present, the backslash flag is 512 * set and the output format will contain a backslash at the beginning of the 517 static const char *newline_escape_filename(const char *file, int * backslash) in newline_escape_filename() argument 535 *backslash = 1; in newline_escape_filename() 552 int i, backslash = 0, ret = EXIT_FAILURE; in do_fp() local 622 file = newline_escape_filename(file, &backslash); in do_fp() 624 if (backslash == 1) in do_fp()
|
/third_party/ltp/scripts/ |
H A D | checkbashisms.pl | 509 # that followed the backslash: 759 q<unsafe echo with backslash>, 775 q<unsafe echo with backslash>,
|
/third_party/pcre2/pcre2/ |
H A D | RunTest.bat | 70 %pcre2test% -C backslash-C >NUL
476 echo Test 21 Skipped due to absence of backslash-C support.
486 echo Test 22 Skipped due to absence of backslash-C support.
499 echo Test 23 Skipped due to presence of backslash-C support.
|
H A D | RunTest | 362 $sim ./pcre2test -C backslash-C >/dev/null
|
/third_party/eudev/hm_src/ |
H A D | keyboard-keys-from-name.h | 801 {"backslash", KEY_BACKSLASH}, in keyboard_lookup_key()
|
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 777 A backslash C<\> in front of a brace (or another backslash that is in 794 The backslash inside the string is passed through to Perl unchanged, 1607 backslash, so if you want to include the delimiters in the literal 1630 backslash escapes, using alternative C<DELIMITERS> may speed up the 1889 processor always replaced it with a single backslash before passing 1891 probably more convenient. See the section on backslash processing, 1896 In C<Text::Template> beta versions, the backslash was special whenever 1897 it appeared before a brace or another backslash. That meant that 1899 generate a backslash, becaus [all...] |
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 777 A backslash C<\> in front of a brace (or another backslash that is in 794 The backslash inside the string is passed through to Perl unchanged, 1607 backslash, so if you want to include the delimiters in the literal 1630 backslash escapes, using alternative C<DELIMITERS> may speed up the 1889 processor always replaced it with a single backslash before passing 1891 probably more convenient. See the section on backslash processing, 1896 In C<Text::Template> beta versions, the backslash was special whenever 1897 it appeared before a brace or another backslash. That meant that 1899 generate a backslash, becaus [all...] |
/third_party/python/Parser/ |
H A D | string_parser.c | 611 /* Nowhere inside an expression is a backslash allowed. */ in fstring_find_expr() 613 /* Error: can't include a backslash character, inside in fstring_find_expr() 617 "cannot include a backslash"); in fstring_find_expr()
|
/third_party/gn/src/gn/ |
H A D | parser.cc | 68 After a backslash, certain sequences represent special characters: 72 \\ U+005C backslash
|
/third_party/python/Lib/test/ |
H A D | test_tokenize.py | 1525 reproduce code that does not contain a backslash continuation
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | creststn.c | 496 const char* expect ="tab:\t cr:\r ff:\f newline:\n backslash:\\\\ quote=\\\' doubleQuote=\\\" singlequoutes=''"; in TestNewTypes() 1040 UChar *backslash; in TestAPI() local 1041 while ((backslash = u_strchr(utestdatapath, 0x005C))) { in TestAPI() 1042 *backslash = 0x002F; in TestAPI()
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 2817 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi} 4370 \escapechar = `\\ % use backslash in output files. 4756 % so it will be output as is; and it will print as backslash. 7213 % backslash to get it printed correctly. Previously, we had 7331 % this purpose, to produce a typewriter backslash (so, the @\ that we 7347 % \\ in macro replacement text gets you a backslash. 9964 % \backslashcurfont outputs one backslash character in current font, 9973 % In texinfo, backslash is an active character; it prints the backslash 9981 % print a typewriter backslash, henc [all...] |