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.java66 final SparseMappingTable.Table table1 = new SparseMappingTable.Table(data1); in testParcelingEmpty() local
67 table1.readFromParcel(tableParcel); in testParcelingEmpty()
100 final SparseMappingTable.Table table1 = new SparseMappingTable.Table(data1); in testParceling() local
101 table1.readFromParcel(tableParcel); in testParceling()
105 key = table1.getKey(ID1); in testParceling()
106 Assert.assertEquals(VALUE1, table1.getValue(key)); in testParceling()
108 key = table1.getKey(ID2); in testParceling()
109 Assert.assertEquals(VALUE2, table1.getValue(key)); in testParceling()
147 final SparseMappingTable.Table table1 = new SparseMappingTable.Table(data1); in testParcelingWithReset() local
148 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()