Home
last modified time | relevance | path

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

1234567

/external/ImageMagick/
Dwinpath.sh20 escapes=0
23 escapes="$2"
25 if test $escapes -gt 3
56 case $escapes in
/external/python/cpython2/Tools/i18n/
Dpygettext.py207 escapes = [] variable
210 global escapes
211 escapes = [chr(i) for i in range(256)]
221 escapes[i] = "\\%03o" % i
222 escapes[ord('\\')] = '\\\\'
223 escapes[ord('\t')] = '\\t'
224 escapes[ord('\r')] = '\\r'
225 escapes[ord('\n')] = '\\n'
226 escapes[ord('\"')] = '\\"'
230 global escapes
[all …]
/external/python/cpython3/Tools/i18n/
Dpygettext.py208 global escapes, escape
218 escapes = [r"\%03o" % i for i in range(mod)]
220 escapes[i] = chr(i)
221 escapes[ord('\\')] = r'\\'
222 escapes[ord('\t')] = r'\t'
223 escapes[ord('\r')] = r'\r'
224 escapes[ord('\n')] = r'\n'
225 escapes[ord('\"')] = r'\"'
229 return ''.join(escapes[ord(c)] if ord(c) < 128 else c for c in s)
232 return ''.join(escapes[b] for b in s.encode(encoding))
/external/ImageMagick/MagickWand/tests/
Dscript-token-test-data.txt18 'Single quote escapes'
21 "Double quote escapes"
24 Back\ slash\ escapes
Dscript-token-test-results.txt9 l=18, c=1, stat=0, len=64, token="Single quote escapes"
12 l=21, c=1, stat=0, len=64, token="Double quote escapes"
16 l=24, c=1, stat=0, len=64, token="Back slash escapes"
DREADME16 Tests include quoting, mixed quoting, backslash escapes, line
/external/swiftshader/third_party/llvm-7.0/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/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/python/cpython2/Misc/Vim/
Dvim_syntax.py44 escapes = (r'+\\[abfnrtv\'"\\]+', r'"\\\o\{1,3}"', r'"\\x\x\{2}"', variable
103 (contained(esc) for esc in escapes
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-05-15.data1 Bad escapes:
/external/llvm/test/YAMLParser/
Dspec-05-15.test3 Bad escapes:
/external/swiftshader/third_party/llvm-7.0/llvm/test/YAMLParser/
Dspec-05-15.test3 Bad escapes:
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-rc/Inputs/
Dutf8-escape-narrow.rc3 // strings in UTF-8 mode, only ASCII chars can be entered via escapes.
Dutf8.rc3 // strings in UTF-8 mode, only ASCII chars can be entered via escapes.
/external/markdown/tests/markdown-test/
Dbenchmark.dat4 backlash-escapes:0.270000:884736.000000
/external/llvm/test/Transforms/InstCombine/
Dcompare-unescaped.ll67 ; FIXME: The comparison should fold to false since %m escapes (call to function escape)
122 ; Technically, we can fold the %cmp2 comparison, even though %m escapes through
125 ; FIXME: Folding this %cmp2 when %m escapes through ret could be an issue with
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/
Dcompare-unescaped.ll67 ; FIXME: The comparison should fold to false since %m escapes (call to function escape)
122 ; Technically, we can fold the %cmp2 comparison, even though %m escapes through
125 ; FIXME: Folding this %cmp2 when %m escapes through ret could be an issue with
/external/e2fsprogs/lib/ss/
Dss_err.et34 "Shell escapes are disabled"
/external/python/cpython2/Tools/unicode/
Dmakeunicodedata.py612 escapes = 0
613 while escapes * 256 < len(wordlist):
614 escapes = escapes + 1
615 print escapes, "escapes"
617 short = 256 - escapes
/external/dtc/tests/
Dline_directives.dts22 * Check processing of escapes in filenames
/external/python/cpython3/Tools/unicode/
Dmakeunicodedata.py644 escapes = 0
645 while escapes * 256 < len(wordlist):
646 escapes = escapes + 1
647 print(escapes, "escapes")
649 short = 256 - escapes
/external/python/cpython3/Doc/c-api/
Dcodec.rst116 Replace the unicode encode error with backslash escapes (``\x``, ``\u`` and
121 Replace the unicode encode error with ``\N{...}`` escapes.
/external/swiftshader/third_party/llvm-7.0/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/swiftshader/third_party/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/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()

1234567