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

12345678

/external/clang/tools/diag-build/
H A Ddiag-build.sh90 escape () { function
94 escCC=$(escape $CC)
95 escCXX=$(escape $CXX)
/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
H A DArrayBasedUnicodeEscaper.java17 package com.google.common.escape;
152 public final String escape(String s) { method in class:ArrayBasedUnicodeEscaper
184 protected final char[] escape(int cp) { method in class:ArrayBasedUnicodeEscaper
206 * @param cp the Unicode code point to escape
H A DUnicodeEscaper.java17 package com.google.common.escape;
52 * your own escapers extend this class and implement the {@link #escape(int)}
61 /** The amount of padding (chars) to use when growing the escape buffer. */
86 * @param cp the Unicode code point to escape if necessary
90 protected abstract char[] escape(int cp); method in class:UnicodeEscaper
98 * successive Unicode code points and invokes {@link #escape(int)} for each of
103 * <p>Note however that if your escaper does not escape characters in the
120 if (cp < 0 || escape(cp) != null) {
152 public String escape(String string) { method in class:UnicodeEscaper
161 * index. This method is called by the {@link #escape(Strin
[all...]
H A DArrayBasedEscaperMap.java17 package com.google.common.escape;
/external/opencv3/3rdparty/jinja2/markupsafe/
H A D_native.py14 def escape(s): function
31 """Like :func:`escape` but converts `None` into an empty
36 return escape(s)
/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/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...]
H A DArrayBasedUnicodeEscaperTest_gwt.java16 package com.google.common.escape;
19 return "com.google.common.escape.testModule";
22 com.google.common.escape.ArrayBasedUnicodeEscaperTest testCase = new com.google.common.escape.ArrayBasedUnicodeEscaperTest();
27 com.google.common.escape.ArrayBasedUnicodeEscaperTest testCase = new com.google.common.escape.ArrayBasedUnicodeEscaperTest();
32 com.google.common.escape.ArrayBasedUnicodeEscaperTest testCase = new com.google.common.escape.ArrayBasedUnicodeEscaperTest();
37 com.google.common.escape.ArrayBasedUnicodeEscaperTest testCase = new com.google.common.escape
[all...]
H A DEscapersTest_gwt.java16 package com.google.common.escape;
19 return "com.google.common.escape.testModule";
22 com.google.common.escape.EscapersTest testCase = new com.google.common.escape.EscapersTest();
27 com.google.common.escape.EscapersTest testCase = new com.google.common.escape.EscapersTest();
32 com.google.common.escape.EscapersTest testCase = new com.google.common.escape.EscapersTest();
37 com.google.common.escape.EscapersTest testCase = new com.google.common.escape
[all...]
/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/chromium-trace/catapult/third_party/webapp2/tests/resources/jinja2_templates_compiled/
H A Dtmpl_3a79873b1b49be244fd5444b1258ce348be26de8.py2 from jinja2.runtime import LoopContext, TemplateReference, Macro, Markup, TemplateRuntimeError, missing, concat, escape, markup_join, unicode_join, to_string, TemplateNotFound namespace
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DCookie.java47 public static String escape(String string) { method in class:Cookie
121 sb.append(escape(o.getString("name")));
123 sb.append(escape(o.getString("value")));
130 sb.append(escape(o.getString("domain")));
134 sb.append(escape(o.getString("path")));

Completed in 1494 milliseconds

12345678