HomeSort by relevance Sort by last modified time
    Searched refs:Table (Results 151 - 175 of 364) sorted by null

1 2 3 4 5 67 8 91011>>

  /art/runtime/
reference_table.cc 147 os << name_ << " reference table dump:\n";
151 void ReferenceTable::Dump(std::ostream& os, Table& entries) {
199 // Make a copy of the table and sort it.
200 Table sorted_entries;
219 // Dump a summary of the whole table.
  /external/chromium_org/chrome/browser/resources/predictors/
autocomplete_action_predictor.js 20 console.debug('Updating Table NAP DB');
32 * Updates the table from the database.
  /external/chromium_org/third_party/leveldatabase/src/db/
leveldb_main.cc 15 #include "leveldb/table.h"
127 Table* table = NULL; local
135 // problems since we only use Table operations that do not require
137 s = Table::Open(Options(), file, file_size, &table);
141 delete table;
148 Iterator* iter = table->NewIterator(ro);
179 delete table;
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 69 /// table.
303 IdentifierIndexTable &Table
305 IdentifierIndexTable::iterator Known = Table.find(Name);
306 if (Known == Table.end()) {
617 // Handle the identifier table
621 std::unique_ptr<InterestingIdentifierTable> Table(
626 for (InterestingIdentifierTable::data_iterator D = Table->data_begin(),
627 DEnd = Table->data_end();
646 /// table.
730 // Populate the hash table
    [all...]
  /external/clang/test/SemaCXX/
cxx98-compat.cpp 293 void *Table[] = {&&DirectJump, &&Later};
294 goto *Table[n]; // expected-warning {{indirect goto might cross protected scopes in C++98}}
  /external/llvm/lib/MC/
SubtargetFeature.cpp 102 /// getLongestEntryLength - Return the length of the longest entry in the table.
104 static size_t getLongestEntryLength(ArrayRef<SubtargetFeatureKV> Table) {
106 for (auto &I : Table)
119 // Print the CPU table.
125 // Print the Feature table.
187 // Find feature in table.
226 "CPU table is not sorted");
230 "CPU features table is not sorted");
266 // Find feature in table.
  /external/lzma/CS/7zip/Compress/LZ/
LzBinTree.cs 141 UInt32 temp = CRC.Table[_bufferBase[cur]] ^ _bufferBase[cur + 1];
145 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask;
276 UInt32 temp = CRC.Table[_bufferBase[cur]] ^ _bufferBase[cur + 1];
282 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
FlagXmlPropertyDialog.java 38 import org.eclipse.swt.widgets.Table;
54 private Table mTable;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SampleSelectionPage.java 44 import org.eclipse.swt.widgets.Table;
54 private Table mTable;
  /external/chromium_org/third_party/skia/third_party/lua/src/
lobject.h 257 /* from table to same table */
259 /* to table */
435 struct Table *metatable;
436 struct Table *env;
560 typedef struct Table {
564 struct Table *metatable;
570 } Table;
lgc.c 98 ** link table 'h' into list pointed by 'p'
105 ** from the table)
116 ** table. Non-collectable objects are never removed from weak
253 Table *mt = gco2u(o)->metatable;
355 static void traverseweakvalue (global_State *g, Table *h) {
368 hasclears = 1; /* table will have to be cleared */
378 static int traverseephemeron (global_State *g, Table *h) {
380 int hasclears = 0; /* true if table has white keys */
381 int prop = 0; /* true if table has entry "white-key -> white-value" */
397 hasclears = 1; /* table must be cleared *
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CComboBox.java 49 import org.eclipse.swt.widgets.Table;
55 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
175 Table table = m_table.getTable();
176 int index = table.getSelectionIndex() - 1;
177 table.setSelection(index < 0 ? table.getItemCount() - 1 : index);
187 Table table = m_table.getTable();
188 int index = table.getSelectionIndex() + 1
    [all...]
CCombo3.java 14 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
28 import org.eclipse.swt.widgets.Table;
45 private final Table m_table;
82 // create table for items
84 m_table = new Table(m_popup, SWT.FULL_SELECTION);
354 // set popup bounds calculated as computeTrim basing on combo width and table height paying attention on remaining display space
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsps2.c 108 /Table [ p p p [<...>]]
464 // Outputs a table of words. It does use 16 bits
467 void Emit1Gamma(cmsIOHANDLER* m, cmsToneCurve* Table)
472 if (Table == NULL) return; // Error
474 if (Table ->nEntries <= 0) return; // Empty table
477 if (cmsIsToneCurveLinear(Table)) return;
480 gamma = cmsEstimateGamma(Table, 0.001);
498 for (i=0; i < Table->nEntries; i++) {
499 _cmsIOPrintf(m, "%d ", Table->Table16[i])
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceOptionsDialogV2.java 36 import org.eclipse.swt.widgets.Table;
67 private Table mTable;
157 mTable = new Table(c, SWT.CHECK | SWT.BORDER);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
FrameSummaryViewPage.java 50 import org.eclipse.swt.widgets.Table;
160 final Table table = new Table(c, SWT.BORDER | SWT.FULL_SELECTION); local
161 GridDataFactory.fillDefaults().grab(true, true).span(2, 1).applyTo(table);
163 table.setLinesVisible(true);
164 table.setHeaderVisible(true);
166 mStatsTableViewer = new TableViewer(table);
170 // when a column is selected, sort the table based on that column
179 table.setSortColumn(tc)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/
StaticPortConfigDialog.java 35 import org.eclipse.swt.widgets.Table;
69 private Table mPortTable;
146 mPortTable = new Table(main, SWT.SINGLE | SWT.FULL_SELECTION);
270 // create a new item for the table
301 // get the table item by index
352 // we're going to loop on the keys and fill the table.
  /external/chromium_org/third_party/sqlite/src/src/
auth.c 59 ** the table and the column that are being accessed. The auth function
94 ** table zTab in database zDb. This function assumes that an authorization
103 const char *zTab, /* Table name */
126 ** The pExpr should be a TK_COLUMN expression. The table referred to
127 ** is in pTabList or else it is the NEW or OLD table of a trigger.
138 SrcList *pTabList /* All table that pExpr might refer to */
141 Table *pTab = 0; /* The table being read */
142 const char *zCol; /* Name of the column of the table */
143 int iSrc; /* Index in pTabList->a[] of table being read *
    [all...]
status.c 188 sqlite3DeleteTable(db, (Table *)sqliteHashData(p));
update.c 21 SrcList *pSrc, /* The virtual table to be modified */
22 Table *pTab, /* The virtual table */
32 ** i-th column of table pTab. This routine sets the P4 parameter of the
36 ** column definition. This was either supplied by the user when the table
37 ** was created, or added later to the table definition by an ALTER TABLE
38 ** command. If the latter, then the row-records in the table btree on disk
44 ** Column definitions created by an ALTER TABLE command may only have
47 ** when the ALTER TABLE is executed and one of the literal values writte
    [all...]
  /external/chromium_org/v8/src/ic/x64/
stub-cache-x64.cc 20 StubCache::Table table, Register receiver, Register name,
34 ExternalReference key_offset(isolate->stub_cache()->key_reference(table));
35 ExternalReference value_offset(isolate->stub_cache()->value_reference(table));
68 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) {
70 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) {
125 // Probe the primary table.
138 // Probe the secondary table.
  /external/clang/docs/
Makefile 96 $(Echo) Making User LOC Table
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ConfigTab.java 35 import org.eclipse.swt.widgets.Table;
65 Table table; field in class:ConfigTab
104 * @param fullSelection Tells whether the table should have a full line selection or not
112 // Remove old table is present
113 boolean initResources = this.table == null;
114 if (this.table != null) {
121 // Create the "children" table
124 this.table = new Table(tabFolder, style)
    [all...]
  /external/llvm/include/llvm/Object/
COFF.h 255 // VirtualAddress field of the first relocation table entry.
476 // The iterator for the import directory table.
480 ImportDirectoryEntryRef(const import_directory_table_entry *Table, uint32_t I,
482 : ImportTable(Table), Index(I), OwningObject(Owner) {}
500 // The iterator for the export directory table entry.
504 ExportDirectoryEntryRef(const export_directory_table_entry *Table, uint32_t I,
506 : ExportTable(Table), Index(I), OwningObject(Owner) {}
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.cpp 158 const GIFColorMap::Table& colorTable = frameContext->localColorMap().isDefined() ? frameContext->localColorMap().table() : m_reader->globalColorMap().table();
163 GIFColorMap::Table::const_iterator colorTableIter = colorTable.begin();

Completed in 872 milliseconds

1 2 3 4 5 67 8 91011>>