Searched refs:escaped (Results 1 - 23 of 23) sorted by relevance

/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.
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, argument
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_le
266 append_unescaped_value(DBusString *unescaped, const DBusString *escaped, int escaped_start, int escaped_len, DBusError *error) argument
577 DBusString escaped; local
613 DBusString escaped; local
652 const char *escaped; member in struct:__anon706
704 char *escaped; local
[all...]
H A Ddbus-internals.h312 dbus_bool_t _dbus_address_append_escaped (DBusString *escaped,
/external/webkit/WebCore/platform/text/
H A DSegmentedString.cpp105 ASSERT(!escaped());
120 ASSERT(!s.escaped());
133 ASSERT(!escaped());
134 ASSERT(!s.escaped());
H A DSegmentedString.h150 bool escaped() const { return m_pushedChar1; } function in class:WebCore::SegmentedString
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderValueParser.java364 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/clearsilver/cs/
H A Dtest_url_validate.cs14 This URL should be html escaped:
H A Dcsparse.c2164 * double-escaped. E.g. slice(html_escape(foo), 10, 20) */
2358 /* Determine if the node has been escaped by an explicit function. If not
2365 char *escaped = NULL; local
2368 err = neos_var_escape(parse->escaping.when_undef, s, &escaped);
2370 err = neos_var_escape(node->escape, s, &escaped);
2372 if (escaped)
2374 err = parse->output_cb (parse->output_ctx, escaped);
2375 free(escaped);
2379 { /* already explicitly escaped */
/external/gtest/src/
H A Dgtest-port.cc159 // Returns true iff the given atom (specified by escaped and pattern)
161 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { argument
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, *rege
253 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
[all...]
H A Dgtest-internal-inl.h1312 bool AtomMatchesChar(bool escaped, char pattern, char ch);
1316 bool escaped, char ch, char repeat, const char* regex, const char* str);
/external/bluetooth/glib/gio/
H A Dgicon.c189 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/webkit/WebKitTools/android/webkitmerge/
H A Dwebkitmerge.cpp809 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
[all...]
/external/bluetooth/bluez/cups/
H A Dmain.c219 char *uri, *escaped; local
221 escaped = g_strdelimit(g_strdup(name), "\"", '\'');
229 printf("network %s \"Unknown\" \"%s (Bluetooth)\"", uri, escaped);
234 g_free(escaped);
/external/icu4c/test/intltest/
H A Ddtfmtrtts.cpp77 UnicodeString escaped; local
78 escape(str,escaped);
79 errln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status) + ", str=" + escaped);
/external/webkit/WebCore/html/
H A DHTMLTokenizer.cpp352 !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 == '&') {
1391 if (curchar <= '>' && !src.escaped()) {
1457 if (curchar <= '>' && !src.escaped()) {
1789 } else if (cc == '&' && !m_src.escaped()) {
1792 } else if (cc == '<' && !m_src.escaped()) {
[all...]
H A DHTMLTokenizer.h283 bool escaped() const { return testBit(Escaped); } function in class:WebCore::HTMLTokenizer::State
/external/libxml2/
H A DHTMLtree.c692 xmlChar *escaped; local
697 escaped = xmlURIEscapeStr(tmp, BAD_CAST"@/:=?;#%&,+");
698 if (escaped != NULL) {
699 xmlBufferWriteQuotedString(buf->buffer, escaped);
700 xmlFree(escaped);
/external/webkit/WebKit/mac/Misc/
H A DWebNSURLExtras.mm234 // Skip escaped character.
831 char escaped[3];
832 escaped[0] = '%';
833 escaped[1] = hexDigit(c >> 4);
834 escaped[2] = hexDigit(c & 0xf);
835 [resultData appendBytes:escaped length:3];
/external/bluetooth/glib/glib/
H A Dgconvert.c1617 g_unescape_uri_string (const char *escaped, argument
1626 if (escaped == NULL)
1630 len = strlen (escaped);
1635 for (in = escaped, in_end = escaped + len; in < in_end; in++)
1651 /* catch escaped ASCII */
1655 /* catch other illegal escaped characters */
1727 * @uri: a uri describing a filename (escaped, encoded in ASCII).
1734 * Converts an escaped ASCII-encoded URI to a local filename in the
1816 _("The URI '%s' contains invalidly escaped character
[all...]
/external/qemu/telephony/
H A Dsms.c50 int escaped = 0; local
71 if (escaped) {
100 escaped = 0;
104 escaped = 1;
132 if (escaped) /* bad final escape */
/external/bluetooth/glib/tests/
H A Dregex-test.c1266 gchar *escaped; local
1270 escaped = g_regex_escape_string (string, length);
1272 if (!streq (escaped, expected))
1274 g_print ("failed \t(got \"%s\", expected \"%s\")\n", escaped, expected);
1275 g_free (escaped);
1279 g_free (escaped);
/external/icu4c/i18n/
H A Drbt_pars.cpp440 UChar32 escaped = rule.unescapeAt(pos); // pos is already past '\\' local
441 if (escaped == (UChar32) -1) {
444 if (!parser.checkVariableRange(escaped)) {
447 buf.append(escaped);
1694 /* It was escaped for a reason. Write what it was suppose to be. */
/external/opencore/tools_v2/build/make/
H A Dandroid_make_extras.mk14 # backslash-escaped characters such as \t(tab), \n(newline),etc.
/external/webkit/WebKit/qt/tests/qwebframe/
H A Dtst_qwebframe.cpp600 QString escaped = s; local
601 escaped.replace('\'', "\\'"); // Don't preescape your single quotes!
605 retvalue = eval('" + escaped + "'); \

Completed in 242 milliseconds