HomeSort by relevance Sort by last modified time
    Searched refs:Table (Results 26 - 50 of 298) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/sfntly/cpp/src/test/
verify_hhea.cc 20 #include "sfntly/table/core/horizontal_header_table.h"
35 static bool VerifyHHEA(Table* table) {
36 HorizontalHeaderTablePtr hhea = down_cast<HorizontalHeaderTable*>(table);
57 bool VerifyHHEA(Table* original, Table* target) {
verify_loca.cc 19 #include "sfntly/table/truetype/loca_table.h"
40 static bool VerifyLOCA(Table* table) {
41 LocaTablePtr loca = down_cast<LocaTable*>(table);
56 bool VerifyLOCA(Table* original, Table* target) {
verify_hmtx.cc 19 #include "sfntly/table/core/horizontal_metrics_table.h"
49 static bool VerifyHMTX(Table* table) {
50 HorizontalMetricsTablePtr hmtx = down_cast<HorizontalMetricsTable*>(table);
70 bool VerifyHMTX(Table* original, Table* target) {
verify_maxp.cc 20 #include "sfntly/table/core/maximum_profile_table.h"
40 static bool VerifyMAXP(Table* table) {
41 MaximumProfileTablePtr maxp = down_cast<MaximumProfileTable*>(table);
66 bool VerifyMAXP(Table* original, Table* target) {
verify_name.cc 19 #include "sfntly/table/core/name_table.h"
40 static bool VerifyNAME(Table* table) {
43 NameTablePtr name = down_cast<NameTable*>(table);
62 bool VerifyNAME(Table* original, Table* target) {
  /art/runtime/
intern_table.h 44 // Interns a potentially new string in the 'strong' table. (See above.)
48 // Interns a potentially new string in the 'strong' table. (See above.)
52 // Interns a potentially new string in the 'strong' table. (See above.)
55 // Interns a potentially new string in the 'weak' table. (See above.)
73 typedef std::multimap<int32_t, mirror::String*> Table;
78 mirror::String* Lookup(Table& table, mirror::String* s, uint32_t hash_code)
80 mirror::String* Insert(Table& table, mirror::String* s, uint32_t hash_code);
81 void Remove(Table& table, const mirror::String* s, uint32_t hash_code)
    [all...]
gc_map.h 34 // The number of entries in the table.
42 return &Table()[entry_offset + NativeOffsetWidth()];
45 // Get the native PC encoded in the table at the given index.
50 result |= Table()[entry_offset + i] << (i * 8);
92 const uint8_t* Table() const {
101 // The width of an entry in the table.
106 const uint8_t* const data_; // The header and table data
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Mixer_TimeConstant.c 70 LVM_UINT32 Table[] = {ALPHA_0, /* Log spaced look-up table */
132 /* Normalize to get the table index and interpolation factor */
151 Diff = (LVM_INT32)(Table[Shift] - Table[Shift+1]);
153 Product = Table[Shift+1] + (LVM_UINT32)Diff;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
hash.c 3 * Generic hash table.
44 #define TABLE_SIZE 1023 /**< Size of lookup table/array */
50 * An entry in the hash table.
60 * The hash table data structure.
63 struct HashEntry *Table[TABLE_SIZE]; /**< the lookup table */
73 * Create a new hash table.
75 * \return pointer to a new, empty hash table.
80 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable); local
81 if (table) {
    [all...]
  /external/mesa3d/src/mesa/main/
hash.c 3 * Generic hash table.
44 #define TABLE_SIZE 1023 /**< Size of lookup table/array */
50 * An entry in the hash table.
60 * The hash table data structure.
63 struct HashEntry *Table[TABLE_SIZE]; /**< the lookup table */
73 * Create a new hash table.
75 * \return pointer to a new, empty hash table.
80 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable); local
81 if (table) {
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/table/
table.cc 5 #include "leveldb/table.h"
12 #include "table/block.h"
13 #include "table/filter_block.h"
14 #include "table/format.h"
15 #include "table/two_level_iterator.h"
20 struct Table::Rep {
38 Status Table::Open(const Options& options,
41 Table** table) {
42 *table = NULL
157 Table* table = reinterpret_cast<Table*>(arg); local
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
memtable.h 77 typedef SkipList<const char*, KeyComparator> Table;
82 Table table_;
table_cache.cc 9 #include "leveldb/table.h"
16 Table* table; member in struct:leveldb::TableAndFile
21 delete tf->table;
55 Table* table = NULL; local
64 s = Table::Open(*options_, file, file_size, &table);
68 assert(table == NULL);
75 tf->table = table
96 Table* table = reinterpret_cast<TableAndFile*>(cache_->Value(handle))->table; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingTableTest.java 26 private Table<String, Integer, Boolean> forward;
36 final Table<String, Integer, Boolean> table = local
37 createProxyInstance(Table.class);
39 @Override protected Table<String, Integer, Boolean> delegate() {
40 return table;
112 assertEquals("[putAll(Table)]", getCalls());
TableCollectionTest.java 27 import com.google.common.collect.Table.Cell;
52 * Collection tests for {@link Table} implementations.
117 // Not testing rowKeySet() or columnKeySet() of Table.transformValues()
122 Table<String, Integer, Character> table
125 populateForRowKeySet(table, elements);
126 return table.rowKeySet();
138 Table<String, Integer, Character> table = HashBasedTable.create();
139 populateForRowKeySet(table, elements)
676 Table<String, Integer, Character> table = createTable(); local
733 Table<Character, String, Integer> table = makeTable(); local
806 Table<Character, String, Integer> table = HashBasedTable.create(); local
811 Table<Character, String, Integer> table = HashBasedTable.create(); local
826 Table<Character, String, Integer> table = HashBasedTable.create(); local
831 Table<Character, String, Integer> table = HashBasedTable.create(); local
846 RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); local
851 RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); local
874 Table<String, Character, Integer> table = makeTable(); local
940 Table<String, Character, Integer> table = HashBasedTable.create(); local
945 Table<String, Character, Integer> table = HashBasedTable.create(); local
960 Table<String, Character, Integer> table = HashBasedTable.create(); local
965 Table<String, Character, Integer> table = HashBasedTable.create(); local
980 RowSortedTable<String, Character, Integer> table = TreeBasedTable.create(); local
985 RowSortedTable<String, Character, Integer> table = TreeBasedTable.create(); local
1058 Table<String, Integer, Character> table = makeTable(); local
1116 TreeBasedTable<String, Integer, Character> table = local
1124 TreeBasedTable<String, Integer, Character> table = makeTable(); local
1144 TreeBasedTable<String, Integer, Character> table = local
1152 TreeBasedTable<String, Integer, Character> table = makeTable(); local
1172 TreeBasedTable<String, Integer, Character> table = local
1181 TreeBasedTable<String, Integer, Character> table = makeTable(); local
1215 Table<String, Integer, String> table = HashBasedTable.create(); local
1235 Table<String, Integer, Character> table = HashBasedTable.create(); local
1255 RowSortedTable<String, Integer, Character> table = TreeBasedTable.create(); local
1274 Table<Integer, String, Character> table = makeTable(); local
1334 Table<Integer, String, String> table = HashBasedTable.create(); local
1354 Table<Integer, String, Character> table = HashBasedTable.create(); local
1374 RowSortedTable<Integer, String, Character> table = TreeBasedTable.create(); local
    [all...]
ImmutableTableTest.java 27 @Override protected Table<String, Integer, Character> create(Object... data) {
44 Table<Character, Integer, String> expectedTable = HashBasedTable.create();
48 Table<Character, Integer, String> otherTable = HashBasedTable.create();
97 Table.Cell<Character, Integer, String> mutableCell =
156 private static <R, C, V> void validateTableCopies(Table<R, C, V> original) {
157 Table<R, C, V> copy = ImmutableTable.copyOf(original);
161 Table<R, C, V> built
168 Table<R, C, V> original, Table<R, C, V> copy) {
175 Table<Character, Integer, String> table = TreeBasedTable.create() local
190 Table<Character, Integer, String> table = TreeBasedTable.create(); local
204 Table<Character, Integer, String> table = TreeBasedTable.create(); local
217 Table<Character, Integer, String> table = HashBasedTable.create(); local
247 Table<Character, Integer, String> table = builder.build(); local
269 Table<Character, Integer, String> table = builder.build(); local
291 Table<Character, Integer, String> table = builder.build(); local
308 Table<Character, Integer, String> table = builder.build(); local
326 Table<Character, Integer, String> table = builder.build(); local
343 Table<Character, Integer, String> table = builder.build(); local
    [all...]
AbstractTableReadTest.java 30 * Test cases for {@link Table} read operations.
36 protected Table<String, Integer, Character> table; field in class:AbstractTableReadTest
39 * Creates a table with the specified data.
41 * @param data the table data, repeating the sequence row key, column key,
47 protected abstract Table<String, Integer, Character>
51 assertEquals(expectedSize, table.size());
56 table = create();
60 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
61 assertTrue(table.contains("foo", 1))
    [all...]
TablesTransformValuesTest.java 40 @Override protected Table<String, Integer, Character> create(
42 Table<String, Integer, String> table = HashBasedTable.create(); local
46 table.put((String) data[i], (Integer) data[i+1], value);
48 return Tables.transformValues(table, FIRST_CHARACTER);
51 // Null support depends on the underlying table and function.
58 table.put("foo", 1, 'a');
65 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
66 Table<String, Integer, Character> other = HashBasedTable.create();
71 table.putAll(other)
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/
verify_hmtx.cc 19 #include "sfntly/table/core/horizontal_metrics_table.h"
49 static bool VerifyHMTX(Table* table) {
50 HorizontalMetricsTablePtr hmtx = down_cast<HorizontalMetricsTable*>(table);
70 bool VerifyHMTX(Table* original, Table* target) {
verify_maxp.cc 20 #include "sfntly/table/core/maximum_profile_table.h"
40 static bool VerifyMAXP(Table* table) {
41 MaximumProfileTablePtr maxp = down_cast<MaximumProfileTable*>(table);
66 bool VerifyMAXP(Table* original, Table* target) {
verify_name.cc 19 #include "sfntly/table/core/name_table.h"
40 static bool VerifyNAME(Table* table) {
43 NameTablePtr name = down_cast<NameTable*>(table);
62 bool VerifyNAME(Table* original, Table* target) {
  /external/chromium_org/third_party/sqlite/src/test/
fuzz_common.tcl 28 # Table
111 # Return a valid table name.
114 proc Table {} {
167 {[SelectKw] [ResultSet $nRes $::ColumnList] FROM [Table]} \
178 {[SelectKw] * FROM [Table]} \
179 {[SelectKw] * FROM [Table] WHERE [Expr $::ColumnList]} \
182 FROM [Table],[Table] AS t2
186 FROM [Table] LEFT OUTER JOIN [Table] AS t2
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
ebsc_table.cc 17 #include "sfntly/table/bitmap/ebsc_table.h"
35 : Table(header, data) {
77 : Table::Builder(header, data) {
81 : Table::Builder(header, data) {
  /external/guava/guava/src/com/google/common/collect/
EmptyImmutableTable.java 56 } else if (obj instanceof Table<?, ?, ?>) {
57 Table<?, ?, ?> that = (Table<?, ?, ?>) obj;
  /external/sfntly/cpp/src/sfntly/table/bitmap/
ebsc_table.cc 17 #include "sfntly/table/bitmap/ebsc_table.h"
35 : Table(header, data) {
77 : Table::Builder(header, data) {
81 : Table::Builder(header, data) {

Completed in 660 milliseconds

12 3 4 5 6 7 8 91011>>