Home
last modified time | relevance | path

Searched refs:Tables (Results 1 – 25 of 130) sorted by relevance

123456

/external/guava/guava-tests/test/com/google/common/collect/
DTablesTest.java40 Tables.toTable(Cell::getRowKey, Cell::getColumnKey, Cell::getValue, HashBasedTable::create); in testToTable()
50 Tables.immutableCell("one", "uno", 1), in testToTable()
51 Tables.immutableCell("two", "dos", 2), in testToTable()
52 Tables.immutableCell("three", "tres", 3)); in testToTable()
57 Tables.toTable( in testToTableNullMerge()
68 Tables.immutableCell("one", "uno", 1), in testToTableNullMerge()
69 Tables.immutableCell("one", "uno", 2)); in testToTableNullMerge()
74 Tables.toTable( in testToTableNullValues()
80 Stream.of(Tables.immutableCell("one", "uno", (Integer) null)).collect(collector); in testToTableNullValues()
88 Tables.toTable(Cell::getRowKey, Cell::getColumnKey, Cell::getValue, HashBasedTable::create); in testToTableConflict()
[all …]
DTableCollectionTest.java177 return Tables.unmodifiableTable(table).rowKeySet(); in suite()
191 return Tables.unmodifiableRowSortedTable(table).rowKeySet(); in suite()
265 return Tables.unmodifiableTable(table).columnKeySet(); in suite()
279 return Tables.unmodifiableRowSortedTable(table).columnKeySet(); in suite()
366 return Tables.transformValues(table, removeFirstCharacter).values(); in suite()
383 return Tables.unmodifiableTable(table).values(); in suite()
399 return Tables.unmodifiableRowSortedTable(table).values(); in suite()
412 Tables.immutableCell("bar", 1, 'a'), in suite()
413 Tables.immutableCell("bar", 2, 'b'), in suite()
414 Tables.immutableCell("bar", 3, (Character) null), in suite()
[all …]
DTransposedTableTest.java32 Table<String, Integer, Character> table = Tables.transpose(original); in create()
40 assertSame(original, Tables.transpose(Tables.transpose(original))); in testTransposeTransposed()
45 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutOriginalModifiesTranspose()
52 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutTransposeModifiesOriginal()
59 Table<String, Integer, Character> transpose = Tables.transpose(original); in testTransposedViews()
DImmutableTableTest.java61 Tables.immutableCell("one", "uno", 1), in testToImmutableTable()
62 Tables.immutableCell("two", "dos", 2), in testToImmutableTable()
63 Tables.immutableCell("three", "tres", 3)); in testToImmutableTable()
70 Stream.of(Tables.immutableCell("one", "uno", 1), Tables.immutableCell("one", "uno", 2)) in testToImmutableTableConflict()
81 Stream.of(Tables.immutableCell("one", "uno", 1)).collect(collector); in testToImmutableTableNullRowKey()
91 Stream.of(Tables.immutableCell("one", "uno", 1)).collect(collector); in testToImmutableTableNullColumnKey()
101 Stream.of(Tables.immutableCell("one", "uno", 1)).collect(collector); in testToImmutableTableNullValue()
109 Tables.immutableCell("one", "uno", 1), in testToImmutableTableNullValue()
110 Tables.immutableCell("one", "uno", (Integer) null)) in testToImmutableTableNullValue()
132 Tables.immutableCell("one", "uno", 1), in testToImmutableTableMerging()
[all …]
DRegularImmutableTableTest.java29 Tables.immutableCell('a', 1, "foo"),
30 Tables.immutableCell('b', 1, "bar"),
31 Tables.immutableCell('a', 2, "baz"));
86 Tables.immutableCell('a', 1, "blah"), in testForCells()
87 Tables.immutableCell('b', 2, "blah"), in testForCells()
88 Tables.immutableCell('c', 3, "blah"))) in testForCells()
/external/guava/android/guava-tests/test/com/google/common/collect/
DTablesTest.java36 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testImmutableEntrySerialization()
41 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testImmutableEntryToString()
44 Cell<String, Integer, Character> nullEntry = Tables.immutableCell(null, null, null); in testImmutableEntryToString()
49 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testEntryEquals()
52 .addEqualityGroup(entry, Tables.immutableCell("foo", 1, 'a')) in testEntryEquals()
53 .addEqualityGroup(Tables.immutableCell("bar", 1, 'a')) in testEntryEquals()
54 .addEqualityGroup(Tables.immutableCell("foo", 2, 'a')) in testEntryEquals()
55 .addEqualityGroup(Tables.immutableCell("foo", 1, 'b')) in testEntryEquals()
56 .addEqualityGroup(Tables.immutableCell(null, null, null)) in testEntryEquals()
61 Cell<String, Integer, Character> entry = Tables.immutableCell(null, null, null); in testEntryEqualsNull()
[all …]
DTableCollectionTest.java177 return Tables.unmodifiableTable(table).rowKeySet(); in suite()
191 return Tables.unmodifiableRowSortedTable(table).rowKeySet(); in suite()
265 return Tables.unmodifiableTable(table).columnKeySet(); in suite()
279 return Tables.unmodifiableRowSortedTable(table).columnKeySet(); in suite()
366 return Tables.transformValues(table, removeFirstCharacter).values(); in suite()
383 return Tables.unmodifiableTable(table).values(); in suite()
399 return Tables.unmodifiableRowSortedTable(table).values(); in suite()
412 Tables.immutableCell("bar", 1, 'a'), in suite()
413 Tables.immutableCell("bar", 2, 'b'), in suite()
414 Tables.immutableCell("bar", 3, (Character) null), in suite()
[all …]
DTransposedTableTest.java32 Table<String, Integer, Character> table = Tables.transpose(original); in create()
40 assertSame(original, Tables.transpose(Tables.transpose(original))); in testTransposeTransposed()
45 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutOriginalModifiesTranspose()
52 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutTransposeModifiesOriginal()
59 Table<String, Integer, Character> transpose = Tables.transpose(original); in testTransposedViews()
DRegularImmutableTableTest.java29 Tables.immutableCell('a', 1, "foo"),
30 Tables.immutableCell('b', 1, "bar"),
31 Tables.immutableCell('a', 2, "baz"));
86 Tables.immutableCell('a', 1, "blah"), in testForCells()
87 Tables.immutableCell('b', 2, "blah"), in testForCells()
88 Tables.immutableCell('c', 3, "blah"))) in testForCells()
DImmutableTableTest.java58 ImmutableTable.of('a', 1, "foo"), builder.put(Tables.immutableCell('a', 1, "foo")).build()); in testBuilder_withImmutableCell()
64 builder.put(Tables.immutableCell((Character) null, 1, "foo")); in testBuilder_withImmutableCellAndNullContents()
70 builder.put(Tables.immutableCell('a', (Integer) null, "foo")); in testBuilder_withImmutableCellAndNullContents()
76 builder.put(Tables.immutableCell('a', 1, (String) null)); in testBuilder_withImmutableCellAndNullContents()
93 new Tables.AbstractCell<Character, Integer, String>() { in testBuilder_withMutableCell()
/external/clang/lib/Serialization/
DMultiOnDiskHashTable.h72 TableVector Tables; variable
90 auto Begin = Tables.begin(), End = Tables.end(); in tables()
99 return Tables.empty() ? nullptr : Table::getFromOpaqueValue(*Tables.begin()) in getMergedTable()
109 Tables.clear(); in clear()
123 Tables.erase(std::remove_if(tables().begin().getCurrent(), Tables.end(), in removeOverriddenTables()
125 Tables.end()); in removeOverriddenTables()
155 Tables.clear(); in condense()
156 Tables.push_back(Table(Merged).getOpaqueValue()); in condense()
166 : Tables(std::move(O.Tables)), in MultiOnDiskHashTable()
168 O.Tables.clear(); in MultiOnDiskHashTable()
[all …]
/external/llvm/utils/TableGen/
DDisassemblerEmitter.cpp111 DisassemblerTables Tables; in EmitDisassembler() local
117 RecognizableInstr::processInstr(Tables, *numberedInstructions[i], i); in EmitDisassembler()
119 if (Tables.hasConflicts()) { in EmitDisassembler()
124 Tables.emit(OS); in EmitDisassembler()
DX86DisassemblerTables.cpp447 for (i = 0; i < array_lengthof(Tables); i++) { in DisassemblerTables()
448 Tables[i] = new ContextDecision; in DisassemblerTables()
449 memset(Tables[i], 0, sizeof(ContextDecision)); in DisassemblerTables()
458 for (i = 0; i < array_lengthof(Tables); i++) in ~DisassemblerTables()
459 delete Tables[i]; in ~DisassemblerTables()
815 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[0], ONEBYTE_STR); in emitContextDecisions()
816 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[1], TWOBYTE_STR); in emitContextDecisions()
817 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[2], THREEBYTE38_STR); in emitContextDecisions()
818 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[3], THREEBYTE3A_STR); in emitContextDecisions()
819 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[4], XOP8_MAP_STR); in emitContextDecisions()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DDisassemblerEmitter.cpp112 DisassemblerTables Tables; in EmitDisassembler() local
118 RecognizableInstr::processInstr(Tables, *numberedInstructions[i], i); in EmitDisassembler()
120 if (Tables.hasConflicts()) { in EmitDisassembler()
125 Tables.emit(OS); in EmitDisassembler()
DX86DisassemblerTables.cpp654 for (unsigned i = 0; i < array_lengthof(Tables); i++) in DisassemblerTables()
655 Tables[i] = llvm::make_unique<ContextDecision>(); in DisassemblerTables()
1024 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[0], ONEBYTE_STR); in emitContextDecisions()
1025 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[1], TWOBYTE_STR); in emitContextDecisions()
1026 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[2], THREEBYTE38_STR); in emitContextDecisions()
1027 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[3], THREEBYTE3A_STR); in emitContextDecisions()
1028 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[4], XOP8_MAP_STR); in emitContextDecisions()
1029 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[5], XOP9_MAP_STR); in emitContextDecisions()
1030 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[6], XOPA_MAP_STR); in emitContextDecisions()
1031 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[7], THREEDNOW_MAP_STR); in emitContextDecisions()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Dmin-jump-table.ll14 ; CHECK0-NEXT: Jump Tables:
17 ; CHECK4-NOT: Jump Tables:
18 ; CHECK8-NOT: Jump Tables:
35 ; CHECK0-NEXT: Jump Tables:
38 ; CHECK4-NEXT: Jump Tables:
41 ; CHECK8-NOT: Jump Tables:
64 ; CHECK-NEXT: Jump Tables:
/external/igt-gpu-tools/man/
Dintel_vbt_decode.rst24 **intel_vbt_decode** is a tool to parse the Intel Video BIOS Tables (VBT) and
42 Parse Video BIOS Tables from FILE.
50 BIOS Tables, but this can be used to override.
53 Parse the details for all flat panels present in the Video BIOS Tables.
/external/markdown/docs/extensions/
DTables.txt1 Tables
14 Tables are defined using the syntax established in [PHP Markdown Extra][php].
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DCOFFDumper.cpp112 void printCOFFLoadConfig(const T *Conf, LoadConfigTables &Tables);
780 LoadConfigTables Tables; in printCOFFLoadConfig() local
782 printCOFFLoadConfig(Obj->getLoadConfig64(), Tables); in printCOFFLoadConfig()
784 printCOFFLoadConfig(Obj->getLoadConfig32(), Tables); in printCOFFLoadConfig()
786 if (Tables.SEHTableVA) { in printCOFFLoadConfig()
788 printRVATable(Tables.SEHTableVA, Tables.SEHTableCount, 4); in printCOFFLoadConfig()
791 if (Tables.GuardFidTableVA) { in printCOFFLoadConfig()
793 if (Tables.GuardFlags & uint32_t(coff_guard_flags::FidTableHasFlags)) { in printCOFFLoadConfig()
799 printRVATable(Tables.GuardFidTableVA, Tables.GuardFidTableCount, 5, in printCOFFLoadConfig()
802 printRVATable(Tables.GuardFidTableVA, Tables.GuardFidTableCount, 4); in printCOFFLoadConfig()
[all …]
/external/flatbuffers/docs/source/
DWhitePaper.md54 ### Tables subsection
56 Tables are the cornerstone of FlatBuffers, since format evolution is
62 Tables get around this by using an extra indirection to access fields,
71 Tables have a low overhead in memory (since vtables are small and
73 flexibility. Tables may even cost less memory than the equivalent
/external/pdfium/third_party/lcms/src/
Dcmstypes.c1641 cmsToneCurve* Tables[cmsMAXCHANNELS]; in Read8bitTables() local
1646 memset(Tables, 0, sizeof(Tables)); in Read8bitTables()
1652 Tables[i] = cmsBuildTabulatedToneCurve16(ContextID, 256, NULL); in Read8bitTables()
1653 if (Tables[i] == NULL) goto Error; in Read8bitTables()
1661 Tables[i]->Table16[j] = (cmsUInt16Number) FROM_8_TO_16(Temp[j]); in Read8bitTables()
1667 …if (!cmsPipelineInsertStage(lut, cmsAT_END, cmsStageAllocToneCurves(ContextID, nChannels, Tables))) in Read8bitTables()
1671 cmsFreeToneCurve(Tables[i]); in Read8bitTables()
1677 if (Tables[i]) cmsFreeToneCurve(Tables[i]); in Read8bitTables()
1686 …tTables(cmsContext ContextID, cmsIOHANDLER* io, cmsUInt32Number n, _cmsStageToneCurvesData* Tables) in Write8bitTables() argument
1694 if (Tables) { in Write8bitTables()
[all …]
/external/compiler-rt/www/
Dcontent.css24 /* Tables */
/external/fmtlib/doc/bootstrap/mixins/
Dtable-row.less1 // Tables
/external/skqp/src/effects/
DSkTableColorFilter.cpp117 struct Tables { const uint8_t *r, *g, *b, *a; }; in onAppendStages() argument
118 p->append(SkRasterPipeline::byte_tables, alloc->make<Tables>(Tables{r,g,b,a})); in onAppendStages()
/external/skia/src/effects/
DSkTableColorFilter.cpp116 struct Tables { const uint8_t *r, *g, *b, *a; }; in onAppendStages() argument
117 p->append(SkRasterPipeline::byte_tables, rec.fAlloc->make<Tables>(Tables{r,g,b,a})); in onAppendStages()

123456