Home
last modified time | relevance | path

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

123456789

/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"
/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/llvm-project/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/asn1crypto/asn1crypto/
D_iri.py212 escapes = []
228 escapes.append(match.group(0).encode('ascii'))
237 if len(escapes) > 0:
239 return escapes.pop(0)
/external/llvm-project/llvm/test/Transforms/DeadStoreElimination/MSSA/
Dmultiblock-captures.ll45 ; We cannot remove the last store to %m, because it escapes by storing it to %E.
67 ; due to the call of @capture. The second one because %m escapes.
89 ; instructions between the 2 stores and also %m escapes after the killing store.
109 ; TODO: We could remove the first store store i8 0, i8* %m because %m escapes
135 ; We cannot remove the first store store i8 0, i8* %m because %m escapes
162 ; is a throwing instruction between them, because %m escapes after the killing
188 ; throwing instruction between them, because %m escapes after the killing store.
254 ; We can remove the last store to %m, even though it escapes because the alloca
/external/python/markupsafe/docs/
Dindex.rst6 MarkupSafe escapes characters so text is safe to use in HTML and XML.
11 The :func:`escape` function escapes text and returns a :class:`Markup`
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dmodernize-raw-string-literal.rst35 The presence of any of the following escapes can cause the string to be
37 and octal or hexadecimal escapes for printable ASCII characters.
/external/llvm-project/clang/test/Analysis/exploded-graph-rewriter/
Descapes.c8 void escapes() { in escapes() function
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-05-15.data1 Bad escapes:
/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/llvm-project/llvm/test/YAMLParser/
Dspec-05-15.test3 Bad escapes:
/external/llvm/test/YAMLParser/
Dspec-05-15.test3 Bad escapes:
/external/llvm-project/clang/docs/analyzer/developer-docs/
DInitializerLists.rst48 positives: when the list escapes, our ``RegionStoreManager`` is not magically
54 to cause pointer escapes (not only region changes) (which sounds like the right
56 triggering escapes when binding list elements to the list. However, it'd be as
57 conservative as the current patch's solution. Ideally, we do not want escapes to
59 escapes.
63 had neither pointer-type metadatas nor non-pointer escapes.
76 Approach (4): We could allow checkers to trigger pointer escapes in arbitrary
78 would be able to express facts like "when this region escapes, that metadata
186 pointer escapes then we shouldn't try to gin up storage for them just to get
260 symbols, escapes, invalidations, whatever.
[all …]
/external/llvm-project/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/llvm-project/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/
Dfail_with_control_chars.txt2 # This tests checks that the xunit output correctly escapes them in the XML.
/external/one-true-awk/testdir/
DNOTES1 Need some tests for octal, hex, various string 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/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/dtc/tests/
Dline_directives.dts22 * Check processing of escapes in filenames

123456789