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

1 2 3

  /packages/apps/Gallery3D/src/com/cooliris/picasa/
UserEntry.java 19 @Entry.Table("users")
Entry.java 35 public @interface Table {
AlbumEntry.java 24 @Entry.Table("albums")
PhotoEntry.java 24 @Entry.Table("photos")
  /external/clearsilver/python/examples/trans/
db_trans.py 11 class TransStringTable(Table):
24 class TransLocTable(Table):
39 class TransMapTable(Table):
  /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...]
StackTracePanel.java 36 import org.eclipse.swt.widgets.Table;
50 private Table mStackTraceTable;
167 public Table createPanel(Composite parent, String prefs_stack_col_class,
171 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);
TableHelper.java 22 import org.eclipse.swt.widgets.Table;
28 * Utility class to help using Table objects.
38 * @param parent The Table parent object
47 public static TableColumn createTableColumn(Table parent, String header,
98 * @param parent The Table parent object
155 * @param parent The Table parent object
AllocationPanel.java 52 import org.eclipse.swt.widgets.Table;
74 private Table mAllocationTable;
78 private Table mStackTraceTable;
84 * Expected input is a {@link Client} object, elements used in the table are of type
175 // table above the sash
205 mAllocationTable = new Table(topParent, SWT.MULTI | SWT.FULL_SELECTION);
ThreadPanel.java 56 import org.eclipse.swt.widgets.Table;
86 private Table mThreadTable;
93 private Table mStackTraceTable;
208 // table above the sash
209 mThreadTable = new Table(mThreadBase, SWT.MULTI | SWT.FULL_SELECTION);
HeapPanel.java 49 import org.eclipse.swt.widgets.Table;
126 private Table mHeapSummary;
135 private Table mStatisticsTable;
494 private Table createSummaryTable(Composite base) {
495 Table tab = new Table(base, SWT.SINGLE | SWT.FULL_SELECTION);
533 private Table createDetailedTable(Composite base) {
536 Table tab = new Table(base, SWT.SINGLE | SWT.FULL_SELECTION);
595 * Creates the chart below the statistics table
    [all...]
NativeHeapPanel.java 55 import org.eclipse.swt.widgets.Table;
131 private Table mAllocationTable;
133 private Table mLibraryTable;
135 private Table mLibraryAllocationTable;
137 private Table mDetailTable;
149 /** Current Library Allocation table fill thread. killed if selection changes */
385 * updates the library allocation table in the Native Heap panel. This is
781 // empty the table
790 // display detail table if needed
796 // looks like the table is disposed. Let's ignore it
    [all...]
  /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.
TrackLabelProvider.java 24 import org.eclipse.swt.widgets.Table;
29 * Label Provider for {@link Table} objects displaying {@link Track} objects.
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
SdkTargetSelector.java 35 import org.eclipse.swt.widgets.Table;
44 * The SDK target selector is a table that is added to the given parent composite.
56 private Table mTable;
65 * Targets can be null or an empty array, in which case the table is disabled.
76 * Targets can be null or an empty array, in which case the table is disabled.
91 mTable = new Table(mInnerGroup, style);
105 // create the table columns
161 * The listener will be called <em>after</em> this table processed its selection
238 private void adjustColumnsWidth(final Table table,
    [all...]
AvdSelector.java 53 import org.eclipse.swt.widgets.Table;
67 * The AVD selector is a table that is added to the given parent composite.
81 private Table mTable;
235 mTable = new Table(group, style);
352 // create the table columns
413 * Sets the table grid layout data.
491 * The listener will be called <em>after</em> this table processed its selection
618 private void adjustColumnsWidth(final Table table,
623 // Add a listener to resize the column to the full width of the table
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogPanel.java 57 import org.eclipse.swt.widgets.Table;
360 Table table = f.getTable(); local
361 if (table != null) {
362 table.setFont(font);
368 Table table = mDefaultFilter.getTable(); local
369 if (table != null) {
370 table.setFont(font);
718 // get the current table and its selectio
805 Table table = filter.getTable(); local
1573 Table table = mCurrentFilter.getTable(); local
    [all...]
LogFilter.java 28 import org.eclipse.swt.widgets.Table;
62 private Table mTable;
165 * Set the Table ui widget associated with this filter.
167 * @param table The Table object
169 public void setWidgets(TabItem tabItem, Table table) {
170 mTable = table;
182 * Returns the UI table object.
185 public Table getTable()
    [all...]
  /sdk/ddms/app/src/com/android/ddms/
StaticPortConfigDialog.java 34 import org.eclipse.swt.widgets.Table;
68 private Table mPortTable;
144 mPortTable = new Table(main, SWT.SINGLE | SWT.FULL_SELECTION);
268 // create a new item for the table
299 // get the table item by index
350 // we're going to loop on the keys and fill the table.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiFlagAttributeNode.java 43 import org.eclipse.swt.widgets.Table;
79 * parent uses a table layout with 2 columns.
189 private Table mTable;
232 mTable = new Table(composite, SWT.CHECK | SWT.BORDER);
263 // table already checked.
278 // Add a listener that will resize the column to the full width of the table
279 // so that only one column appears in the table even if the dialog is resized.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 44 import org.eclipse.swt.widgets.Table;
59 private Table mTable;
73 * Internal struct to store library info in the table item.
129 mTable = new Table(mTop, SWT.BORDER | SWT.FULL_SELECTION | SWT.SINGLE);
348 private void adjustColumnsWidth(final Table table,
351 // Add a listener to resize the column to the full width of the table
352 table.addControlListener(new ControlAdapter() {
355 Rectangle r = table.getClientArea();
  /external/webkit/WebCore/bindings/v8/
DOMDataStore.h 248 typedef ChunkedTable<v8::Persistent<v8::Object>, numberOfEntries, ChunkedTableTraits> Table;
249 Table m_table;
  /external/opencore/fileformats/mp4/parser/src/
assetinfoatoms.cpp 384 addnlclassificationInfo += _STRLIT_WCHAR(";classification-table=");
385 char Table[4];
386 oscl_memset(Table, 0, 4);
387 oscl_snprintf(Table, 4, _STRLIT_CHAR("%d"), _classificationTable);
389 oscl_UTF8ToUnicode(Table, 4, wTable, 5);
  /external/v8/src/
stub-cache.h 40 // The design of the table uses the inline cache stubs used for
195 // Clear the lookup table (@ mark compact collection).
201 // Generate code for probing the stub cache table.
210 enum Table {
263 static Entry* entry(Entry* table, int offset) {
266 reinterpret_cast<Address>(table) + (offset << shift_amount));
273 static SCTableReference keyReference(StubCache::Table table) {
275 reinterpret_cast<Address>(&first_entry(table)->key));
279 static SCTableReference valueReference(StubCache::Table table)
    [all...]

Completed in 1873 milliseconds

1 2 3