Searched defs:escape (Results 1 - 25 of 230) sorted by relevance

12345678910

/external/clang/tools/diag-build/
H A Ddiag-build.sh90 escape () { function
94 escCC=$(escape $CC)
95 escCXX=$(escape $CXX)
/external/autotest/utils/
H A Dgslib.py18 def escape(name): function
29 """Percent escape a character.
31 @param char: character to escape.
/external/guava/guava/src/com/google/common/escape/
H A Dpackage-info.java19 * {@link com.google.common.escape.Escaper}.
30 package com.google.common.escape;
H A DEscaper.java17 package com.google.common.escape;
37 * individual {@code char} values, it is not safe to assume that {@code escape(s)} is equivalent to
38 * {@code escape(s.substring(0, n)) + escape(s.substing(n))} for arbitrary {@code n}. This is
40 * escape strings and concatenate the results is if you can rule out this possibility, either by
87 public abstract String escape(String string); method in class:Escaper
93 return escape(from);
98 * Returns a {@link Function} that invokes {@link #escape(String)} on this escaper.
H A DPlatform.java17 package com.google.common.escape;
H A DArrayBasedCharEscaper.java17 package com.google.common.escape;
117 public final String escape(String s) { method in class:ArrayBasedCharEscaper
134 @Override protected final char[] escape(char c) { method in class:ArrayBasedCharEscaper
156 * @param c the character to escape
H A DCharEscaper.java17 package com.google.common.escape;
40 * #escape(char)} method.
58 @Override public String escape(String string) { method in class:CharEscaper
63 if (escape(string.charAt(index)) != null) {
72 * called by the {@link #escape(String)} method when it discovers that escaping is required. It is
95 char[] r = escape(s.charAt(index));
153 * @param c the character to escape if necessary
156 protected abstract char[] escape(char c); method in class:CharEscaper
171 * The multiplier for padding to use when growing the escape buffer.
H A DCharEscaperBuilder.java17 package com.google.common.escape;
41 * a very fast escape method.
53 * Overriding escape method to be slightly faster for this decorator. We test the replacements
56 @Override public String escape(String s) { method in class:CharEscaperBuilder.CharArrayDecorator
67 @Override protected char[] escape(char c) { method in class:CharEscaperBuilder.CharArrayDecorator
/external/annotation-tools/scene-lib/src/annotations/util/
H A DStrings.java19 public static String escape(String in) { method in class:Strings
/external/guava/guava-tests/test/com/google/common/escape/
H A DPackageSanityTests.java17 package com.google.common.escape;
H A DCharEscaperBuilderTest.java17 package com.google.common.escape;
27 assertEquals("ZZZdef", escaper.escape("abcdef"));
H A DArrayBasedEscaperMapTest.java17 package com.google.common.escape;
/external/libmojo/third_party/markupsafe/
H A D_native.py15 def escape(s): function
32 """Like :func:`escape` but converts `None` into an empty
37 return escape(s)
/external/python/cpython2/Lib/lib2to3/pgen2/
H A Dliterals.py19 def escape(m): function
28 raise ValueError("invalid hex string escape ('\\%s')" % tail)
32 raise ValueError("invalid hex string escape ('\\%s')" % tail)
37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
48 return re.sub(r"\\(\'|\"|\\|[abfnrtv]|x.{0,2}|[0-7]{1,3})", escape, s)
/external/python/cpython3/Lib/lib2to3/pgen2/
H A Dliterals.py19 def escape(m): function
28 raise ValueError("invalid hex string escape ('\\%s')" % tail)
32 raise ValueError("invalid hex string escape ('\\%s')" % tail)
37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
48 return re.sub(r"\\(\'|\"|\\|[abfnrtv]|x.{0,2}|[0-7]{1,3})", escape, s)
/external/guava/guava-gwt/src-super/com/google/common/escape/super/com/google/common/escape/
H A DPlatform.java17 package com.google.common.escape;
/external/guava/guava-gwt/test/com/google/common/escape/
H A DTestModuleEntryPoint.java17 package com.google.common.escape;
H A DArrayBasedCharEscaperTest_gwt.java16 package com.google.common.escape;
19 return "com.google.common.escape.testModule";
22 com.google.common.escape.ArrayBasedCharEscaperTest testCase = new com.google.common.escape.ArrayBasedCharEscaperTest();
27 com.google.common.escape.ArrayBasedCharEscaperTest testCase = new com.google.common.escape.ArrayBasedCharEscaperTest();
32 com.google.common.escape.ArrayBasedCharEscaperTest testCase = new com.google.common.escape.ArrayBasedCharEscaperTest();
37 com.google.common.escape.ArrayBasedCharEscaperTest testCase = new com.google.common.escape
[all...]
H A DArrayBasedEscaperMapTest_gwt.java16 package com.google.common.escape;
19 return "com.google.common.escape.testModule";
22 com.google.common.escape.ArrayBasedEscaperMapTest testCase = new com.google.common.escape.ArrayBasedEscaperMapTest();
27 com.google.common.escape.ArrayBasedEscaperMapTest testCase = new com.google.common.escape.ArrayBasedEscaperMapTest();
32 com.google.common.escape.ArrayBasedEscaperMapTest testCase = new com.google.common.escape.ArrayBasedEscaperMapTest();
37 com.google.common.escape.ArrayBasedEscaperMapTest testCase = new com.google.common.escape
[all...]
/external/clang/tools/scan-build-py/libscanbuild/
H A Dshell.py44 def escape(word): function in function:encode
52 return " ".join([escape(arg) for arg in command])
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DJsValidateUnquotedLiteral.java17 package com.google.clearsilver.jsilver.functions.escape;
H A DNullEscapeFunction.java17 package com.google.clearsilver.jsilver.functions.escape;
/external/markdown/markdown/
H A Dpostprocessors.py48 if str(self.markdown.safeMode).lower() == 'escape':
49 html = self.escape(html)
62 def escape(self, html): member in class:RawHtmlPostprocessor
/external/python/cpython3/Lib/html/
H A D__init__.py9 __all__ = ['escape', 'unescape']
12 def escape(s, quote=True): function
/external/skia/fuzz/oss_fuzz/
H A DFuzzAnimatedImage.cpp32 int escape = 0; local
33 while (!aImg->isFinished() && escape < 100) {
35 escape++;

Completed in 537 milliseconds

12345678910