Home
last modified time | relevance | path

Searched refs:escapes (Results 1 – 25 of 87) sorted by relevance

1234

/external/v8/test/mjsunit/
Dchar-escape.js29 var escapes = ["\b", "\t", "\n", "\v", "\f", "\r", "\"", "\'", "\\", "\x4a", "\u005f"]; variable
30 for (var i = 0; i < escapes.length; i++) {
31 var str = escapes[i];
/external/jetty/src/java/org/eclipse/jetty/util/
DQuotedStringTokenizer.java324 private static final char[] escapes = new char[32]; field in QuotedStringTokenizer
327 Arrays.fill(escapes, (char)0xFFFF); in Arrays.fill() argument
328 escapes['\b'] = 'b';
329 escapes['\t'] = 't';
330 escapes['\n'] = 'n';
331 escapes['\f'] = 'f';
332 escapes['\r'] = 'r';
357 char escape = escapes[c]; in quote()
/external/llvm/test/Instrumentation/ThreadSanitizer/
Dcapture.ll12 ; escapes due to call
24 ; escapes due to store into global
54 ; escapes due to call
66 ; escapes due to store into global
/external/fio/
Djson.c58 int escapes; in strdup_escape() local
63 escapes = 0; in strdup_escape()
65 escapes++; in strdup_escape()
69 p = ret = malloc(strlen(str) + escapes + 1); in strdup_escape()
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-05-15.data1 Bad escapes:
/external/llvm/test/YAMLParser/
Dspec-05-15.test3 Bad escapes:
/external/v8/test/preparser/
Dpreparser.status34 # escapes (we need to parse to distinguish octal escapes from valid
Dduplicate-parameter.pyt81 DuplicateParameterTest("escapes", """
/external/pcre/dist/doc/
Dperltest.txt24 as /A that pcretest recognizes, and its special data line escapes, are not used
36 they make use of the special upper case modifiers and escapes that pcretest
Dpcretest.txt619 trailing white space is removed, and it is then scanned for \ escapes.
623 The following escapes are recognized:
725 The escapes that specify line ending sequences are literal strings,
729 A backslash followed by anything else just escapes the anything else.
830 \xhh escapes if the value is less than 256 and UTF mode is not set.
831 Otherwise they are output as \x{hh...} escapes. See below for the defi-
994 are are therefore shown as hex escapes.
/external/markdown/tests/markdown-test/
Dbenchmark.dat4 backlash-escapes:0.270000:884736.000000
/external/e2fsprogs/lib/ss/
Dss_err.et34 "Shell escapes are disabled"
/external/llvm/docs/HistoricalNotes/
D2001-05-18-ExceptionHandling.txt109 TryCleanup: // Executed if an exception escapes the try block
111 barCleanup: // Executed if an exception escapes from bar()
113 fooCleanup: // Executed if an exception escapes from foo()
/external/v8/test/webkit/
Dgmail-re-re-expected.txt24 Bug 7445, bug 7253: Handle Unicode escapes in regexps.
/external/pcre/dist/testdata/
DtestinputEBC7 in EBCDIC, but can be specified as escapes. --/
DtestoutputEBC7 in EBCDIC, but can be specified as escapes. --/
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/docs/
DDESCRIPTION25 - Optional space after unicode escapes is kept, resp. replaced by a simple
/external/v8/test/webkit/fast/js/
Dnumeric-escapes-in-string-literals-expected.txt24 Test numeric escapes in string literals - https://bugs.webkit.org/show_bug.cgi?id=51724
/external/parameter-framework/upstream/ctest/
DCMakeLists.txt88 # Note: Quotes are necessary. Otherwise `;` escapes are discarded
/external/icu/icu4c/source/samples/translit/
DREADME.TXT58 The Greek text shows up almost entirely as Unicode escapes. These
/external/clang/lib/StaticAnalyzer/Checkers/
DRetainCountChecker.cpp3617 bool escapes = true; in checkBind() local
3628 escapes = !regionLoc->getRegion()->hasStackStorage(); in checkBind()
3630 if (!escapes) { in checkBind()
3638 escapes = (state == (state->bindLoc(*regionLoc, val))); in checkBind()
3640 if (!escapes) { in checkBind()
3644 escapes = !isa<VarRegion>(regionLoc->getRegion()); in checkBind()
3654 escapes = true; in checkBind()
3661 if (!escapes) in checkBind()
/external/llvm/docs/TableGen/
DLangRef.rst76 TokString: '"' <non-'"' characters and C-like escapes> '"'
83 The current implementation accepts the following C-like escapes::
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
DdumpICUrules.bat463 s|\\u([a-zA-Z0-9]{4})|<<u$1>>|g; # Transform Unicode escapes
467 s|\\(.)|<<q$1>>|g; # Transform backslash escapes
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/
DREADME.rst42 - Optional space after unicode escapes is kept, resp. replaced by a simple
/external/clang/lib/StaticAnalyzer/Core/
DExprEngine.cpp2078 bool escapes = true; in processPointerEscapedOnBind() local
2082 escapes = !regionLoc->getRegion()->hasStackStorage(); in processPointerEscapedOnBind()
2084 if (!escapes) { in processPointerEscapedOnBind()
2092 escapes = (State == (State->bindLoc(*regionLoc, Val))); in processPointerEscapedOnBind()
2099 if (!escapes) in processPointerEscapedOnBind()

1234