HomeSort by relevance Sort by last modified time
    Searched refs:Table (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium/chrome/browser/ui/cocoa/
table_row_nsimage_cache.h 20 // Interface this cache expects for its table model.
21 class Table {
23 // Returns the number of rows in the table.
30 virtual ~Table() {}
34 explicit TableRowNSImageCache(Table* model);
40 // Call these functions every time the table changes, to update the cache.
47 // The table model we query for row count and icons.
48 Table* model_; // weak
  /external/guava/guava-tests/test/com/google/common/collect/
TransposedTableTest.java 29 @Override protected Table<String, Integer, Character> create(
31 Table<Integer, String, Character> original = HashBasedTable.create();
32 Table<String, Integer, Character> table = Tables.transpose(original); local
33 table.clear();
34 populate(table, data);
35 return table;
39 Table<Integer, String, Character> original = HashBasedTable.create();
44 Table<Integer, String, Character> original = HashBasedTable.create();
45 Table<String, Integer, Character> transpose = Tables.transpose(original)
    [all...]
HashBasedTableTest.java 32 @Override protected Table<String, Integer, Character> create(
34 Table<String, Integer, Character> table = HashBasedTable.create(); local
35 table.put("foo", 4, 'a');
36 table.put("cat", 1, 'b');
37 table.clear();
38 populate(table, data);
39 return table;
43 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20);
47 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0)
    [all...]
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...]
NewCustomTableTest.java 35 @Override protected Table<String, Integer, Character> create(
46 Table<String, Integer, Character> table local
48 populate(table, data);
49 return table;
53 table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c');
54 ASSERT.that(table.rowKeySet()).hasContentsInOrder("foo", "bar");
58 table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c');
59 ASSERT.that(table.row("foo").keySet()).hasContentsInOrder(2, 3);
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/codeutils/codegeneration/
SampleDatabaseActivityPageLabelProvider.java 20 import org.eclipse.datatools.modelbase.sql.tables.Table;
38 private static final String TABLE_ICON = "icons/table.gif";
51 // Get the value and check if it's a database or table
60 else if (value instanceof Table)
67 else if (value instanceof com.motorola.studio.android.db.wizards.model.Table)
90 // Get the value and check if it's a database or table
96 else if (value instanceof Table)
98 result = ((Table) value).getName();
100 else if (value instanceof com.motorola.studio.android.db.wizards.model.Table)
103 ((com.motorola.studio.android.db.wizards.model.Table) value).getTableName();
    [all...]
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/codeutils/db/actions/
AbstractCodeGeneratorByTable.java 21 import org.eclipse.datatools.modelbase.sql.tables.Table;
36 * Table name that will not generate a class as it is android specific table.
41 * Table name that will not generate a class as it is android specific table.
45 private Table table; field in class:AbstractCodeGeneratorByTable
48 * Constructor that initializes the {@link org.eclipse.datatools.modelbase.sql.tables.Table Table} that will have its code generated.
50 public AbstractCodeGeneratorByTable(Table table)
    [all...]
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/ui/
IDbNode.java 21 import org.eclipse.datatools.modelbase.sql.tables.Table;
60 * Create a table in this db.
61 * Implementors must create the table and add a TableNode representing the new table as a new child.
63 * @param table The new table representation
66 IStatus createTable(TableModel table);
69 * Delete a table from this db.
70 * The table node representing this table must also be removed from this dbNode children.
    [all...]
  /tools/motodev/src/plugins/db.core/
plugin.properties 15 browse_table_contents_action=&Browse Table Contents...
34 create_table_action=Create &Table...
51 command_browse_table_contents_name=Browse Table Contents...
52 command_browse_table_contents_description=Browse Table Contents using an instance of TableNode
54 command_delete_table_name=Delete Table
55 command_delete_table_description=Delete Selected Table
60 command_create_table_name=Create Table
61 command_create_table_description=Create a New Table
79 menu_browse_table_contents=Browse Table Contents...
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/ui/action/
ITableCreatorNode.java 21 import org.eclipse.datatools.modelbase.sql.tables.Table;
32 IStatus createTable(TableModel table);
34 List<Table> getTables();
  /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;
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/model/
IDatabaseSampleActivityParametersWizardCollector.java 24 import org.eclipse.datatools.modelbase.sql.tables.Table;
37 public void setTable(Table table);
45 public Table getTable();
  /external/clang/lib/Basic/
Builtins.cpp 50 void Builtin::Context::InitializeBuiltins(IdentifierTable &Table,
57 Table.get(BuiltinInfo[i].Name).setBuiltinID(i);
63 Table.get(TSRecords[i].Name).setBuiltinID(i+Builtin::FirstTSBuiltin);
80 void Builtin::Context::ForgetBuiltin(unsigned ID, IdentifierTable &Table) {
81 Table.get(GetRecord(ID).Name).setBuiltinID(0);
  /external/guava/guava/src/com/google/common/collect/
EmptyImmutableTable.java 56 } else if (obj instanceof Table<?, ?, ?>) {
57 Table<?, ?, ?> that = (Table<?, ?, ?>) obj;
RowSortedTable.java 28 * Interface that extends {@code Table} and whose rows are sorted.
32 * {@link Map} specified by the {@link Table} interface.
39 public interface RowSortedTable<R, C, V> extends Table<R, C, V> {
44 * specified in the {@link Table} interface.
52 * specified in the {@link Table} interface.
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
TablePanel.java 26 import org.eclipse.swt.widgets.Table;
32 * Base class for panel containing Table that need to support copy-paste-selectAll
44 // record the global listener, to make sure table created after
52 * Sets up the Table of object of the panel to work with the global listener.<br>
60 * Sets up a Table object to notify the global Table Focus listener when it
63 * @param table the Table object.
67 protected final void addTableToFocusListener(final Table table,
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Entry.java 37 public @interface Table {
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 71 DecoderTable Table;
99 // Emit the decoder state machine table.
100 void emitTable(formatted_raw_ostream &o, DecoderTable &Table,
269 // Emit table entries to decode instructions given a segment or segments of
315 // Lookup table for the operand decoding of instructions.
449 // Emits table entries to decode the singleton.
609 static void resolveTableFixups(DecoderTable &Table, const FixupList &Fixups,
622 // Our NumToSkip entries are 16-bits. Make sure our table isn't too
624 assert(Delta < 65536U && "disassembler decoding table too large!");
625 Table[FixupIdx] = (uint8_t)Delta
    [all...]
  /tools/motodev/src/plugins/android/src/com/motorola/studio/android/wizards/elements/
TableWithLoadingInfo.java 29 import org.eclipse.swt.widgets.Table;
39 * This widget displays a table with the ability of getting data asynchronously
41 * After the data is retrieved, its info is shown in the Table.
48 * adds data to the widget?s table.
56 * One should also note that there are several {@link Table} methods wrapped by this component.
57 * In case it is needed, one may add more. The {@link Table} itself is exposed by the method
75 * This thread displays the Loading info... message in the table.
81 private final Table table; field in class:TableWithLoadingInfo.LoadingInfoAnimationThread
87 * @param table Table which holds the Loading Info... message.
146 Table table; field in class:TableWithLoadingInfo.DeselectListener
185 private final Table table; field in class:TableWithLoadingInfo
    [all...]
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/junit/
TableNodeTest.java 22 import org.eclipse.datatools.modelbase.sql.tables.Table;
49 Table table = model.getTable("mablinhos3"); local
51 TableNode node = new TableNode(table, model, null);
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/common/utilities/ui/
WidgetsFactory.java 29 import org.eclipse.swt.widgets.Table;
225 * Creates a new table widget.
228 * @return The new table
230 public static Table createTable(Composite parent)
232 Table toReturn =
233 new Table(parent, SWT.H_SCROLL | SWT.V_SCROLL | SWT.MULTI | SWT.FULL_SELECTION
245 * Creates a new table widget.
248 * @return The new table
250 public static Table createTableMultiSelection(Composite parent)
252 Table toReturn =
    [all...]

Completed in 613 milliseconds

1 2 3 4 5 6 7 8