Searched refs:twos (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/sqlite/
H A DAbstractSqlTest.java62 private final short[] twos = {10, 20}; field in class:AbstractSqlTest
74 ones_updated[i] = ones[i] + twos[i];
125 + twos[i] + ")");
127 assertAllFromTbl1(firstStmt, ones, twos);
135 * @param twos the expected values of the column 'two'
138 private void assertAllFromTbl1(Statement stmt, String[] ones, short[] twos) argument
145 assertEquals(twos[i], rs.getShort("two"));
167 updateOnes(firstStmt, ones_updated, twos);
168 assertAllFromTbl1(secondStmt, ones, twos);
170 assertAllFromTbl1(secondStmt, ones_updated, twos);
199 updateOnes(Statement stmt, String[] ones_updated, short[] twos) argument
[all...]
/libcore/luni/src/test/java/libcore/java/util/
H A DOldFormatterTest.java40 Formattable twos = new Formattable() {
51 assertEquals("aaa 111 bbb 222?", new Formatter().format("aaa %s bbb %s?", ones, twos).toString());

Completed in 98 milliseconds