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

123456

/external/clang/tools/diag-build/
H A Ddiag-build.sh90 escape () { function
94 escCC=$(escape $CC)
95 escCXX=$(escape $CXX)
/external/chromium_org/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/guava/guava-gwt/src-super/com/google/common/escape/super/com/google/common/escape/
H A DPlatform.java17 package com.google.common.escape;
/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;
H A DHtmlEscapeFunction.java17 package com.google.clearsilver.jsilver.functions.escape;
28 // The escape chars
36 // The corresponding escape strings for all ascii characters.
81 throw new IllegalArgumentException("Unexpected escape character " + c + "[" + (int) c + "]");
H A DJsEscapeFunction.java17 package com.google.clearsilver.jsilver.functions.escape;
H A DSimpleEscapingFunction.java17 package com.google.clearsilver.jsilver.functions.escape;
43 * Creates an instance to escape the given set of characters.
61 throw new AssertionError("Cannot escape characters with values above " + CHAR_INDEX_LIMIT);
70 * Given one of the escape characters supplied to this instance's constructor, return the escape
H A DStyleEscapeFunction.java17 package com.google.clearsilver.jsilver.functions.escape;
29 * characters to escape. The StyleAttrEscapeFunction instead applies a whitelist, and strips out any
H A DUrlEscapeFunction.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_org/ash/keyboard_overlay/
H A Dkeyboard_overlay_view_unittest.cc64 KeyboardOverlayView::KeyEventData escape = { ui::VKEY_ESCAPE, ui::EF_NONE }; local
66 std::find(canceling_keys.begin(), canceling_keys.end(), escape);
/external/chromium_org/third_party/libxml/src/
H A DtestURI.c20 static int escape = 0; variable
49 if (escape != 0) {
85 ((!strcmp(argv[arg], "-escape")) || (!strcmp(argv[arg], "--escape")))) {
87 escape++;
/external/chromium_org/third_party/markdown/
H A Dpostprocessors.py88 if str(self.markdown.safeMode).lower() == 'escape':
89 html = self.escape(html)
102 def escape(self, html): member in class:RawHtmlPostprocessor
/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")));
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DFunctionExecutor.java40 void escape(String name, String input, Appendable output) throws IOException; method in interface:FunctionExecutor
/external/linux-tools-perf/perf-3.12.0/tools/perf/config/
H A Dutilities.mak8 # nl-escape
10 # Usage: escape = $(call nl-escape[,escape])
16 nl-escape = $(if $(1),$(1),m822df3020w6a44id34bt574ctac44eb9f4n)
18 # escape-nl
20 # Usage: escaped-text = $(call escape-nl,text[,escape])
32 escape-nl = $(subst $(newline),$(call nl-escape,
[all...]
/external/chromium_org/third_party/icu/source/samples/datefmt/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { function
/external/chromium_org/third_party/icu/source/samples/msgfmt/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { function
/external/chromium_org/third_party/icu/source/samples/translit/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { function
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dninja_syntax.py155 def escape(string): function
/external/icu/icu4c/source/samples/datefmt/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { function
/external/icu/icu4c/source/samples/msgfmt/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { function
/external/icu/icu4c/source/samples/translit/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { function
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DSyntaxTreeDumper.java78 + escape(token.getText()) + "\"";
90 private String escape(String text) { method in class:SyntaxTreeDumper

Completed in 3164 milliseconds

123456