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

  /libcore/luni/src/main/java/libcore/icu/
NativeIDN.java 20 public static String toASCII(String s, int flags) {
35 private static String convert(String s, int flags, boolean toAscii) {
39 return convertImpl(s, flags, toAscii);
41 private static native String convertImpl(String s, int flags, boolean toAscii);
  /libcore/luni/src/main/native/
libcore_icu_NativeIDN.cpp 35 static jstring NativeIDN_convertImpl(JNIEnv* env, jclass, jstring javaSrc, jint flags, jboolean toAscii) {
49 size_t resultLength = toAscii
58 if (!toAscii) {
59 // ICU only translates separators to ASCII for toASCII.
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapSimpleString.java 47 return new ByteArrayInputStream(Utility.toAscii(mString));
  /external/skia/debugger/
debuggermain.cpp 43 SkString commandName(iter->toAscii().data());
51 input = SkString(iter->toAscii().data());
  /packages/services/Telephony/src/com/android/phone/common/mail/utils/
Utility.java 50 public static byte[] toAscii(String s) {
78 return new ByteArrayInputStream(toAscii(ascii));
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapTestUtils.java 89 new ByteArrayInputStream(Utility.toAscii(line + "\r\n")), new DiscourseLogger(4));
103 ByteArrayInputStream in = new ByteArrayInputStream(Utility.toAscii(content + "#trailing"));
ImapResponseParserTest.java 40 return new ImapResponseParser(new ByteArrayInputStream(Utility.toAscii(responses)),
  /bionic/libc/tools/zoneinfo/
ZoneCompactor.java 111 f.write(toAscii(new byte[12], version));
141 f.write(toAscii(new byte[MAXNAME], zoneName));
175 private static byte[] toAscii(byte[] dst, String src) {
  /external/expat/lib/
xmltok.c 948 toAscii(const ENCODING *enc, const char *ptr, const char *end)
990 if (!isSpace(toAscii(enc, ptr, end))) {
996 } while (isSpace(toAscii(enc, ptr, end)));
1003 c = toAscii(enc, ptr, end);
1016 } while (isSpace(c = toAscii(enc, ptr, end)));
1030 c = toAscii(enc, ptr, end);
1033 c = toAscii(enc, ptr, end);
1043 c = toAscii(enc, ptr, end);
1131 int c = toAscii(enc, val, end);
1164 while (isSpace(toAscii(enc, ptr, end))
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
Utils.java 179 private static char toAscii(int b) {
220 sbx.append(String.format("%c", toAscii(dup.get() & BYTE_MASK)));
  /libcore/luni/src/main/java/java/math/
BigInt.java 150 return nonAscii ? toAscii(s, base) : s;
156 private static String toAscii(String s, int base) {
  /external/skia/debugger/QT/
SkDebuggerGUI.cpp 297 fFileName = fPath.toAscii().data();
299 fFileName.append(fDirectoryWidget.currentItem()->text().toAscii().data());
309 saveToFile(SkString(filename.toAscii().data()));
359 fFileName = fPath.toAscii().data();
364 fFileName.append(item->text().toAscii().data());
379 loadPicture(SkString(filename.toAscii().data()));
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 322 public static byte[] toAscii(String s) {
414 return new ByteArrayInputStream(toAscii(ascii));
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapStore.java 612 folder = MODIFIED_UTF_7_CHARSET.decode(ByteBuffer.wrap(Utility.toAscii(name))).toString();

Completed in 643 milliseconds