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

12 3 4 5 6 7 8

  /tools/motodev/src/plugins/logger.collector/src/com/motorola/studio/android/logger/collector/util/
WidgetsFactory.java 29 import org.eclipse.swt.widgets.Table;
221 * Creates a new table widget.
224 * @return The new table
226 public static Table createTable(Composite parent)
228 Table toReturn =
229 new Table(parent, SWT.H_SCROLL | SWT.V_SCROLL | SWT.MULTI | SWT.FULL_SELECTION
241 * Creates a new table widget.
244 * @return The new table
246 public static Table createTableMultiSelection(Composite parent)
248 Table toReturn =
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableTable.java 31 * An immutable {@link Table} with reliable user-specified iteration order.
44 public abstract class ImmutableTable<R, C, V> implements Table<R, C, V> {
45 /** Returns an empty immutable table. */
51 /** Returns an immutable table containing a single cell. */
58 * Returns an immutable copy of the provided table.
60 * <p>The {@link Table#cellSet()} iteration order of the provided table
61 * determines the iteration ordering of all views in the returned table. Note
62 * that some views of the original table and the copied table may hav
    [all...]
ForwardingTable.java 27 * A table which forwards all its method calls to another table. Subclasses
38 implements Table<R, C, V> {
42 @Override protected abstract Table<R, C, V> delegate();
105 public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
106 delegate().putAll(table);
Tables.java 28 import com.google.common.collect.Table.Cell;
41 * Provides static methods that involve a {@code Table}.
123 * Creates a transposed view of a given table that flips its row and column
125 * generated table always returns the same value as calling {@code
126 * get(rowKey, columnKey)} on the original table. Updating the original table
127 * changes the contents of the transposed table and vice versa.
129 * <p>The returned table supports update operations as long as the input table
136 public static <R, C, V> Table<C, R, V> transpose(Table<R, C, V> table)
    [all...]
Table.java 31 * column key, with a single value. A table may be sparse, with only a small
41 * underlying table. Updating the table can change the contents of those
42 * collections, and updating the collections will change the table.
44 * <p>All methods that modify the table are optional, and the views returned by
45 * the table may or may not be modifiable. When modification isn't supported,
49 * @param <R> the type of the table row keys
50 * @param <C> the type of the table column keys
56 public interface Table<R, C, V> {
62 * Returns {@code true} if the table contains a mapping with the specifie
    [all...]
SingletonImmutableTable.java 122 } else if (obj instanceof Table<?, ?, ?>) {
123 Table<?, ?, ?> that = (Table<?, ?, ?>) obj;
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
SymbolWriter.java 23 import com.google.common.collect.Table;
74 Table<String, String, SymbolEntry> symbols = mSymbols.getSymbols();
75 Table<String, String, SymbolEntry> values = mValues.getSymbols();
83 // get the matching SymbolEntry from the values Table.
SymbolLoader.java 21 import com.google.common.collect.Table;
87 Table<String, String, SymbolEntry> getSymbols() {
  /external/llvm/include/llvm/MC/
SubtargetFeature.h 100 const SubtargetInfoKV *Table, size_t TableSize);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair.c 30 /* 4x4 DeZigZag table */
49 * [in] nTable Table number (0 to 4) according to the five columns
50 * of Table 9-5 in the H.264 spec
202 int Table = ZerosLeft;
203 if (Table > 6)
205 Table = 7;
207 Run = armUnPackVLC32(ppBitStream, pOffset, armVCM4P10_CAVLCRunBeforeTables[Table-1]);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
StackTracePanel.java 36 import org.eclipse.swt.widgets.Table;
50 private Table mStackTraceTable;
176 public Table createPanel(Composite parent, String prefs_stack_col_class,
180 mStackTraceTable = new Table(parent, SWT.MULTI | SWT.FULL_SELECTION);
InfoPanel.java 26 import org.eclipse.swt.widgets.Table;
34 private Table mTable;
57 mTable = new Table(parent, SWT.MULTI | SWT.FULL_SELECTION);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
WayPointLabelProvider.java 22 import org.eclipse.swt.widgets.Table;
25 * Label Provider for {@link Table} objects displaying {@link WayPoint} objects.
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/command/
TableCreateHandler.java 25 import org.eclipse.datatools.modelbase.sql.tables.Table;
71 // loop used to validate the new table name. If it already exists
72 // tell the user and open the table wizard again.
75 //repeat while table not added and dialog not cancelled
88 for (Table table : tableCreatorNode.getTables())
90 if (table.getName().equalsIgnoreCase(newTable.getName()))
104 //notify error that table already exists
142 private Set<String> getNotAllowedNames(List<Table> list)
147 for (Table table : list)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ArrayTableTest.java 23 import com.google.common.collect.Table.Cell;
42 ArrayTable<String, Integer, Character> table = local
44 populate(table, data);
45 return table;
49 assertEquals(9, table.size());
63 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
64 assertTrue(table.contains("foo", 1));
65 assertTrue(table.contains("bar", 1));
66 assertTrue(table.contains("foo", 3));
67 assertTrue(table.contains("foo", 2))
283 ArrayTable<String, Integer, Character> table local
289 ArrayTable<String, Integer, Character> table local
301 ArrayTable<String, Integer, Character> table local
325 ArrayTable<String, Integer, Character> table local
353 ArrayTable<String, Integer, Character> table local
380 ArrayTable<String, Integer, Character> table local
394 ArrayTable<String, Integer, Character> table local
    [all...]
  /external/clang/include/clang/Basic/
Builtins.h 74 void InitializeBuiltins(IdentifierTable &Table, const LangOptions& LangOpts);
132 void ForgetBuiltin(unsigned ID, IdentifierTable &Table);
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 42 typedef HashTable<ResolveInfo, StringHash<ELF>, ResolveInfoFactory> Table;
85 /// @return the StringRef points to the hash table
102 Table m_Table;
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
SdkTargetSelector.java 38 import org.eclipse.swt.widgets.Table;
47 * The SDK target selector is a table that is added to the given parent composite.
59 private Table mTable;
71 * Targets can be null or an empty array, in which case the table is disabled.
82 * Targets can be null or an empty array, in which case the table is disabled.
97 mTable = new Table(mInnerGroup, style);
111 // create the table columns
168 * The listener will be called <em>after</em> this table processed its selection
245 private void adjustColumnsWidth(final Table table,
    [all...]
  /external/llvm/lib/MC/
SubtargetFeature.cpp 136 /// getLongestEntryLength - Return the length of the longest entry in the table.
138 static size_t getLongestEntryLength(const SubtargetFeatureKV *Table,
142 MaxLen = std::max(MaxLen, std::strlen(Table[i].Key));
154 // Print the CPU table.
161 // Print the Feature table.
231 // Find feature in table.
270 "CPU table is not sorted");
274 "CPU features table is not sorted");
312 // Find feature in table.
341 const SubtargetInfoKV *Table,
    [all...]
  /external/clang/lib/Basic/
IdentifierTable.cpp 1 //===--- IdentifierTable.cpp - Hash table for identifier lookup -----------===//
79 // Populate the identifier table with info about keywords for the current
123 const LangOptions &LangOpts, IdentifierTable &Table) {
150 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
159 IdentifierTable &Table) {
160 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
168 IdentifierTable &Table) {
169 Table.get(Name).setObjCKeywordID(ObjCID);
172 /// AddKeywords - Add all keywords to the symbol table.
254 /// PrintStats - Print statistics about how well the identifier table is doin
    [all...]
  /tools/motodev/src/plugins/android/src/com/motorola/studio/android/wizards/elements/sorting/
TableItemSortStringSetActionListener.java 25 import org.eclipse.swt.widgets.Table;
32 * This selection listener sorts the columns of a {@link Table}. It assumes
43 // sort the table
52 // sort the table
57 * Execute the {@link Table} sorting.
65 // get table belonging to to sorted column
66 Table table = column.getParent(); local
69 TableItem[] selectedItems = table.getSelection();
73 // get the sort direction from the table
164 Table table = tableItem.getParent(); local
    [all...]
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/codeutils/db/actions/
ContentProviderGeneratorByTable.java 30 import org.eclipse.datatools.modelbase.sql.tables.Table;
41 * Warning: The tables named "ANDROID_METADATA" and "sqlite_sequence" will be ignored as it is an special table in Android apps context.
48 * Creates a new content provider given a {@link org.eclipse.datatools.modelbase.sql.tables.Table Table} and the name of the database which the table is attached to.
49 * @param table The table used in the content provider.
50 * @param dbName The database name in which the table is attached to.
52 public ContentProviderGeneratorByTable(Table table, String dbName)
228 Table table = getTable(); local
276 Table table = getTable(); local
312 Table table = this.getTable(); local
365 Table table = getTable(); local
421 Table table = getTable(); local
471 Table table = getTable(); local
524 Table table = getTable(); local
574 Table table = getTable(); local
613 Table table = this.getTable(); local
644 Table table = getTable(); local
    [all...]
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/model/
DbModel.java 53 import org.eclipse.datatools.modelbase.sql.tables.Table;
294 * Create a table based on the infomration provided via param table, on this db model.
295 * @param table The {@link TableModel}
296 * @return IStatus.OK if the table was created successfully, IStatus.ERROR otherwise. The status message explains the fail reason.
298 public IStatus createTable(TableModel table)
300 StringBuilder strBuilder = new StringBuilder("CREATE TABLE "); //$NON-NLS-1$
301 strBuilder.append(table.getName());
304 List<Field> fields = table.getFields();
344 * Delete a table from this dbModel with the name tableName
361 Table table = null; local
631 Table table = tde.getSqlTable(); local
    [all...]
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/ui/
TableNode.java 24 import org.eclipse.datatools.modelbase.sql.tables.Table;
43 private final Table table; field in class:TableNode
48 * @param table
51 public TableNode(Table table, DbModel dbModel, IDbNode parent)
53 super(table.getName(), table.getName(), parent);
54 this.table = table;
    [all...]
  /tools/motodev/src/plugins/logger.collector/src/com/motorola/studio/android/logger/collector/ui/
LogFileColumn.java 29 import org.eclipse.swt.widgets.Table;
40 * This class visually represents a log file Table View.
46 * The table of log files.
48 private Table tableLogFile = null;
104 tableLogFile = new Table(this, SWT.CHECK | SWT.BORDER);
158 * This method tests if the table view has nodes and if there is selected
161 * @return true if the table view has nodes and if there is selected nodes.

Completed in 813 milliseconds

12 3 4 5 6 7 8