/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/chromium/base/json/ |
string_escape_unittest.cc | 15 const char* escaped; member in struct:base::__anon2198::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::__anon2199::json_wide_test_data 76 EXPECT_EQ(std::string(json_wide_cases[i].escaped), out); 94 expected += json_wide_cases[0].escaped;
|
/frameworks/base/tools/preload/ |
Record.java | 118 * @result the same field with any escaped characters replaced 125 String escaped = result.substring(offset+2, offset+6); local 128 result = String.format("%s%c%s", before, Integer.parseInt(escaped, 16), after);
|
/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;
|
/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/chromium/net/tools/dump_cache/ |
url_to_filename_encoder_unittest.cc | 84 char escaped[100]; local 86 base::snprintf(escaped, sizeof(escaped), "%c%02X%c", escape, ch, escape); 87 Validate(string(1, ch), escaped); 146 ","; // The escape char has to be escaped 216 string escaped = base::StringPrintf("%%%02X", i); local 217 ValidateEncodeSame(unescaped, escaped);
|
/external/iptables/iptables/ |
ip6tables-restore.c | 330 int quote_open, escaped; local 378 escaped = 0; 385 if (escaped) { 387 escaped = 0; 390 escaped = 1;
|
iptables-restore.c | 335 int quote_open, escaped; local 383 escaped = 0; 390 if (escaped) { 392 escaped = 0; 395 escaped = 1;
|
/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/chromium/net/base/ |
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/testing/gtest/src/ |
gtest-port.cc | 201 // Returns true iff the given atom (specified by escaped and pattern) 203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { 204 if (escaped) { // "\\p" where p is pattern_char. 289 // expression. The regex atom is defined as c if escaped is false, 296 bool escaped, char c, char repeat, const char* regex, 313 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i])) 332 const bool escaped = *regex == '\\'; local 333 if (escaped) 340 escaped, regex[0], regex[1], regex + 2, str); 345 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) & [all...] |
/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:__anon5167 709 char *escaped; local [all...] |
/external/doclava/src/com/google/doclava/ |
FieldInfo.java | 229 char escaped = 0; local 284 escaped = 0; 292 escaped <<= 4; 294 escaped |= c - '0'; 296 escaped |= 10 + (c - 'a'); 298 escaped |= 10 + (c - 'A'); 304 buf.append(escaped);
|
/external/icu4c/test/intltest/ |
dtfmtrtts.cpp | 79 UnicodeString escaped; local 80 escape(str,escaped); 81 errln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status) + ", str=" + escaped);
|
/external/libxml2/ |
HTMLtree.c | 692 xmlChar *escaped; local 697 escaped = xmlURIEscapeStr(tmp, BAD_CAST"@/:=?;#%&,+"); 698 if (escaped != NULL) { 699 xmlBufferWriteQuotedString(buf->buffer, escaped); 700 xmlFree(escaped);
|
/external/llvm/utils/unittest/googletest/ |
gtest-port.cc | 199 // Returns true iff the given atom (specified by escaped and pattern) 201 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { 202 if (escaped) { // "\\p" where p is pattern_char. 287 // expression. The regex atom is defined as c if escaped is false, 294 bool escaped, char c, char repeat, const char* regex, 311 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i])) 330 const bool escaped = *regex == '\\'; local 331 if (escaped) 338 escaped, regex[0], regex[1], regex + 2, str); 343 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) & [all...] |
/external/webkit/Source/WebCore/platform/text/ |
SegmentedString.h | 208 bool escaped() const { return m_pushedChar1; } function in class:WebCore::SegmentedString
|
/libcore/json/src/main/java/org/json/ |
JSONTokener.java | 243 char escaped = in.charAt(pos++); local 244 switch (escaped) { 272 return escaped;
|
/external/bluetooth/bluez/cups/ |
main.c | 194 char *uri, *escaped; local 196 escaped = g_strdelimit(g_strdup(name), "\"", '\''); 204 printf("direct %s \"%s\" \"%s (Bluetooth)\"", uri, escaped, escaped); 209 g_free(escaped);
|
/external/chromium/net/http/ |
http_util.cc | 32 // escaped char (the char following a '\\') 39 // Hit a backslash-escaped char. Need to skip over it. 416 std::string escaped; local 417 escaped.reserve(2 + str.size()); 424 escaped.push_back('"'); 428 escaped.push_back('\\'); 429 escaped.push_back(c); 431 escaped.push_back('"'); 432 return escaped; 769 // * Does not detect when the final quote is escaped [all...] |
/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/nist-sip/java/gov/nist/javax/sip/parser/ |
URLParser.java | 213 protected String escaped() throws ParseException { method in class:URLParser 215 dbg_enter("escaped"); 229 throw createParseException("escaped"); 233 dbg_leave("escaped"); 724 retval.append(escaped()); method
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/codec/ |
EncoderUtil.java | 508 String escaped = str.replaceAll("[\\\\\"]", "\\\\$0"); local 509 return "\"" + escaped + "\"";
|
/cts/libs/json/src/com/android/json/stream/ |
JsonReader.java | 945 char escaped = buffer[pos++]; local 946 switch (escaped) { 974 return escaped; [all...] |