HomeSort by relevance Sort by last modified time
    Searched refs:Character (Results 126 - 150 of 251) sorted by null

1 2 3 4 56 7 8 91011

  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 573 else if (Character.isLetter(ch) ||
574 Character.isDigit(ch) ||
609 // Process numeric character references,
657 if (Character.toLowerCase(buff[offset + i]) != Character.toLowerCase(currentName.charAt(i))) {
912 if (Character.isWhitespace(c)) {
    [all...]
HTMLScanner.java 440 else if (theState == S_ENT && Character.isLetterOrDigit(ch1)) {
444 else if (theState == S_NCR && Character.isDigit(ch1)) {
448 else if (theState == S_XNCR && (Character.isDigit(ch1) || "abcdefABCDEF".indexOf(ch1) != -1)) {
472 // BMP character
  /libcore/luni/src/main/java/java/util/
Scanner.java 235 * if the specified character set is not found.
283 * if the specified character set is not found.
    [all...]
  /libcore/luni/src/test/java/tests/api/java/io/
RandomAccessFileTest.java 584 raf.writeChar(Character.MIN_VALUE);
586 raf.writeChar(Character.MAX_VALUE);
587 raf.writeChar(Character.MIN_VALUE - 1);
588 raf.writeChar(Character.MAX_VALUE + 1);
592 Character.MIN_VALUE, raf.readChar());
596 Character.MAX_VALUE, raf.readChar());
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
FieldTest.java 275 primitiveType = Character.toUpperCase(primitiveType);
293 res = new Character(f.getChar(o));
322 primitiveType = Character.toUpperCase(primitiveType);
340 f.setChar(o, ((Character) value).charValue());
569 new Short((short) 1), new Character((char) 1), new Integer(1),
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
KeyEventTest.java 296 // 48 is Unicode character of '0'
300 // 57 is Unicode character of '9'
305 // 'ALT' key is not a type Unicode character.
316 // 48 is Unicode character of '0'
320 // 57 is Unicode character of '9'
325 // 'ALT' key is not a type Unicode character.
487 mKeyEvent = new KeyEvent(KeyEvent.ACTION_DOWN, Character.SPACE_SEPARATOR);
490 mKeyEvent = new KeyEvent(KeyEvent.ACTION_DOWN, Character.LINE_SEPARATOR);
493 mKeyEvent = new KeyEvent(KeyEvent.ACTION_DOWN, Character.PARAGRAPH_SEPARATOR);
496 mKeyEvent = new KeyEvent(KeyEvent.ACTION_DOWN, Character.CONTROL)
    [all...]