HomeSort by relevance Sort by last modified time
    Searched defs:decodeString (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/WebPage/
DecoderAdapter.cpp 78 bool DecoderAdapter::decodeString(String& value)
  /frameworks/base/core/tests/coretests/src/android/util/
Base64Test.java 32 private String decodeString(String in) throws Exception {
43 String dec = decodeString(b64);
83 assertEquals("hello, world", decodeString("aGVsbG8sIHdvcmxk"));
88 assertEquals("hello, world", decodeString(" aGVs bG8s IHdv cmxk "));
89 assertEquals("hello, world", decodeString(" aGV sbG8 sIHd vcmx k "));
90 assertEquals("hello, world", decodeString(" aG VsbG 8sIH dvcm xk "));
91 assertEquals("hello, world", decodeString(" a GVsb G8sI Hdvc mxk "));
92 assertEquals("hello, world", decodeString(" a G V s b G 8 s I H d v c m x k "));
93 assertEquals("hello, world", decodeString("_a*G_V*s_b*G_8*s_I*H_d*v_c*m_x*k_"));
94 assertEquals("hello, world", decodeString("aGVsbG8sIHdvcmxk"))
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorValues.cpp 259 bool decodeString(const UChar* start, const UChar* end, Vector<UChar>* output)
311 bool decodeString(const UChar* start, const UChar* end, String* output)
321 if (!decodeString(start, end, &buffer))
357 bool ok = decodeString(start + 1, tokenEnd - 1, &value);
399 if (!decodeString(start + 1, tokenEnd - 1, &key))
  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 358 static private String decodeString(String original, boolean isHex, int coding)
395 decodeString(notif.requestorId, mIsHexInput, notif.requestorIdEncoding),
396 decodeString(notif.text, mIsHexInput, notif.textEncoding));
411 decodeString(notif.requestorId, mIsHexInput, notif.requestorIdEncoding),
412 decodeString(notif.text, mIsHexInput, notif.textEncoding));
  /external/webkit/Source/WebCore/storage/
IDBLevelDBBackingStore.cpp 250 static String decodeString(const char* p, const char* end)
285 foundString = decodeString(p, p + len * 2);
488 foundString = decodeString(result.begin(), result.end());
    [all...]

Completed in 210 milliseconds