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

1 2 3 4 5 6 7 8 91011>>

  /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/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/guava/guava-testlib/src/com/google/common/escape/testing/
EscaperAsserts.java 71 String escaped = computeReplacement(escaper, c); local
72 Assert.assertNotNull(escaped);
73 Assert.assertEquals(expected, escaped);
97 String escaped = computeReplacement(escaper, cp); local
98 Assert.assertNotNull(escaped);
99 Assert.assertEquals(expected, escaped);
125 String escaped = computeReplacement(escaper, cp); local
126 Assert.assertNotNull(escaped);
127 Assert.assertEquals(expected, escaped);
  /external/protobuf/python/google/protobuf/internal/
text_encoding_test.py 55 for escaped, escaped_utf8, unescaped in TEST_VALUES:
56 self.assertEquals(escaped,
62 for escaped, escaped_utf8, unescaped in TEST_VALUES:
63 self.assertEquals(unescaped, text_encoding.CUnescape(escaped))
  /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/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/
UnicodeEscaper.java 61 * Returns the escaped form of the given Unicode code point, or {@code null}
62 * if this code point does not need to be escaped. When called as part of an
71 * If the character does not need to be escaped, this method should return
98 * the supplementary range are either all escaped or all unescaped, this
134 * Returns the escaped form of a given literal string.
142 * calling this method or use an escaped {@link Appendable} (as returned by
153 * the literal string to be escaped
154 * @return the escaped form of {@code string}
167 * Returns the escaped form of a given literal string, starting at the given
178 * the literal string to be escaped
200 char[] escaped = escape(cp); local
315 char[] escaped = escape(Character.toCodePoint((char) pendingHighSurrogate, local
353 char[] escaped = escape(cp); local
382 char[] escaped = escape(Character.toCodePoint((char) pendingHighSurrogate, c)); local
399 char[] escaped = escape(c); local
    [all...]
  /external/curl/src/
tool_setopt.c 202 char *escaped, *e; local
205 escaped = malloc(4 * len + 1);
206 if(!escaped)
209 e = escaped;
239 return escaped;
366 char *escaped = NULL; local
391 Curl_safefree(escaped);
392 escaped = c_escape(pp->contents);
393 if(!escaped) {
399 DATA1(" CURLFORM_FILE, \"%s\",", escaped);
442 char *escaped = NULL; local
486 char *escaped = NULL; local
    [all...]
  /external/libweave/third_party/chromium/base/json/
string_escape_unittest.cc 19 const char* escaped; member in struct:base::__anon16776
37 EXPECT_EQ(std::string(cases[i].escaped), out);
42 EXPECT_EQ(std::string(cases[i].escaped), out);
47 EXPECT_EQ("\"" + std::string(cases[i].escaped) + "\"", fooout);
69 expected += cases[0].escaped;
79 const char* escaped; member in struct:base::__anon16777
89 EXPECT_EQ(std::string(cases[i].escaped),
91 EXPECT_EQ("\"" + std::string(cases[i].escaped) + "\"",
  /external/dbus/dbus/
dbus-address.c 81 * #TRUE if the byte need not be escaped when found in a dbus address.
82 * All other bytes are required to be escaped in a valid address.
96 * Appends an escaped version of one string to another string,
99 * @param escaped the string to append to
104 _dbus_address_append_escaped (DBusString *escaped,
114 orig_len = _dbus_string_get_length (escaped);
121 if (!_dbus_string_append_byte (escaped, *p))
126 if (!_dbus_string_append_byte (escaped, '%'))
128 if (!_dbus_string_append_byte_as_hex (escaped, *p))
139 _dbus_string_set_length (escaped, orig_len)
585 DBusString escaped; local
621 DBusString escaped; local
660 const char *escaped; member in struct:__anon8717
709 char *escaped; local
    [all...]
dbus-transport-unix.c 134 char *escaped; local
146 escaped = dbus_address_escape_value (path);
147 if (!escaped)
154 !_dbus_string_append (&address, escaped))
157 dbus_free (escaped);
161 dbus_free (escaped);
169 escaped = dbus_address_escape_value (argv[i]);
170 if (!escaped)
176 success = _dbus_string_append_printf (&address, ",argv%u=%s", i, escaped);
177 dbus_free (escaped);
    [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/libchrome/base/json/
string_escape_unittest.cc 19 const char* escaped; member in struct:base::__anon14269
37 EXPECT_EQ(std::string(cases[i].escaped), out);
42 EXPECT_EQ(std::string(cases[i].escaped), out);
47 EXPECT_EQ("\"" + std::string(cases[i].escaped) + "\"", fooout);
69 expected += cases[0].escaped;
79 const char* escaped; member in struct:base::__anon14270
96 EXPECT_EQ(std::string(cases[i].escaped), out);
100 EXPECT_EQ("\"" + std::string(cases[i].escaped) + "\"", out);
121 expected += cases[0].escaped;
166 const char* escaped; member in struct:base::__anon14271
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
CommandLineSupport.java 34 final StringBuilder escaped = new StringBuilder(); local
37 escaped.append(SLASH);
39 escaped.append(c);
42 escaped.insert(0, QUOTE).append(QUOTE);
44 return escaped.toString();
  /external/guava/guava/src/com/google/common/escape/
UnicodeEscaper.java 68 * Returns the escaped form of the given Unicode code point, or {@code null}
69 * if this code point does not need to be escaped. When called as part of an
76 * <p>If the character does not need to be escaped, this method should return
100 * supplementary range are either all escaped or all unescaped, this method
129 * Returns the escaped form of a given literal string.
145 * @param string the literal string to be escaped
146 * @return the escaped form of {@code string}
160 * Returns the escaped form of a given literal string, starting at the given
169 * @param s the literal string to be escaped
171 * @return the escaped form of {@code string
193 char[] escaped = escape(cp); local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 90 boolean escaped = false;
99 escaped = true;
104 return escaped;
125 boolean escaped = false;
145 escaped = false;
148 escaped = true;
163 if (escaped) {
  /frameworks/base/core/java/com/android/internal/os/
InstallerConnection.java 109 String escaped; local
111 escaped = "";
113 escaped = String.valueOf(arg);
115 if (escaped.indexOf('\0') != -1 || escaped.indexOf(' ') != -1 || "!".equals(escaped)) {
119 if (TextUtils.isEmpty(escaped)) {
120 escaped = "!";
122 builder.append(' ').append(escaped);
  /external/proguard/bin/
proguard.bat 7 REM you'll have to add escaped quotes around them, e.g.
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
StringUtils.java 67 public static String unescapeXml(String escaped) {
69 return escaped.replace(QUOT_ENTITY, "\"")
  /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;
  /packages/services/Telephony/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.
  /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;
  /frameworks/base/tools/aapt/
pseudolocalize.cpp 46 bool escaped = false; local
49 if (escaped) {
50 escaped = false;
54 escaped = true;

Completed in 1345 milliseconds

1 2 3 4 5 6 7 8 91011>>