HomeSort by relevance Sort by last modified time
    Searched refs:escaped (Results 1 - 25 of 185) sorted by null

1 2 3 4 5 6 7 8

  /bionic/libc/netbsd/nameser/
ns_samedomain.c 56 int diff, i, escaped; local
64 escaped = 0;
68 if (escaped)
69 escaped = 0;
71 escaped = 1;
74 if (!escaped)
80 escaped = 0;
84 if (escaped)
85 escaped = 0;
87 escaped = 1
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
exhaustive2_test.cc 22 // Test escaped versions of regexp syntax.
25 vector<string> escaped = alphabet; local
26 for (int i = 0; i < escaped.size(); i++)
27 escaped[i] = "\\" + escaped[i];
28 ExhaustiveTest(1, 1, escaped, RegexpGenerator::EgrepOps(),
  /external/regex-re2/re2/testing/
exhaustive2_test.cc 22 // Test escaped versions of regexp syntax.
25 vector<string> escaped = alphabet; local
26 for (int i = 0; i < escaped.size(); i++)
27 escaped[i] = "\\" + escaped[i];
28 ExhaustiveTest(1, 1, escaped, RegexpGenerator::EgrepOps(),
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
X500NameTokenizer.java 45 boolean escaped = false;
55 if (!escaped)
60 escaped = false;
64 if (escaped || quoted)
67 escaped = false;
72 escaped = true;
  /external/chromium/net/base/
escape_icu.cc 15 bool use_plus, string16* escaped) {
23 escaped->assign(UTF8ToUTF16(EscapeQueryParamValue(encoded, use_plus)));
escape.cc 45 // return an escaped string. If use_plus is true, spaces are converted
50 std::string escaped; local
51 escaped.reserve(text.length() * 3);
55 escaped.push_back('+');
57 escaped.push_back('%');
58 escaped.push_back(IntToHex(c >> 4));
59 escaped.push_back(IntToHex(c & 0xf));
61 escaped.push_back(c);
64 return escaped;
81 // are the ones labeled PASS (allow either escaped or unescaped) in the bi
    [all...]
  /external/chromium_org/ui/gfx/
text_utils.cc 15 bool escaped = false; local
27 if (c != accelerator_char || escaped) {
29 if (escaped && c != accelerator_char) {
35 escaped = false;
37 escaped = true;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509NameTokenizer.java 46 boolean escaped = false;
56 if (!escaped)
61 escaped = false;
65 if (escaped || quoted)
68 escaped = false;
73 escaped = true;
  /external/chromium/base/json/
string_escape_unittest.cc 15 const char* escaped; member in struct:base::__anon4096::json_narrow_test_data
31 EXPECT_EQ(std::string(json_narrow_cases[i].escaped), out);
49 expected += json_narrow_cases[0].escaped;
59 const char* escaped; member in struct:base::__anon4097::json_wide_test_data
76 EXPECT_EQ(std::string(json_wide_cases[i].escaped), out);
94 expected += json_wide_cases[0].escaped;
  /external/chromium_org/base/json/
string_escape_unittest.cc 15 const char* escaped; member in struct:base::__anon6170::json_narrow_test_data
31 EXPECT_EQ(std::string(json_narrow_cases[i].escaped), out);
49 expected += json_narrow_cases[0].escaped;
59 const char* escaped; member in struct:base::__anon6171::json_wide_test_data
76 EXPECT_EQ(std::string(json_wide_cases[i].escaped), out);
94 expected += json_wide_cases[0].escaped;
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
UnicodeEscaper.java 60 * Returns the escaped form of the given Unicode code point, or {@code null}
61 * if this code point does not need to be escaped. When called as part of an
68 * <p>If the character does not need to be escaped, this method should return
92 * supplementary range are either all escaped or all unescaped, this method
121 * Returns the escaped form of a given literal string.
128 * calling this method or use an escaped {@link Appendable} (as returned by
137 * @param string the literal string to be escaped
138 * @return the escaped form of {@code string}
152 * Returns the escaped form of a given literal string, starting at the given
161 * @param s the literal string to be escaped
185 char[] escaped = escape(cp); local
314 char[] escaped = escape(c); local
335 char[] escaped = escape( local
    [all...]
CharEscaper.java 43 * Returns the escaped form of a given literal string.
45 * @param string the literal string to be escaped
46 * @return the escaped form of {@code string}
76 * @param out the underlying {@code Appendable} to append escaped output to
95 char[] escaped = escape(c); local
96 if (escaped == null) {
99 for (char e : escaped) {
109 * Returns the escaped form of a given literal string, starting at the given index. This method is
114 * @param s the literal string to be escaped
116 * @return the escaped form of {@code string
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
UnicodeEscaper.java 60 * Returns the escaped form of the given Unicode code point, or {@code null}
61 * if this code point does not need to be escaped. When called as part of an
68 * <p>If the character does not need to be escaped, this method should return
92 * supplementary range are either all escaped or all unescaped, this method
121 * Returns the escaped form of a given literal string.
128 * calling this method or use an escaped {@link Appendable} (as returned by
137 * @param string the literal string to be escaped
138 * @return the escaped form of {@code string}
152 * Returns the escaped form of a given literal string, starting at the given
161 * @param s the literal string to be escaped
185 char[] escaped = escape(cp); local
314 char[] escaped = escape(c); local
335 char[] escaped = escape( local
    [all...]
CharEscaper.java 44 * Returns the escaped form of a given literal string.
46 * @param string the literal string to be escaped
47 * @return the escaped form of {@code string}
77 * @param out the underlying {@code Appendable} to append escaped output to
96 char[] escaped = escape(c); local
97 if (escaped == null) {
100 for (char e : escaped) {
110 * Returns the escaped form of a given literal string, starting at the given index. This method is
115 * @param s the literal string to be escaped
117 * @return the escaped form of {@code string
    [all...]
  /external/chromium_org/chrome/browser/
chrome_process_finder_win.cc 62 // return an escaped string. If use_plus is true, spaces are converted
67 std::string escaped; local
68 escaped.reserve(text.length() * 3);
72 escaped.push_back('+');
74 escaped.push_back('%');
75 escaped.push_back(IntToHex(c >> 4));
76 escaped.push_back(IntToHex(c & 0xf));
78 escaped.push_back(c);
81 return escaped;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 92 boolean escaped = false;
101 escaped = true;
106 return escaped;
127 boolean escaped = false;
147 escaped = false;
150 escaped = true;
162 if (escaped) {
  /external/chromium_org/net/base/
escape.cc 40 // return an escaped string. If use_plus is true, spaces are converted
45 std::string escaped; local
46 escaped.reserve(text.length() * 3);
50 escaped.push_back('+');
52 escaped.push_back('%');
53 escaped.push_back(IntToHex(c >> 4));
54 escaped.push_back(IntToHex(c & 0xf));
56 escaped.push_back(c);
59 return escaped;
76 // are the ones labeled PASS (allow either escaped or unescaped) in the bi
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
BodyDescriptor.java 180 boolean escaped = false;
277 if (!escaped) {
284 escaped = false;
290 if (escaped) {
293 escaped = !escaped;
297 if (escaped) {
300 escaped = false;
  /prebuilts/tools/common/proguard/proguard4.7/bin/
proguard.bat 7 REM you'll have to add escaped quotes around them, e.g.
proguardgui.bat 7 REM you'll have to add escaped quotes around them, e.g.
retrace.bat 7 REM you'll have to add escaped quotes around them, e.g.
  /bionic/libc/netbsd/resolv/
res_comp.c 215 int ch, escaped = 0; local
225 if (!escaped && periodchar(ch))
227 if (escaped)
228 escaped = 0;
230 escaped = 1;
  /frameworks/base/core/java/android/os/
PatternMatcher.java 130 final boolean escaped = (c == '\\');
131 if (escaped) {
137 if (!escaped && c == '.') {
  /frameworks/base/tools/preload/
Record.java 146 * @result the same field with any escaped characters replaced
153 String escaped = result.substring(offset+2, offset+6); local
156 result = String.format("%s%c%s", before, Integer.parseInt(escaped, 16), after);
  /libcore/json/src/main/java/org/json/
JSONTokener.java 243 char escaped = in.charAt(pos++); local
244 switch (escaped) {
272 return escaped;

Completed in 1305 milliseconds

1 2 3 4 5 6 7 8