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/tools/aapt2/optimize/
DResourcePathShortener_test.cpp136 std::unique_ptr<ResourceTable> table1 = builder1.Build(); in TEST() local
138 ASSERT_TRUE(ResourcePathShortener(expected_mapping).Consume(context.get(), table1.get())); in TEST()