Searched refs:Tables (Results 1 - 25 of 30) sorted by relevance

12

/external/guava/guava-tests/test/com/google/common/collect/
H A DTablesTest.java28 * Tests for {@link Tables}.
38 = Tables.immutableCell("foo", 1, 'a');
44 = Tables.immutableCell("foo", 1, 'a');
48 = Tables.immutableCell(null, null, null);
54 = Tables.immutableCell("foo", 1, 'a');
57 .addEqualityGroup(entry, Tables.immutableCell("foo", 1, 'a'))
58 .addEqualityGroup(Tables.immutableCell("bar", 1, 'a'))
59 .addEqualityGroup(Tables.immutableCell("foo", 2, 'a'))
60 .addEqualityGroup(Tables.immutableCell("foo", 1, 'b'))
61 .addEqualityGroup(Tables
[all...]
H A DTransposedTableTest.java22 * Test cases for {@link Tables#transpose}.
32 Table<String, Integer, Character> table = Tables.transpose(original);
40 assertSame(original, Tables.transpose(Tables.transpose(original)));
45 Table<String, Integer, Character> transpose = Tables.transpose(original);
52 Table<String, Integer, Character> transpose = Tables.transpose(original);
59 Table<String, Integer, Character> transpose = Tables.transpose(original);
H A DTableCollectionTest.java222 return Tables.unmodifiableTable(table).rowKeySet();
233 return Tables.unmodifiableRowSortedTable(table).rowKeySet();
294 return Tables.unmodifiableTable(table).columnKeySet();
306 return Tables.unmodifiableRowSortedTable(table).columnKeySet();
380 return Tables.transformValues(table, removeFirstCharacter).values();
394 return Tables.unmodifiableTable(table).values();
408 return Tables.unmodifiableRowSortedTable(table).values();
419 Tables.immutableCell("bar", 1, 'a'),
420 Tables.immutableCell("bar", 2, 'b'),
421 Tables
[all...]
H A DRegularImmutableTableTest.java31 Tables.immutableCell('a', 1, "foo"),
32 Tables.immutableCell('b', 1, "bar"),
33 Tables.immutableCell('a', 2, "baz"));
98 Tables.immutableCell('a', 1, "blah"),
99 Tables.immutableCell('b', 2, "blah"),
100 Tables.immutableCell('c', 3, "blah"))) instanceof
H A DNewCustomTableTest.java28 * Test cases for {@link Tables#newCustomTable}.
47 = Tables.newCustomTable(backingMap, factory);
H A DTablesTransformValuesTest.java26 * Test cases for {@link Tables#transformValues}.
48 return Tables.transformValues(table, FIRST_CHARACTER);
H A DImmutableTableTest.java60 .put(Tables.immutableCell('a', 1, "foo"))
68 builder.put(Tables.immutableCell((Character) null, 1, "foo"));
74 builder.put(Tables.immutableCell('a', (Integer) null, "foo"));
80 builder.put(Tables.immutableCell('a', 1, (String) null));
98 new Tables.AbstractCell<Character, Integer, String>() {
H A DSingletonImmutableTableTest.java38 assertEquals(ImmutableSet.of(Tables.immutableCell('a', 1, "blah")),
H A DArrayTableTest.java410 assertEquals(Tables.immutableCell("foo", 1, 'a'), cell);
412 assertEquals(Tables.immutableCell("foo", 1, 'd'), cell);
/external/llvm/utils/TableGen/
H A DDisassemblerEmitter.cpp112 DisassemblerTables Tables; local
118 RecognizableInstr::processInstr(Tables, *numberedInstructions[i], i);
120 if (Tables.hasConflicts())
124 Tables.emit(OS);
H A DX86DisassemblerTables.h42 ContextDecision* Tables[6]; member in class:llvm::X86Disassembler::DisassemblerTables
H A DX86DisassemblerTables.cpp373 for (i = 0; i < array_lengthof(Tables); i++) {
374 Tables[i] = new ContextDecision;
375 memset(Tables[i], 0, sizeof(ContextDecision));
384 for (i = 0; i < array_lengthof(Tables); i++)
385 delete Tables[i];
703 emitContextDecision(o1, o2, i1, i2, *Tables[0], ONEBYTE_STR);
704 emitContextDecision(o1, o2, i1, i2, *Tables[1], TWOBYTE_STR);
705 emitContextDecision(o1, o2, i1, i2, *Tables[2], THREEBYTE38_STR);
706 emitContextDecision(o1, o2, i1, i2, *Tables[3], THREEBYTE3A_STR);
707 emitContextDecision(o1, o2, i1, i2, *Tables[
[all...]
/external/libvorbis/doc/
H A D10-tables.tex4 \section{Tables} \label{vorbis:spec:tables}
0 \\section{Tables} \\label{vorbis:spec:tables} section
/external/guava/guava/src/com/google/common/collect/
H A DImmutableTable.java118 return Tables.immutableCell(checkNotNull(rowKey), checkNotNull(columnKey),
193 if (cell instanceof Tables.ImmutableCell) {
H A DSingletonImmutableTable.java51 Tables.immutableCell(singleRowKey, singleColumnKey, singleValue));
H A DTables.java49 public final class Tables { class
50 private Tables() {} method in class:Tables
H A DArrayTable.java476 return new Tables.AbstractCell<R, C, V>() {
H A DStandardTable.java323 return Tables.immutableCell(
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc323 // DescriptorPool::Tables
325 class DescriptorPool::Tables { class in class:google::protobuf::DescriptorPool
327 Tables();
328 ~Tables();
363 // Roll back the Tables to the state of the checkpoint at the top of the
450 explicit CheckPoint(const Tables* tables)
487 // FileDescriptorTables and DescriptorPool::Tables are interleaved below.
542 DescriptorPool::Tables::Tables() function in class:google::protobuf::DescriptorPool::Tables
550 DescriptorPool::Tables
[all...]
H A Ddescriptor.h1296 class Tables;
1297 scoped_ptr<Tables> tables_;
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc305 // DescriptorPool::Tables
307 class DescriptorPool::Tables { class in class:google::protobuf::DescriptorPool
309 Tables();
310 ~Tables();
313 // return the Tables to this state. This is used when building files, since
320 // Roll back the Tables to the state of the last Checkpoint(), removing
426 // FileDescriptorTables and DescriptorPool::Tables are interleaved below.
481 DescriptorPool::Tables::Tables() function in class:google::protobuf::DescriptorPool::Tables
486 DescriptorPool::Tables
[all...]
H A Ddescriptor.h1161 class Tables;
1162 scoped_ptr<Tables> tables_;
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
H A Dxdflong.asm192 ;; 2 Meg Page Tables
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 788 milliseconds

12