Home
last modified time | relevance | path

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

/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DHashBasedTableTest.java48 Table<String, Integer, Character> table3 = HashBasedTable.create(0, 20); in testCreateWithValidSizes() local
49 table3.put("foo", 1, 'a'); in testCreateWithValidSizes()
50 assertEquals((Character) 'a', table3.get("foo", 1)); in testCreateWithValidSizes()
/external/guava/guava-tests/test/com/google/common/collect/
DHashBasedTableTest.java51 Table<String, Integer, Character> table3 = HashBasedTable.create(0, 20); in testCreateWithValidSizes() local
52 table3.put("foo", 1, 'a'); in testCreateWithValidSizes()
53 assertEquals((Character) 'a', table3.get("foo", 1)); in testCreateWithValidSizes()
/external/skia/bench/
DImageFilterCollapse.cpp94 table3[i] = static_cast<uint8_t>(sqrtf(fi) * 255); in onDelayedSetup()
100 SkTableColorFilter::Create(table3), in onDelayedSetup()
111 uint8_t table1[256], table2[256], table3[256]; member in TableCollapseBench
/external/dbus/dbus/
Ddbus-hash.c1439 DBusHashTable *table3; in _dbus_hash_test() local
1479 table3 = _dbus_hash_table_new (DBUS_HASH_UINTPTR, in _dbus_hash_test()
1481 if (table3 == NULL) in _dbus_hash_test()
1516 if (!_dbus_hash_table_insert_uintptr (table3, in _dbus_hash_test()
1522 _dbus_assert (count_entries (table3) == i + 1); in _dbus_hash_test()
1532 value = _dbus_hash_table_lookup_uintptr (table3, i); in _dbus_hash_test()
1547 _dbus_hash_table_remove_uintptr (table3, i); in _dbus_hash_test()
1551 _dbus_assert (count_entries (table3) == i); in _dbus_hash_test()
1558 _dbus_hash_table_ref (table3); in _dbus_hash_test()
1561 _dbus_hash_table_unref (table3); in _dbus_hash_test()
[all …]
/external/clang/test/Analysis/
Dmalloc-sizeof.c44 int (*table3)[10][2] = malloc(sizeof nestedTable); in mallocArraySize() local
/external/skia/tests/
DDataRefTest.cpp38 SkAutoTUnref<SkDataTable> table3(SkDataTable::NewArrayProc(nullptr, 0, 0, in test_emptytable() local
44 test_datatable_is_empty(reporter, table3); in test_emptytable()
48 test_is_equal(reporter, table0, table3); in test_emptytable()