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

1234

/external/clang/tools/diag-build/
H A Ddiag-build.sh81 escape () { function
85 escCC=$(escape $CC)
86 escCXX=$(escape $CXX)
/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/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
H A DFunctionRegistry.java56 public void escape(String name, String input, Appendable output) throws IOException { method in class:FunctionRegistry
141 * Registers an escaper, that is called when executing a <?cs escape ?> command.
143 * @param name The name with which <?cs escape ?> will invoke this escaper.
/external/linux-tools-perf/config/
H A Dutilities.mak8 # nl-escape
10 # Usage: escape = $(call nl-escape[,escape])
16 nl-escape = $(or $(1),m822df3020w6a44id34bt574ctac44eb9f4n)
18 # escape-nl
20 # Usage: escaped-text = $(call escape-nl,text[,escape])
32 escape-nl = $(subst $(newline),$(call nl-escape,
[all...]
/external/icu4c/samples/datefmt/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { function
/external/icu4c/samples/msgfmt/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { function
/external/icu4c/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
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializationHandler.java80 * @param escape true if escaping is to be set on.
82 public boolean setEscaping(boolean escape) throws SAXException; argument
/external/chromium/base/json/
H A Djson_writer.cc35 bool escape,
41 writer.BuildJSONString(node, 0, escape);
54 bool escape) {
109 if (escape) {
134 BuildJSONString(value, depth, escape);
172 BuildJSONString(value, depth + 1, escape);
192 // TODO(viettrungluu): |str| is UTF-8, not ASCII, so to properly escape it we
33 WriteWithOptionalEscape(const Value* const node, bool pretty_print, bool escape, std::string* json) argument
52 BuildJSONString(const Value* const node, int depth, bool escape) argument
/external/icu4c/samples/numfmt/
H A Dutil.cpp44 UnicodeString escape(const UnicodeString &source) { function
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DDOMSerializer.java59 private void escape(Writer writer, String s) throws IOException { method in class:DOMSerializer
152 escape(writer, node.getNodeValue());
156 escape(writer, node.getNodeValue());
/external/valgrind/main/none/tests/amd64/
H A Dfaultstatus.c21 static jmp_buf escape; variable
70 siglongjmp(escape, ok + 1);
127 if (sigsetjmp(escape, 1) == 0) {
/external/webkit/Tools/CodeCoverage/
H A Dregenerate-coverage-display180 def escape(text): function
249 # Scan each line and see if it was covered or not and escape the
278 escaped_line = escape(split_line[2])
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtask.rb216 return parts.map! { | t | escape( t ) }.join( ' ' )
219 def escape( token ) method in class:ANTLR3.CompileTask.GrammarSet
/external/doclava/src/com/google/doclava/
H A DSampleTagInfo.java199 boolean escape, boolean errorOk) {
223 if (escape) {
198 readFile(SourcePositionInfo pos, String filename, String id, boolean trim, boolean escape, boolean errorOk) argument

Completed in 8995 milliseconds

1234