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

/frameworks/base/core/java/android/os/
H A DBundle.java590 public char getChar(String key) { method in class:Bundle
591 return super.getChar(key);
603 public char getChar(String key, char defaultValue) { method in class:Bundle
604 return super.getChar(key, defaultValue);
H A DBaseBundle.java712 char getChar(String key) { method in class:BaseBundle
714 return getChar(key, (char) 0);
725 char getChar(String key, char defaultValue) { method in class:BaseBundle
/frameworks/base/core/java/android/text/format/
H A DTime.java424 int n = getChar(s, 0, 1000);
425 n += getChar(s, 1, 100);
426 n += getChar(s, 2, 10);
427 n += getChar(s, 3, 1);
431 n = getChar(s, 4, 10);
432 n += getChar(s, 5, 1);
437 n = getChar(s, 6, 10);
438 n += getChar(s, 7, 1);
452 n = getChar(s, 9, 10);
453 n += getChar(
494 private static int getChar(String s, int spos, int mul) { method in class:Time
[all...]

Completed in 226 milliseconds