Searched defs:escaped (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium/net/base/
H A Descape_icu.cc15 bool use_plus, string16* escaped) {
23 escaped->assign(UTF8ToUTF16(EscapeQueryParamValue(encoded, use_plus)));
14 EscapeQueryParamValue(const string16& text, const char* codepage, bool use_plus, string16* escaped) argument
H A Descape.cc45 // 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 o
[all...]
/external/chromium/base/json/
H A Dstring_escape_unittest.cc15 const char* escaped; member in struct:base::__anon1526::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::__anon1527::json_wide_test_data
76 EXPECT_EQ(std::string(json_wide_cases[i].escaped), out);
94 expected += json_wide_cases[0].escaped;
/external/chromium/net/tools/dump_cache/
H A Durl_to_filename_encoder_unittest.cc84 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/chromium/testing/gtest/src/
H A Dgtest-port.cc201 // Returns true iff the given atom (specified by escaped and pattern)
203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { argument
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, *rege
295 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
[all...]
/external/dbus/dbus/
H A Ddbus-address.c81 * #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, argument
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_le
267 append_unescaped_value(DBusString *unescaped, const DBusString *escaped, int escaped_start, int escaped_len, DBusError *error) argument
585 DBusString escaped; local
621 DBusString escaped; local
660 const char *escaped; member in struct:__anon4982
709 char *escaped; local
[all...]
/external/gtest/src/
H A Dgtest-port.cc201 // Returns true iff the given atom (specified by escaped and pattern)
203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { argument
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, *rege
295 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
[all...]
/external/iptables/iptables/
H A Dip6tables-restore.c330 int quote_open, escaped; local
378 escaped = 0;
385 if (escaped) {
387 escaped = 0;
390 escaped = 1;
H A Diptables-restore.c335 int quote_open, escaped; local
383 escaped = 0;
390 if (escaped) {
392 escaped = 0;
395 escaped = 1;
/external/libxml2/
H A DHTMLtree.c699 xmlChar *escaped; local
704 escaped = xmlURIEscapeStr(tmp, BAD_CAST"@/:=?;#%&,+");
705 if (escaped != NULL) {
706 xmlBufferWriteQuotedString(buf->buffer, escaped);
707 xmlFree(escaped);
/external/llvm/utils/unittest/googletest/
H A Dgtest-port.cc201 // Returns true iff the given atom (specified by escaped and pattern)
203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { argument
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, *rege
295 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DURLParser.java213 protected String escaped() throws ParseException { method in class:URLParser
215 dbg_enter("escaped");
229 throw createParseException("escaped");
233 dbg_leave("escaped");
728 retval.append(escaped());
/external/protobuf/gtest/src/
H A Dgtest-port.cc190 // Returns true iff the given atom (specified by escaped and pattern)
192 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { argument
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, *rege
284 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
[all...]
/external/webkit/Source/WebCore/platform/text/
H A DSegmentedString.h208 bool escaped() const { return m_pushedChar1; } function in class:WebCore::SegmentedString
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp137 llvm::SmallPtrSet<const VarDecl*, 20> &escaped)
139 Escaped(escaped), currentBlock(0) {}
400 // treat as escaped.
135 DeadStoreObs(const CFG &cfg, ASTContext &ctx, BugReporter& br, AnalysisDeclContext* ac, ParentMap& parents, llvm::SmallPtrSet<const VarDecl*, 20> &escaped) argument
/external/icu4c/test/intltest/
H A Ddtfmtrtts.cpp79 UnicodeString escaped; local
80 escape(str,escaped);
81 errln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status) + ", str=" + escaped);
/external/chromium/net/http/
H A Dhttp_util.cc32 // 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/qemu/telephony/
H A Dgsm.c657 int escaped = 0; local
670 if (escaped) {
673 escaped = 1;
696 int escaped = 0; local
707 if (escaped) { /* two escape characters => one space */
709 escaped = 0;
711 escaped = 1;
719 escaped = 0;
720 } else if (escaped) {
746 int escaped local
[all...]
H A Dsms.c50 int escaped = 0; local
71 if (escaped) {
100 escaped = 0;
104 escaped = 1;
132 if (escaped) /* bad final escape */
/external/valgrind/main/coregrind/m_gdbserver/
H A Dremote-utils.c544 /* Convert BUFFER, binary data at least LEN bytes long, into escaped
563 /* These must be escaped. */
579 /* Convert BUFFER, escaped data LEN bytes long, into binary data
584 escaped characters than that function does, in particular because
585 '*' must be escaped to avoid the run-length encoding processing
593 int escaped; local
596 escaped = 0;
603 if (escaped) {
605 escaped = 0;
607 escaped
[all...]
/external/icu4c/i18n/
H A Drbt_pars.cpp441 UChar32 escaped = rule.unescapeAt(pos); // pos is already past '\\' local
442 if (escaped == (UChar32) -1) {
445 if (!parser.checkVariableRange(escaped)) {
448 buf.append(escaped);
1695 /* It was escaped for a reason. Write what it was suppose to be. */
/external/openssh/
H A Dssh-keygen.c514 int escaped = 0; local
522 escaped++;
533 if (escaped) {
534 escaped--;
535 /* fprintf(stderr, "escaped: %s", line); */
/external/webkit/Source/WebKit/qt/tests/qwebframe/
H A Dtst_qwebframe.cpp683 QString escaped = s; local
684 escaped.replace('\'', "\\'"); // Don't preescape your single quotes!
688 retvalue = eval('" + escaped + "'); \
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 853 milliseconds

12