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

1 2

  /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...]
ns_name.c 209 int c, n, escaped, e = 0; local
212 escaped = 0;
218 if (escaped) {
230 escaped = 0;
260 escaped = 0;
262 escaped = 1;
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509NameTokenizer.java 45 boolean escaped = false;
55 if (!escaped)
74 escaped = false;
78 if (escaped || quoted)
89 escaped = false;
93 escaped = true;
  /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.
95 * Appends an escaped version of one string to another string,
98 * @param escaped the string to append to
103 _dbus_address_append_escaped (DBusString *escaped,
113 orig_len = _dbus_string_get_length (escaped);
120 if (!_dbus_string_append_byte (escaped, *p))
125 if (!_dbus_string_append_byte (escaped, '%'))
127 if (!_dbus_string_append_byte_as_hex (escaped, *p))
138 _dbus_string_set_length (escaped, orig_len)
577 DBusString escaped; local
613 DBusString escaped; local
652 const char *escaped; member in struct:__anon3184
704 char *escaped; local
    [all...]
  /external/chromium/base/json/
string_escape_unittest.cc 15 const char* escaped; member in struct:base::__anon2176::json_narrow_test_data
30 EXPECT_EQ(std::string(json_narrow_cases[i].escaped), out);
48 expected += json_narrow_cases[0].escaped;
58 const char* escaped; member in struct:base::__anon2177::json_wide_test_data
75 EXPECT_EQ(std::string(json_wide_cases[i].escaped), out);
93 expected += json_wide_cases[0].escaped;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 87 boolean escaped = false;
96 escaped = true;
101 return escaped;
112 boolean escaped = false;
132 escaped = false;
135 escaped = true;
147 if (escaped) {
  /external/chromium/net/base/
escape.cc 63 // return an escaped string. If use_plus is true, spaces are converted
68 std::string escaped; local
69 escaped.reserve(text.length() * 3);
73 escaped.push_back('+');
75 escaped.push_back('%');
76 escaped.push_back(IntToHex(c >> 4));
77 escaped.push_back(IntToHex(c & 0xf));
79 escaped.push_back(c);
82 return escaped;
170 // Keep escaped. Append a percent and we'll get the following tw
    [all...]
escape.h 21 // Space is escaped as + and other special characters as %XX (hex).
56 // addition to their special meaning. Things like escaped letters, digits,
100 // will be returned as converted. If it is not, the original escaped string will
128 bool use_plus, string16* escaped);
  /packages/apps/Email/src/org/apache/james/mime4j/
BodyDescriptor.java 180 boolean escaped = false;
275 if (!escaped) {
282 escaped = false;
288 if (escaped) {
291 escaped = !escaped;
295 if (escaped) {
298 escaped = false;
  /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 == '.') {
  /external/webkit/WebCore/platform/text/
SegmentedString.cpp 105 ASSERT(!escaped());
120 ASSERT(!s.escaped());
133 ASSERT(!escaped());
134 ASSERT(!s.escaped());
SegmentedString.h 150 bool escaped() const { return m_pushedChar1; } function in class:WebCore::SegmentedString
  /frameworks/base/tools/preload/
Record.java 116 * @result the same field with any escaped characters replaced
123 String escaped = result.substring(offset+2, offset+6); local
126 result = String.format("%s%c%s", before, Integer.parseInt(escaped, 16), after);
  /libcore/json/src/main/java/org/json/
JSONTokener.java 239 char escaped = in.charAt(pos++); local
240 switch (escaped) {
268 return escaped;
  /external/apache-http/src/org/apache/http/message/
BasicHeaderValueParser.java 364 boolean escaped = false;
367 if (ch == '"' && !escaped) {
370 if (!qouted && !escaped && isOneOf(ch, delimiters)) {
374 if (escaped) {
375 escaped = false;
377 escaped = qouted && ch == '\\';
  /external/gtest/src/
gtest-port.cc 159 // Returns true iff the given atom (specified by escaped and pattern)
161 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
162 if (escaped) { // "\\p" where p is pattern_char.
247 // expression. The regex atom is defined as c if escaped is false,
254 bool escaped, char c, char repeat, const char* regex,
271 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
290 const bool escaped = *regex == '\\'; local
291 if (escaped)
298 escaped, regex[0], regex[1], regex + 2, str);
303 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/protobuf/gtest/src/
gtest-port.cc 190 // Returns true iff the given atom (specified by escaped and pattern)
192 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
193 if (escaped) { // "\\p" where p is pattern_char.
278 // expression. The regex atom is defined as c if escaped is false,
285 bool escaped, char c, char repeat, const char* regex,
302 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
321 const bool escaped = *regex == '\\'; local
322 if (escaped)
329 escaped, regex[0], regex[1], regex + 2, str);
334 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/bluetooth/glib/gio/
gicon.c 189 all the tokens are url escaped to ensure they have no spaces in them */
400 char *escaped; local
402 escaped = tokens[i];
403 tokens[i] = g_uri_unescape_string (escaped, NULL);
404 g_free (escaped);
  /external/v8/test/mjsunit/
escape.js 36 // Check the unescape chars are not escaped
38 // Check spaces are escaped
40 // Check that null chars are escaped and do not terminate the string
51 // Check first 1000 chars individually for escaped/not escaped
  /libcore/json/src/test/java/org/json/
JSONStringerTest.java 220 private void assertEscapedAllWays(String escaped, String original) throws JSONException {
221 assertEquals("{\"" + escaped + "\":false}",
223 assertEquals("{\"a\":\"" + escaped + "\"}",
225 assertEquals("[\"" + escaped + "\"]",
227 assertEquals("\"" + escaped + "\"", JSONObject.quote(original));
  /external/webkit/WebKitTools/android/webkitmerge/
webkitmerge.cpp 809 string escaped;
815 escaped = SedEscape(st);
816 fprintf(commandFile, "-e '/%s/ d' ", escaped.c_str());
835 // escaped = SedEscape(st);
836 // fprintf(commandFile, "-e '/%s/ d' \\\n", escaped.c_str());
856 escaped = SedEscape(st);
868 escaped.c_str(), biStr.c_str());
886 escaped = SedEscape(st);
887 fprintf(commandFile, "-e '/%s/ d' ", escaped.c_str());
901 escaped = SedEscape(st)
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
dtfmtrtts.cpp 77 UnicodeString escaped; local
78 escape(str,escaped);
79 errln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status) + ", str=" + escaped);
  /external/icu4c/test/intltest/
dtfmtrtts.cpp 77 UnicodeString escaped; local
78 escape(str,escaped);
79 errln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status) + ", str=" + escaped);
  /external/webkit/WebCore/html/
HTMLTokenizer.cpp 352 !state.inXmp() && ch == '-' && m_scriptCodeSize >= 3 && !src.escaped() &&
398 if (!m_scriptCodeResync && !state.escaped() && !src.escaped() && (ch == '>' || ch == '/' || isASCIISpace(ch)) &&
406 if (m_scriptCodeResync && !state.escaped()) {
414 state.setEscaped(!state.escaped() && ch == '\\');
415 if (!m_scriptCodeResync && (state.inTextArea() || state.inTitle() || state.inIFrame()) && !src.escaped() && ch == '&') {
    [all...]

Completed in 715 milliseconds

1 2