HomeSort by relevance Sort by last modified time
    Searched refs:unescaped (Results 1 - 17 of 17) sorted by null

  /external/dbus/dbus/
dbus-address.c 99 * @param unescaped the string to escape
104 const DBusString *unescaped)
114 p = _dbus_string_get_const_data (unescaped);
115 end = p + _dbus_string_get_length (unescaped);
236 * The returned value is already unescaped.
266 append_unescaped_value (DBusString *unescaped,
284 if (!_dbus_string_append_byte (unescaped, *p))
311 unescaped,
312 _dbus_string_get_length (unescaped)))
571 * @param value the unescaped valu
578 DBusString unescaped; local
612 DBusString unescaped; local
653 const char *unescaped; member in struct:__anon3351
705 char *unescaped; local
742 char *unescaped; local
    [all...]
dbus-internals.h 313 const DBusString *unescaped);
  /external/bluetooth/glib/glib/
gurifuncs.h 75 char * g_uri_escape_string (const char *unescaped,
gstring.c 746 * @unescaped: a string
750 * Appends @unescaped to @string, escaped any characters that
759 const char *unescaped,
768 g_return_val_if_fail (unescaped != NULL, NULL);
770 end = unescaped + strlen (unescaped);
772 while ((c = *unescaped) != 0)
775 gunichar_ok (g_utf8_get_char_validated (unescaped, end - unescaped)))
778 g_string_append_len (string, unescaped, len)
    [all...]
gstring.h 137 const char *unescaped,
  /external/v8/test/mjsunit/
escape.js 34 var unescaped = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@*_+-./"; variable
37 assertEquals(unescaped, escape(unescaped));
54 if (unescaped.indexOf(s, 0) == -1) {
  /external/chromium/net/base/
escape_unittest.cc 173 // Certain URL-sensitive characters should not be unescaped unless asked.
234 // Certain URL-sensitive characters should not be unescaped unless asked.
319 L"%ED%ED"}, // Invalid UTF-8 -> kept unescaped.
323 std::string unescaped = UnescapeURLComponent(unescape_cases[i].input, local
325 EXPECT_EQ(std::string(unescape_cases[i].url_unescaped), unescaped); local
327 unescaped = UnescapeURLComponent(unescape_cases[i].input,
329 EXPECT_EQ(std::string(unescape_cases[i].query_unescaped), unescaped); local
  /external/webkit/WebCore/platform/
KURLGoogle.cpp 912 url_canon::RawCanonOutputT<char> unescaped; local
917 unescaped.push_back(ch);
920 unescaped.push_back('%');
924 unescaped.push_back(input[i]);
931 for (int i = 0; i < unescaped.length(); i++) {
932 unsigned char uch = static_cast<unsigned char>(unescaped.at(i));
941 if (url_canon::ReadUTFChar(unescaped.data(), &nextCharacter,
942 unescaped.length(), &codePoint)) {
952 utf16.push_back(static_cast<unsigned char>(unescaped.at(i)));
955 utf16.push_back(static_cast<unsigned char>(unescaped.at(i)))
    [all...]
  /external/libxml2/
xmlIO.c 890 * Wrapper around xmlFileOpen_real that try it with an unescaped
897 char *unescaped; local
902 unescaped = xmlURIUnescapeString(filename, 0, NULL);
903 if (unescaped != NULL) {
904 retval = xmlFileOpen_real(unescaped);
905 xmlFree(unescaped);
1148 char *unescaped; local
1153 unescaped = xmlURIUnescapeString(filename, 0, NULL);
1154 if (unescaped != NULL) {
1155 retval = xmlGzfileOpen_real(unescaped);
2522 char *unescaped = NULL; local
    [all...]
nanoftp.c 473 char *unescaped; local
489 unescaped = xmlURIUnescapeString(URL, 0, NULL);
490 if (unescaped != NULL) {
491 xmlNanoFTPScanURL(ret, unescaped);
492 xmlFree(unescaped);
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 403 scoped_array<char> unescaped(new char[src.size() + 1]);
404 int len = UnescapeCEscapeSequences(src.c_str(), unescaped.get(), errors);
406 dest->assign(unescaped.get(), len);
411 scoped_array<char> unescaped(new char[src.size() + 1]);
412 int len = UnescapeCEscapeSequences(src.c_str(), unescaped.get(), NULL);
413 return string(unescaped.get(), len);
    [all...]
  /frameworks/base/core/java/android/pim/vcard/
VCardBuilder.java     [all...]
  /packages/apps/Tag/src/com/android/vcard/
VCardBuilder.java     [all...]
  /external/libvpx/examples/includes/geshi/contrib/
langcheck.php 215 report_error(TYPE_NOTICE, 'Language file contains unescaped tabulator chars (probably for indentation)!');
354 report_error(TYPE_ERROR, "Language file contains unescaped ampersands (&amp;) in \$language_data['URLS']!");
594 report_error(TYPE_WARNING, "Language file contains a regular expression with an unescaped match for a pipe character '|' which needs escaping as '&lt;PIPE&gt;' instead at \$language_data['REGEXPS'][$rk]!");
    [all...]
  /dalvik/docs/
prettify.js 311 /** is the given node's innerHTML normally unescaped? */
358 // XMP tags contain unescaped entities so require special handling.
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /external/jdiff/
xerces.jar 

Completed in 1214 milliseconds