Searched defs:getChar (Results 1 - 4 of 4) sorted by relevance

/frameworks/rs/api/
H A DScanner.cpp37 int Scanner::getChar() { function in class:Scanner
47 int c = getChar();
60 int c = getChar();
72 int c = getChar();
/frameworks/base/core/java/android/os/
H A DBundle.java616 public char getChar(String key) { method in class:Bundle
617 return super.getChar(key);
629 public char getChar(String key, char defaultValue) { method in class:Bundle
630 return super.getChar(key, defaultValue);
H A DBaseBundle.java713 char getChar(String key) { method in class:BaseBundle
715 return getChar(key, (char) 0);
726 char getChar(String key, char defaultValue) { method in class:BaseBundle
/frameworks/base/core/java/android/text/format/
H A DTime.java432 int n = getChar(s, 0, 1000);
433 n += getChar(s, 1, 100);
434 n += getChar(s, 2, 10);
435 n += getChar(s, 3, 1);
439 n = getChar(s, 4, 10);
440 n += getChar(s, 5, 1);
445 n = getChar(s, 6, 10);
446 n += getChar(s, 7, 1);
460 n = getChar(s, 9, 10);
461 n += getChar(
502 private static int getChar(String s, int spos, int mul) { method in class:Time
[all...]

Completed in 151 milliseconds