OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:toAscii
(Results
1 - 5
of
5
) sorted by null
/external/arduino/hardware/arduino/cores/arduino/
WCharacter.h
39
inline int
toAscii
(int c) __attribute__((always_inline));
144
inline int
toAscii
(int c)
146
return
toascii
(c);
/bionic/libc/tools/zoneinfo/
ZoneCompactor.java
166
f.write(
toAscii
(new byte[12], version));
190
f.write(
toAscii
(new byte[MAXNAME], zoneName));
224
private static byte[]
toAscii
(byte[] dst, String src) {
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java
402
public static byte[]
toAscii
(String s) {
503
return new ByteArrayInputStream(
toAscii
(ascii));
[
all
...]
/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/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 215 milliseconds