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

1 2 3 4 5 6 7 8 9

  /bionic/libc/dns/nameser/
ns_samedomain.c 57 int diff, escaped; local
65 escaped = 0;
69 if (escaped)
70 escaped = 0;
72 escaped = 1;
75 if (!escaped)
81 escaped = 0;
85 if (escaped)
86 escaped = 0;
88 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_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;
  /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;
  /external/chromium_org/base/json/
string_escape_unittest.cc 16 const char* escaped; member in struct:base::__anon6929
32 EXPECT_EQ(std::string(cases[i].escaped), out);
37 EXPECT_EQ(std::string(cases[i].escaped), out);
42 EXPECT_EQ("\"" + std::string(cases[i].escaped) + "\"", fooout);
64 expected += cases[0].escaped;
74 const char* escaped; member in struct:base::__anon6930
89 EXPECT_EQ(std::string(cases[i].escaped), out);
93 EXPECT_EQ("\"" + std::string(cases[i].escaped) + "\"", out);
114 expected += cases[0].escaped;
159 const char* escaped; member in struct:base::__anon6931
    [all...]
  /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...]
  /external/proguard/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.
  /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/dns/resolv/
res_comp.c 215 int ch, escaped = 0; local
225 if (!escaped && periodchar(ch))
227 if (escaped)
228 escaped = 0;
230 escaped = 1;
  /external/chromium_org/tools/gn/
escape.cc 135 // All other invalid shell chars get backslash-escaped.
202 base::StackString<256> escaped; local
203 EscapeStringToString(str, options, &escaped.container(), NULL);
204 if (!escaped->empty())
205 out.write(escaped->data(), escaped->size());
  /frameworks/base/core/java/android/os/
PatternMatcher.java 130 final boolean escaped = (c == '\\');
131 if (escaped) {
137 if (!escaped && c == '.') {
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/
mount_path_util.cc 38 std::string escaped; local
42 base::StringAppendF(&escaped, "%%%02X", c);
44 escaped.push_back(c);
47 return escaped;
  /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 622 milliseconds

1 2 3 4 5 6 7 8 9