Home
last modified time | relevance | path

Searched refs:Table (Results 1 – 25 of 447) sorted by relevance

12345678910>>...18

/external/sfntly/cpp/src/sfntly/table/
Dtable.cc46 Table::~Table() {} in ~Table()
48 int64_t Table::CalculatedChecksum() { in CalculatedChecksum()
52 void Table::SetFont(Font* font) { in SetFont()
56 Table::Table(Header* header, ReadableFontData* data) in Table() function in sfntly::Table
64 Table::Builder::~Builder() { in ~Builder()
68 void Table::Builder::NotifyPostTableBuild(FontDataTable* table) { in NotifyPostTableBuild()
70 Table* derived_table = down_cast<Table*>(table); in NotifyPostTableBuild()
77 Table::Builder* Table::Builder::GetBuilder(Header* header, in GetBuilder()
80 Table::Builder* builder_raw = NULL; in GetBuilder()
85 builder_raw = static_cast<Table::Builder*>( in GetBuilder()
[all …]
Dtable.h35 class Table : public FontDataTable {
67 virtual ~Table();
92 Table(Header* header, ReadableFontData* data);
100 class GenericTable : public Table, public RefCounted<GenericTable> {
102 GenericTable(Header* header, ReadableFontData* data) : Table(header, data) {} in GenericTable()
106 typedef Ptr<Table> TablePtr;
108 typedef Ptr<Table::Builder> TableBuilderPtr;
Dsubtable_container_table.h24 class SubTableContainerTable : public Table {
26 class Builder : public Table::Builder {
29 : Table::Builder(header, data) { in Builder()
33 : Table::Builder(header, data) { in Builder()
40 : Table(header, data) { in SubTableContainerTable()
Dtable_based_table_builder.cc50 : Table::Builder(header, data) { in TableBasedTableBuilder()
55 : Table::Builder(header, data) { in TableBasedTableBuilder()
59 : Table::Builder(header) { in TableBasedTableBuilder()
62 Table* TableBasedTableBuilder::GetTable() { in GetTable()
64 table_.Attach(down_cast<Table*>(SubBuildTable(InternalReadData()))); in GetTable()
/external/sfntly/cpp/src/test/
Dserialization_test.h24 bool VerifyHHEA(Table* original, Table* target);
25 bool VerifyGLYF(Table* original, Table* target);
26 bool VerifyHMTX(Table* original, Table* target);
27 bool VerifyLOCA(Table* original, Table* target);
28 bool VerifyMAXP(Table* original, Table* target);
29 bool VerifyNAME(Table* original, Table* target);
30 bool VerifyOS_2(Table* original, Table* target);
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DTableCollectionTest.java21 import com.google.common.collect.Table.Cell;
70 Table<String, Integer, Character> table, String[] elements) { in populateForRowKeySet()
78 Table<Integer, String, Character> table, String[] elements) { in populateForColumnKeySet()
86 Table<Integer, Character, String> table, String[] elements) { in populateForValues()
107 Table<String, Integer, Character> table = createTable(); in create()
117 abstract Table<String, Integer, Character> createTable(); in createTable()
157 abstract Table<Character, String, Integer> makeTable(); in makeTable()
164 Table<Character, String, Integer> table = makeTable(); in makePopulatedMap()
178 @Override Table<Character, String, Integer> makeTable() { in makeTable()
188 @Override Table<Character, String, Integer> makeTable() { in makeTable()
[all …]
DHashBasedTableTest.java29 @Override protected Table<String, Integer, Character> create( in create()
31 Table<String, Integer, Character> table = HashBasedTable.create(); in create()
40 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20); in testCreateWithValidSizes()
44 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0); in testCreateWithValidSizes()
48 Table<String, Integer, Character> table3 = HashBasedTable.create(0, 20); in testCreateWithValidSizes()
52 Table<String, Integer, Character> table4 = HashBasedTable.create(0, 0); in testCreateWithValidSizes()
70 Table<String, Integer, Character> original in testCreateCopy()
72 Table<String, Integer, Character> copy = HashBasedTable.create(original); in testCreateCopy()
DImmutableTableTest.java30 @Override protected Table<String, Integer, Character> create(Object... data) { in create()
47 Table<Character, Integer, String> expectedTable = HashBasedTable.create(); in testBuilder()
51 Table<Character, Integer, String> otherTable = HashBasedTable.create(); in testBuilder()
100 Table.Cell<Character, Integer, String> mutableCell = in testBuilder_withMutableCell()
159 private static <R, C, V> void validateTableCopies(Table<R, C, V> original) { in validateTableCopies()
160 Table<R, C, V> copy = ImmutableTable.copyOf(original); in validateTableCopies()
164 Table<R, C, V> built in validateTableCopies()
171 Table<R, C, V> original, Table<R, C, V> copy) { in validateViewOrdering()
178 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOf()
193 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOfSparse()
[all …]
DAbstractTableReadTest.java34 protected Table<String, Integer, Character> table;
45 protected abstract Table<String, Integer, Character>
122 Table<String, Integer, Character> hashCopy = HashBasedTable.create(table); in testEquals()
123 Table<String, Integer, Character> reordered in testEquals()
125 Table<String, Integer, Character> smaller in testEquals()
127 Table<String, Integer, Character> swapOuter in testEquals()
129 Table<String, Integer, Character> swapValues in testEquals()
/external/guava/guava-tests/test/com/google/common/collect/
DTableCollectionTest.java25 import com.google.common.collect.Table.Cell;
123 Table<String, Integer, Character> table in suite()
139 Table<String, Integer, Character> table = HashBasedTable.create(); in suite()
168 Table<String, Integer, Character> table = HashBasedTable.create(); in suite()
195 Table<Integer, String, Character> table in suite()
211 Table<Integer, String, Character> table = HashBasedTable.create(); in suite()
222 Table<Integer, String, Character> table = TreeBasedTable.create(); in suite()
238 Table<Integer, String, Character> table = HashBasedTable.create(); in suite()
270 Table<Integer, Character, String> table in suite()
285 Table<Integer, Character, String> table = HashBasedTable.create(); in suite()
[all …]
DTransposedTableTest.java29 @Override protected Table<String, Integer, Character> create( in create()
31 Table<Integer, String, Character> original = HashBasedTable.create(); in create()
32 Table<String, Integer, Character> table = Tables.transpose(original); in create()
39 Table<Integer, String, Character> original = HashBasedTable.create(); in testTransposeTransposed()
44 Table<Integer, String, Character> original = HashBasedTable.create(); in testPutOriginalModifiesTranspose()
45 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutOriginalModifiesTranspose()
51 Table<Integer, String, Character> original = HashBasedTable.create(); in testPutTransposeModifiesOriginal()
52 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutTransposeModifiesOriginal()
58 Table<Integer, String, Character> original = HashBasedTable.create(); in testTransposedViews()
59 Table<String, Integer, Character> transpose = Tables.transpose(original); in testTransposedViews()
DHashBasedTableTest.java32 @Override protected Table<String, Integer, Character> create( in create()
34 Table<String, Integer, Character> table = HashBasedTable.create(); in create()
43 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20); in testCreateWithValidSizes()
47 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0); in testCreateWithValidSizes()
51 Table<String, Integer, Character> table3 = HashBasedTable.create(0, 20); in testCreateWithValidSizes()
55 Table<String, Integer, Character> table4 = HashBasedTable.create(0, 0); in testCreateWithValidSizes()
73 Table<String, Integer, Character> original in testCreateCopy()
75 Table<String, Integer, Character> copy = HashBasedTable.create(original); in testCreateCopy()
DImmutableTableTest.java31 @Override protected Table<String, Integer, Character> create(Object... data) { in create()
48 Table<Character, Integer, String> expectedTable = HashBasedTable.create(); in testBuilder()
52 Table<Character, Integer, String> otherTable = HashBasedTable.create(); in testBuilder()
101 Table.Cell<Character, Integer, String> mutableCell = in testBuilder_withMutableCell()
160 private static <R, C, V> void validateTableCopies(Table<R, C, V> original) { in validateTableCopies()
161 Table<R, C, V> copy = ImmutableTable.copyOf(original); in validateTableCopies()
165 Table<R, C, V> built in validateTableCopies()
172 Table<R, C, V> original, Table<R, C, V> copy) { in validateViewOrdering()
179 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOf()
194 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOfSparse()
[all …]
DAbstractTableReadTest.java36 protected Table<String, Integer, Character> table;
47 protected abstract Table<String, Integer, Character>
124 Table<String, Integer, Character> hashCopy = HashBasedTable.create(table); in testEquals()
125 Table<String, Integer, Character> reordered in testEquals()
127 Table<String, Integer, Character> smaller in testEquals()
129 Table<String, Integer, Character> swapOuter in testEquals()
131 Table<String, Integer, Character> swapValues in testEquals()
/external/tcpdump/tests/
Ddcb_ets.out43 Priority Assignment Table
46 TC Bandwidth Table
49 TSA Assignment Table
57 Priority Assignment Table
60 TC Bandwidth Table
63 TSA Assignment Table
140 Priority Assignment Table
143 TC Bandwidth Table
146 TSA Assignment Table
154 Priority Assignment Table
[all …]
/external/mesa3d/src/mesa/main/
Dhash.c63 struct HashEntry *Table[TABLE_SIZE]; /**< the lookup table */ member
104 struct HashEntry *entry = table->Table[pos]; in _mesa_DeleteHashTable()
136 entry = table->Table[pos]; in _mesa_HashLookup_unlocked()
193 for (entry = table->Table[pos]; entry; entry = entry->Next) { in _mesa_HashInsert()
212 entry->Next = table->Table[pos]; in _mesa_HashInsert()
213 table->Table[pos] = entry; in _mesa_HashInsert()
250 entry = table->Table[pos]; in _mesa_HashRemove()
258 table->Table[pos] = entry->Next; in _mesa_HashRemove()
294 for (entry = table->Table[pos]; entry; entry = next) { in _mesa_HashDeleteAll()
299 table->Table[pos] = NULL; in _mesa_HashDeleteAll()
[all …]
/external/guava/guava/src/com/google/common/collect/
DTables.java27 import com.google.common.collect.Table.Cell;
139 public static <R, C, V> Table<C, R, V> transpose(Table<R, C, V> table) { in transpose()
146 final Table<R, C, V> original;
148 TransposeTable(Table<R, C, V> original) { in TransposeTable()
204 public void putAll(Table<? extends C, ? extends R, ? extends V> table) { in putAll()
297 public static <R, C, V> Table<R, C, V> newCustomTable( in newCustomTable()
332 public static <R, C, V1, V2> Table<R, C, V2> transformValues( in transformValues()
333 Table<R, C, V1> fromTable, Function<? super V1, V2> function) { in transformValues()
339 final Table<R, C, V1> fromTable;
343 Table<R, C, V1> fromTable, Function<? super V1, V2> function) { in TransformedTable()
[all …]
/external/llvm/utils/TableGen/
DFixedLenDecoderEmitter.cpp71 DecoderTable Table; member
99 void emitTable(formatted_raw_ostream &o, DecoderTable &Table,
587 static void resolveTableFixups(DecoderTable &Table, const FixupList &Fixups, in resolveTableFixups() argument
603 Table[FixupIdx] = (uint8_t)Delta; in resolveTableFixups()
604 Table[FixupIdx + 1] = (uint8_t)(Delta >> 8); in resolveTableFixups()
611 TableInfo.Table.push_back(MCD::OPC_ExtractField); in emitTableEntry()
612 TableInfo.Table.push_back(StartBit); in emitTableEntry()
613 TableInfo.Table.push_back(NumBits); in emitTableEntry()
618 DecoderTable &Table = TableInfo.Table; in emitTableEntry() local
633 resolveTableFixups(Table, CurScope, Table.size()); in emitTableEntry()
[all …]
/external/llvm/lib/Fuzzer/
DFuzzerUtil.cpp172 static const char Table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" in Base64() local
179 Res += Table[(x >> 18) & 63]; in Base64()
180 Res += Table[(x >> 12) & 63]; in Base64()
181 Res += Table[(x >> 6) & 63]; in Base64()
182 Res += Table[x & 63]; in Base64()
186 Res += Table[(x >> 18) & 63]; in Base64()
187 Res += Table[(x >> 12) & 63]; in Base64()
191 Res += Table[(x >> 18) & 63]; in Base64()
192 Res += Table[(x >> 12) & 63]; in Base64()
193 Res += Table[(x >> 6) & 63]; in Base64()
/external/lzma/Java/SevenZip/
DCRC.java7 static public int[] Table = new int[256]; field in CRC
19 Table[i] = r;
33 _value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8); in Update()
40 _value = Table[(_value ^ data[i]) & 0xFF] ^ (_value >>> 8); in Update()
45 _value = Table[(_value ^ b) & 0xFF] ^ (_value >>> 8); in UpdateByte()
/external/lzma/CS/7zip/Common/
DCRC.cs7 public static readonly uint[] Table; field in SevenZip.CRC
11 Table = new uint[256]; in CRC()
21 Table[i] = r; in CRC()
31 _value = Table[(((byte)(_value)) ^ b)] ^ (_value >> 8); in UpdateByte()
37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8); in Update()
/external/pdfium/third_party/lcms2-2.6/src/
Dcmsintrp.c106 const void *Table, in _cmsComputeInterpParamsEx() argument
126 p ->Table = Table; in _cmsComputeInterpParamsEx()
154 …ntext ContextID, int nSamples, int InputChan, int OutputChan, const void* Table, cmsUInt32Number d… in _cmsComputeInterpParams() argument
164 return _cmsComputeInterpParamsEx(ContextID, Samples, InputChan, OutputChan, Table, dwFlags); in _cmsComputeInterpParams()
193 const cmsUInt16Number* LutTable = (cmsUInt16Number*) p ->Table; in LinLerp1D()
230 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table; in LinLerp1Dfloat()
266 const cmsUInt16Number* LutTable = (cmsUInt16Number*) p16 -> Table; in Eval1Input()
297 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table; in Eval1InputFloat()
337 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table; in BilinearInterpFloat()
390 const cmsUInt16Number* LutTable = (cmsUInt16Number*) p ->Table; in BilinearInterp16()
[all …]
/external/clang/lib/Serialization/
DMultiOnDiskHashTable.h50 HashTable Table; member
56 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {} in OnDiskTable()
64 typedef llvm::PointerUnion<OnDiskTable*, MergedTable*> Table; typedef
81 return Table::getFromOpaqueValue(P).template get<OnDiskTable *>(); in operator()
99 return Tables.empty() ? nullptr : Table::getFromOpaqueValue(*Tables.begin()) in getMergedTable()
117 auto *ODT = Table::getFromOpaqueValue(T).template get<OnDiskTable *>(); in removeOverriddenTables()
137 auto &HT = ODT->Table; in condense()
156 Tables.push_back(Table(Merged).getOpaqueValue()); in condense()
205 Table NewTable = new OnDiskTable(File, NumBucketsAndEntries.first,
233 auto &HT = ODT->Table; in find()
[all …]
/external/tpm2/generator/
Draw_structures.txt808 Table 1 — Name Prefix Convention ..................................................................…
809 Table 2 — Unmarshaling Errors .....................................................................…
810 Table 3 — Definition of Base Types ................................................................…
811 Table 4 — Definition of Types for Documentation Clarity ...........................................…
812 Table 5 — Definition of (UINT32) TPM_SPEC Constants <> ............................................…
813 Table 6 — Definition of (UINT32) TPM_GENERATED Constants <O> ......................................…
814 Table 7 — Definition of (UINT16) TPM_ALG_ID Constants <IN/OUT, S> .................................…
815 Table 8 — Definition of (UINT16) {ECC} TPM_ECC_CURVE Constants <IN/OUT, S> ........................…
816 Table 9 — TPM Command Format Fields Description ...................................................…
817 Table 10 — Legend for Command Code Tables .........................................................…
[all …]
Draw_structures_fixed.txt808 Table 1 — Name Prefix Convention ..................................................................…
809 Table 2 — Unmarshaling Errors .....................................................................…
810 Table 3 — Definition of Base Types ................................................................…
811 Table 4 — Definition of Types for Documentation Clarity ...........................................…
812 Table 5 — Definition of (UINT32) TPM_SPEC Constants <> ............................................…
813 Table 6 — Definition of (UINT32) TPM_GENERATED Constants <O> ......................................…
814 Table 7 — Definition of (UINT16) TPM_ALG_ID Constants <IN/OUT, S> .................................…
815 Table 8 — Definition of (UINT16) {ECC} TPM_ECC_CURVE Constants <IN/OUT, S> ........................…
816 Table 9 — TPM Command Format Fields Description ...................................................…
817 Table 10 — Legend for Command Code Tables .........................................................…
[all …]

12345678910>>...18