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

  /external/dbus/dbus/
dbus-address.c 100 * @param unescaped the string to escape
105 const DBusString *unescaped)
115 p = _dbus_string_get_const_data (unescaped);
116 end = p + _dbus_string_get_length (unescaped);
237 * The returned value is already unescaped.
267 append_unescaped_value (DBusString *unescaped,
285 if (!_dbus_string_append_byte (unescaped, *p))
312 unescaped,
313 _dbus_string_get_length (unescaped)))
579 * @param value the unescaped valu
586 DBusString unescaped; local
620 DBusString unescaped; local
661 const char *unescaped; member in struct:__anon6002
710 char *unescaped; local
747 char *unescaped; local
    [all...]
dbus-internals.h 338 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,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoringTest.java 54 private static String escape(String unescaped) {
55 return ExtractStringRefactoring.escapeString(unescaped);
  /external/webkit/LayoutTests/fast/url/script-tests/
path.js 19 // escaped dots should be unescaped and treated the same as dots
43 // Regular characters that are escaped should be unescaped
45 // Funny characters that are unescaped should be escaped
54 // Funny characters that are unescaped should be escaped
62 // %7f should be allowed and %3D should not be unescaped (these were wrong
65 // @ should be passed through unchanged (escaped or 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/libxml2/
xmlIO.c 930 * Wrapper around xmlFileOpen_real that try it with an unescaped
937 char *unescaped; local
942 unescaped = xmlURIUnescapeString(filename, 0, NULL);
943 if (unescaped != NULL) {
944 retval = xmlFileOpen_real(unescaped);
945 xmlFree(unescaped);
1192 char *unescaped; local
1197 unescaped = xmlURIUnescapeString(filename, 0, NULL);
1198 if (unescaped != NULL) {
1199 retval = xmlGzfileOpen_real(unescaped);
1381 char *unescaped; local
2701 char *unescaped = NULL; local
    [all...]
nanoftp.c 474 char *unescaped; local
490 unescaped = xmlURIUnescapeString(URL, 0, NULL);
491 if (unescaped != NULL) {
492 xmlNanoFTPScanURL(ret, unescaped);
493 xmlFree(unescaped);
    [all...]
  /external/chromium/net/base/
escape_unittest.cc 178 // Certain URL-sensitive characters should not be unescaped unless asked.
239 // Certain URL-sensitive characters should not be unescaped unless asked.
328 L"%ED%ED"}, // Invalid UTF-8 -> kept unescaped.
332 std::string unescaped = UnescapeURLComponent(unescape_cases[i].input, local
334 EXPECT_EQ(std::string(unescape_cases[i].url_unescaped), unescaped); local
336 unescaped = UnescapeURLComponent(unescape_cases[i].input,
338 EXPECT_EQ(std::string(unescape_cases[i].query_unescaped), unescaped); local
  /external/chromium/net/tools/dump_cache/
url_to_filename_encoder_unittest.cc 215 string unescaped(1, static_cast<char>(i));
217 ValidateEncodeSame(unescaped, escaped);
  /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...]
  /external/chromium/chrome/browser/net/
url_fixer_upper.cc 540 std::wstring unescaped = UTF8ToWide(UnescapeURLComponent( local
544 std::string unescaped = UnescapeURLComponent(
549 if (!ValidPathForFile(unescaped, &full_path))
  /external/chromium/chrome/browser/search_engines/
template_url.cc 487 std::string unescaped = local
491 if (base::CodepageToUTF16(unescaped, encodings[i].c_str(),
497 if (base::CodepageToUTF16(unescaped, base::kCodepageUTF8,
  /external/webkit/Source/WebCore/platform/
KURLGoogle.cpp 808 url_canon::RawCanonOutputT<url_parse::UTF16Char> unescaped; local
810 url_util::DecodeURLEscapeSequences(input, inputLength, &unescaped);
812 return String(reinterpret_cast<UChar*>(unescaped.data()),
813 unescaped.length());
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /external/linux-tools-perf/config/
utilities.mak 121 # it into the original unescaped text.
  /frameworks/opt/vcard/java/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...]
  /external/zxing/core/
core.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /external/jdiff/
xerces.jar 

Completed in 1467 milliseconds