Home
last modified time | relevance | path

Searched refs:table1 (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/tests/coretests/src/com/android/internal/app/procstats/
DSparseMappingTableTest.java60 final SparseMappingTable.Table table1 = new SparseMappingTable.Table(data1); in testParcelingEmpty() local
61 table1.readFromParcel(tableParcel); in testParcelingEmpty()
94 final SparseMappingTable.Table table1 = new SparseMappingTable.Table(data1); in testParceling() local
95 table1.readFromParcel(tableParcel); in testParceling()
99 key = table1.getKey(ID1); in testParceling()
100 Assert.assertEquals(VALUE1, table1.getValue(key)); in testParceling()
102 key = table1.getKey(ID2); in testParceling()
103 Assert.assertEquals(VALUE2, table1.getValue(key)); in testParceling()
141 final SparseMappingTable.Table table1 = new SparseMappingTable.Table(data1); in testParcelingWithReset() local
142 table1.readFromParcel(tableParcel); in testParcelingWithReset()
[all …]
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
DMtpDatabaseConstants.java182 String table1, String table2, String column1, String column2) { in createJoinFromClosure() argument
183 return table1 + " LEFT JOIN " + table2 + in createJoinFromClosure()
184 " ON " + table1 + "." + column1 + " = " + table2 + "." + column2; in createJoinFromClosure()