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

1 2 3 4 5

  /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
task_manager_mac.h 52 // Refreshes all data in the task manager table.
61 // Callback for double clicks on the table.
71 public TableRowNSImageCache::Table {
86 // TableRowNSImageCache::Table
  /frameworks/base/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;
  /external/clang/lib/Basic/
Builtins.cpp 49 void Builtin::Context::InitializeBuiltins(IdentifierTable &Table,
56 Table.get(BuiltinInfo[i].Name).setBuiltinID(i);
62 Table.get(TSRecords[i].Name).setBuiltinID(i+Builtin::FirstTSBuiltin);
79 void Builtin::Context::ForgetBuiltin(unsigned ID, IdentifierTable &Table) {
80 Table.get(GetRecord(ID).Name).setBuiltinID(0);
IdentifierTable.cpp 1 //===--- IdentifierTable.cpp - Hash table for identifier lookup -----------===//
74 // Populate the identifier table with info about keywords for the current
112 const LangOptions &LangOpts, IdentifierTable &Table) {
133 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
142 IdentifierTable &Table) {
143 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
151 IdentifierTable &Table) {
152 Table.get(Name).setObjCKeywordID(ObjCID);
155 /// AddKeywords - Add all keywords to the symbol table.
236 /// PrintStats - Print statistics about how well the identifier table is doin
    [all...]
  /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
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Entry.java 37 public @interface Table {
  /external/llvm/include/llvm/MC/
SubtargetFeature.h 100 const SubtargetInfoKV *Table, size_t TableSize);
  /frameworks/base/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/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.
  /external/clang/include/clang/Basic/
Builtins.h 73 void InitializeBuiltins(IdentifierTable &Table, const LangOptions& LangOpts);
131 void ForgetBuiltin(unsigned ID, IdentifierTable &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
167 * The listener will be called <em>after</em> this table processed its selection
244 private void adjustColumnsWidth(final Table table,
    [all...]
  /external/llvm/lib/MC/
SubtargetFeature.cpp 137 /// getLongestEntryLength - Return the length of the longest entry in the table.
139 static size_t getLongestEntryLength(const SubtargetFeatureKV *Table,
143 MaxLen = std::max(MaxLen, std::strlen(Table[i].Key));
155 // Print the CPU table.
162 // Print the Feature table.
232 // Find feature in table.
271 "CPU table is not sorted");
275 "CPU features table is not sorted");
313 // Find feature in table.
342 const SubtargetInfoKV *Table,
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadEntry.java 22 @Entry.Table("download")
  /external/openssl/crypto/sha/asm/
sha512-s390x.pl 80 $Table="K${label}";
147 .type $Table,\@object
148 $Table:
211 .size $Table,.-$Table
246 larl $tbl,$Table
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogPanel.java 59 import org.eclipse.swt.widgets.Table;
364 Table table = f.getTable(); local
365 if (table != null) {
366 table.setFont(font);
372 Table table = mDefaultFilter.getTable(); local
373 if (table != null) {
374 table.setFont(font);
720 // get the current table and its selectio
807 Table table = filter.getTable(); local
1589 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...]
  /external/llvm/lib/VMCore/
Function.cpp 189 // Delete all of the method arguments and unlink from symbol table...
193 // Remove the function from the on-the-side GC table.
256 // Maintain the GC name for each function in an on-the-side table. This saves
339 static const char * const Table[] = {
346 return Table[id];
347 std::string Result(Table[id]);
  /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.
  /hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/
OMXSceneModeTables.h 44 const SceneModesEntry* Table;

Completed in 399 milliseconds

1 2 3 4 5