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

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 410 public static byte[] toAscii(String s) {
511 return new ByteArrayInputStream(toAscii(ascii));
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInt.java 186 return nonAscii ? toAscii(s, base) : s;
192 private static String toAscii(String s, int base) {
  /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...]

Completed in 179 milliseconds