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

  /external/apache-http/src/org/apache/commons/codec/binary/
BinaryCodec.java 116 return fromAscii((byte[]) ascii);
119 return fromAscii((char[]) ascii);
122 return fromAscii(((String) ascii).toCharArray());
136 return fromAscii(ascii);
151 return fromAscii(ascii.toCharArray());
166 public static byte[] fromAscii(char[] ascii) {
193 public static byte[] fromAscii(byte[] ascii) {
  /external/webkit/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.cpp 282 QTest::newRow("string") << QString::fromAscii("'hello'") << QString::fromAscii("hello");
284 QTest::newRow("expression") << QString::fromAscii("1 + 4") << QString::fromAscii("5");
285 QTest::newRow("null") << QString::fromAscii("null") << QString::fromAscii("null");
286 QTest::newRow("boolean") << QString::fromAscii("false") << QString::fromAscii("false");
287 QTest::newRow("undefined") << QString::fromAscii("undefined") << QString::fromAscii("undefined")
    [all...]
  /external/webkit/JavaScriptCore/qt/tests/qscriptengine/
tst_qscriptengine.cpp 57 QCOMPARE(foo.call().toString(), QString::fromAscii("pong"));
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapStringTest.java 53 assertEquals("", Utility.fromAscii(IOUtils.toByteArray(ImapString.EMPTY.getAsStream())));
69 assertEquals("AbcD", Utility.fromAscii(IOUtils.toByteArray(s.getAsStream())));
151 assertEquals(content, Utility.fromAscii(IOUtils.toByteArray(s.getAsStream())));
  /external/webkit/WebCore/platform/qt/
CookieJarQt.cpp 99 resultCookies.append(QString::fromAscii(
119 resultCookies.append(QString::fromAscii(
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapMemoryLiteral.java 60 return Utility.fromAscii(mData);
ImapTempFileLiteral.java 90 return Utility.fromAscii(IOUtils.toByteArray(getAsStream()));
  /external/webkit/WebCore/platform/network/qt/
QNetworkReplyHandler.cpp 309 String suggestedFilename = filenameFromHTTPContentDisposition(QString::fromAscii(m_reply->rawHeader("Content-Disposition")));
322 response.setHTTPHeaderField(QString::fromAscii(pair.first), QString::fromAscii(pair.second));
326 response.setHTTPHeaderField(QString::fromAscii(headerName), QString::fromAscii(m_reply->rawHeader(headerName)));
  /packages/apps/Email/src/com/android/email/
Utility.java 529 public static String fromAscii(byte[] b) {
  /packages/apps/Email/src/com/android/email/mail/store/
ImapStore.java 472 return Utility.fromAscii(b);
    [all...]

Completed in 474 milliseconds