Searched refs:escape (Results 1 - 25 of 163) sorted by relevance

1234567

/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/v8/test/mjsunit/
H A Descape.js29 * @fileoverview Check that the global escape and unescape functions work
37 assertEquals(unescaped, escape(unescaped));
39 assertEquals("%20/%20", escape(" / "));
41 assertEquals("%000", escape("\0" + "0"));
42 // Check a unicode escape
43 assertEquals("A%20B%u1234%00%20C", escape(String.fromCharCode(0x41, 0x20, 0x42, 0x1234, 0, 0x20, 0x43)));
45 assertEquals("%u0123", escape(String.fromCharCode(0x123)));
47 assertEquals("%uABCD", escape(String.fromCharCode(0xabcd)));
48 assertEquals("%AB", escape(String.fromCharCode(0xab)));
49 assertEquals("%0A", escape("\
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DJsEscapeFunction.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 + "]");
/external/icu4c/samples/datefmt/
H A Dutil.h13 UnicodeString escape(const UnicodeString &source);
/external/icu4c/samples/msgfmt/
H A Dutil.h13 UnicodeString escape(const UnicodeString &source);
/external/icu4c/samples/numfmt/
H A Dutil.h14 UnicodeString escape(const UnicodeString &source);
/external/icu4c/samples/translit/
H A Dutil.h13 UnicodeString escape(const UnicodeString &source);
H A Dmain.cpp85 uprintf(escape(str));
93 uprintf(escape(str));
99 uprintf(escape(str));
106 uprintf(escape(str));
111 uprintf(escape(str2));
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
H A D15.1.2.4.js25 escape( string )
28 The escape function computes a new version of a string value in which
29 certain characters have been replaced by a hexadecimal escape sequence.
34 escape sequence of the form %xx is used in accordance with RFC1738.
36 digit escape sequence of the form %uxxxx is used.
38 When the escape function is called with one argument string, the
72 var TITLE = "escape(string)";
84 array[item++] = new TestCase( SECTION, "escape.length", 1, escape.length );
85 array[item++] = new TestCase( SECTION, "escape
[all...]
/external/doclava/src/com/google/doclava/
H A DTextTagInfo.java21 super(n, k, Doclava.escape(t), p);
/external/chromium/base/json/
H A Djson_writer.h30 // Same as above, but has an option to not escape the string, preserving its
35 bool escape,
47 void BuildJSONString(const Value* const node, int depth, bool escape);
/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/webkit/LayoutTests/fast/url/script-tests/
H A Dipv4.js98 expected_result = escape(test_vector.toLowerCase());
H A Dipv6.js116 // and the escape function escapes too much!
119 expected_result = expected_result.replace(c, escape(c));
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
H A Doctal-003.js17 * regexp should be parsed as a single token: it is the octal escape sequence
62 escape(pattern),
63 escape(regexp.exec(pattern).input) );
68 escape(regexp.exec(pattern).toString()) );
78 escape(regexp.exec(pattern)[matches]) );
/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/translit/answers/
H A Dmain_4.cpp83 uprintf(escape(str));
91 uprintf(escape(str));
97 uprintf(escape(str));
104 uprintf(escape(str));
109 uprintf(escape(str2));
H A Dmain_3.cpp79 uprintf(escape(str));
87 uprintf(escape(str));
93 uprintf(escape(str));
100 uprintf(escape(str));
H A Dmain_2.cpp60 uprintf(escape(str));
68 uprintf(escape(str));
74 uprintf(escape(str));
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DHtmlUrlValidateFunction.java19 import com.google.clearsilver.jsilver.functions.escape.HtmlEscapeFunction;
/external/clang/tools/diag-build/
H A Ddiag-build.sh81 escape () { function
85 escCC=$(escape $CC)
86 escCXX=$(escape $CXX)
/external/qemu/
H A Dqjson.c146 char escape[7]; local
153 snprintf(escape, sizeof(escape), "\\u%04X", wchar);
154 qstring_append(str, escape);
157 char escape[7]; local
163 snprintf(escape, sizeof(escape), "\\u%04X", wchar);
164 qstring_append(str, escape);
189 char escape[7]; local
190 snprintf(escape, sizeo
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringencode.cc63 size_t escape(char * buffer, size_t buflen,
65 const char * illegal, char escape) {
73 if ((ch == escape) || ::strchr(illegal, ch)) {
76 buffer[bufpos++] = escape;
87 char escape) {
95 if ((ch == escape) && (srcpos < srclen)) {
106 const char * illegal, char escape) {
114 if ((ch != escape) && !::strchr(illegal, ch)) {
119 buffer[bufpos+0] = escape;
131 char escape) {
[all...]

Completed in 517 milliseconds

1234567