Home
last modified time | relevance | path

Searched refs:CHAR (Results 1 – 6 of 6) sorted by relevance

/libcore/benchmarks/src/benchmarks/regression/
DCharacterBenchmark.java39 public enum Overload { CHAR, INT } enumConstant
60 if (overload == Overload.CHAR) { in timeIsSpace()
77 if (overload == Overload.CHAR) { in timeDigit()
93 if (overload == Overload.CHAR) { in timeGetNumericValue()
109 if (overload == Overload.CHAR) { in timeIsDigit()
125 if (overload == Overload.CHAR) { in timeIsIdentifierIgnorable()
141 if (overload == Overload.CHAR) { in timeIsJavaIdentifierPart()
157 if (overload == Overload.CHAR) { in timeIsJavaIdentifierStart()
173 if (overload == Overload.CHAR) { in timeIsLetter()
189 if (overload == Overload.CHAR) { in timeIsLetterOrDigit()
[all …]
/libcore/ojluni/src/main/java/java/sql/
DTypes.java112 public final static int CHAR = 1; field in Types
/libcore/luni/src/main/java/libcore/util/
DEmptyArray.java48 public static final char[] CHAR = new char[0]; field in EmptyArray
/libcore/libart/src/main/java/java/lang/
DStringFactory.java42 return newStringFromChars(EmptyArray.CHAR, 0, 0); in newEmptyString()
/libcore/luni/src/test/java/libcore/java/sql/
DOldPreparedStatementTest.java1529 ps.setNull(1, Types.CHAR); in testSetNull_int_int()
1759 ps.setObject(1, "test text", Types.CHAR); in testSetObject_int_Object_int()
1853 ps.setObject(1, "test text", Types.CHAR, Integer.MIN_VALUE); in testSetObject_int_Object_int_int()
1911 ps.setObject(1, "test text", Types.CHAR, Integer.MIN_VALUE); in testSetObject_int_Object_int_int()
/libcore/luni/src/test/java/tests/java/sql/
DDatabaseMetaDataTest.java1184 Types.BLOB, Types.BOOLEAN, Types.CHAR, Types.CLOB, in test_getTypeInfo()