HomeSort by relevance Sort by last modified time
    Searched refs:Table (Results 201 - 225 of 298) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 303 * Branch offsets and the exception table are also updated.
325 * Branch offsets and the exception table are also updated.
350 * Branch offsets and the exception table are also updated.
376 * Branch offsets and the exception table are also updated.
398 * Branch offsets and the exception table are also updated.
423 * Branch offsets and the exception table are also updated.
470 * Branch offsets and the exception table are also updated.
487 * Branch offsets and the exception table are also updated.
509 * Branch offsets and the exception table are also updated.
526 * Branch offsets and the exception table are also updated
711 ExceptionTable table = codeAttr.getExceptionTable(); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
pred_lt4_1_opt.s 47 ADRL r8, Table
455 Table:
456 .word inter4_2-Table
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java 90 import org.eclipse.swt.widgets.Table;
258 // first column is the first table
259 final Table fullTable = new Table(this, SWT.SINGLE | SWT.FULL_SELECTION | SWT.BORDER);
359 // 3rd column is the selected config table
360 final Table selectionTable = new Table(this, SWT.SINGLE | SWT.FULL_SELECTION | SWT.BORDER);
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 84 // 1. A operand match table is built, each entry contains a mnemonic, an
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.cpp 315 for (Table::iterator iter = m_table.begin(); iter != m_table.end(); ++iter) {
794 // Clearing the whole suffix table lets us be more tolerant of bad data.
  /external/chromium_org/third_party/sqlite/src/src/
vdbeblob.c 29 int iCol; /* Table column this handle is open on */
111 const char *zTable, /* The table containing the blob */
121 ** db/table/row entry. The reason for using a vdbe program instead
155 Table *pTab;
179 sqlite3ErrorMsg(pParse, "cannot open virtual table: %s", zTable);
271 /* Make sure a mutex is held on the table to be accessed */
291 ** think that the table has one more column than it really
428 ** database table.
resolve.c 15 ** table and column.
109 ** pExpr->iTable Set to the cursor number for the table obtained
111 ** pExpr->pTab Points to the Table structure of X.Y (even if
113 ** pExpr->iColumn Set to the column number within the table.
120 ** can be used. The zTable variable is the name of the table (the "Y"). This
122 ** means that the form of the name is Z and that columns from any table
130 const char *zDb, /* Name of the database containing table, or NULL */
131 const char *zTab, /* Name of table containing column, or NULL */
138 int cntTab = 0; /* Number of matching table names */
162 Table *pTab
    [all...]
where.c 14 ** generating the code that loops through a table looking for applicable
133 WhereMaskSet *pMaskSet; /* Mapping of table cursor numbers to bitmasks */
134 Bitmask vmask; /* Bitmask identifying virtual table cursors */
231 ** But if the table is the right table of a left join, WhereLevel.wsFlags
234 ** ISNULL constraints will then not be used on the right table of a left
244 #define WHERE_NOT_FULLSCAN 0x100f3000 /* Does not do a full table scan */
249 #define WHERE_IDX_ONLY 0x00800000 /* Use index only - omit table */
253 #define WHERE_VIRTUALTABLE 0x08000000 /* Use virtual-table processing */
263 WhereMaskSet *pMaskSet /* Mapping from table cursor numbers to bitmasks *
    [all...]
expr.c 28 ** CREATE TABLE t1(a);
898 Table *pTab;
    [all...]
prepare.c 48 ** argv[1] = root page number for table or index. 0 for trigger or view.
71 /* Call the parser to process a CREATE TABLE, INDEX or VIEW.
74 ** structures that describe the table, index, or view.
106 ** constraint for a CREATE TABLE. The index should have already
107 ** been created when we processed the CREATE TABLE. All we have
113 /* This can occur if there exists an index on a TEMP table which
115 ** the permanent table is hidden by the TEMP table, we can also
116 ** safely ignore the index on the permanent table.
138 Table *pTab
    [all...]
  /art/runtime/
class_linker.h 353 // Attempts to insert a class into a class table. Returns NULL if
534 typedef std::multimap<size_t, mirror::Class*> Table;
535 Table class_table_ GUARDED_BY(Locks::classlinker_classes_lock_);
  /external/chromium_org/third_party/leveldatabase/src/table/
table_test.cc 5 #include "leveldb/table.h"
16 #include "table/block.h"
17 #include "table/block_builder.h"
18 #include "table/format.h"
140 // BlockBuilder/TableBuilder and Block/Table.
246 // Open the table
250 return Table::Open(table_options, source_, sink.contents().size(), &table_);
270 Table* table_;
647 // Test empty table/block.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
AddTranslationDialog.java 76 import org.eclipse.swt.widgets.Table;
110 private Table mTable;
211 /** Populates the table with keys and default strings */
NewXmlFileCreationPage.java 77 import org.eclipse.swt.widgets.Table;
406 private Table mRootTable;
    [all...]
  /system/media/camera/docs/
html.mako 38 /* table column sizes */
39 table { border-collapse:collapse; table-layout: fixed; width: 100%; word-wrap: break-word }
130 <h2>Table of Contents</h2>
154 <table class="properties">
319 </table>
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 528 this.emptyDataModel_ = new cr.ui.table.TableDataModel([]);
530 this.dataModel_ = new cr.ui.table.TableDataModel([]);
539 this.selectionModelClass_ = cr.ui.table.TableSingleSelectionModel;
541 this.selectionModelClass_ = cr.ui.table.TableSelectionModel;
650 * Initialize the file list table.
656 new cr.ui.table.TableColumn('cachedIconType_', '',
658 new cr.ui.table.TableColumn('name', str('NAME_COLUMN_LABEL'),
660 new cr.ui.table.TableColumn('cachedSize_',
662 new cr.ui.table.TableColumn('cachedMtime_',
671 this.table_ = this.dialogDom_.querySelector('.detail-table');
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 100 ** limits the size of a row in a table or index.
112 ** * Columns in a table
122 ** not have more than a dozen or so columns in any table. And if
184 ** table and for temporary tables. The SQLITE_DEFAULT_CACHE_SIZE
321 ** construct a histogram of the table content when running ANALYZE
10661 char *table; \/* The table or view to which the trigger applies *\/ member in struct:Trigger
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 100 ** limits the size of a row in a table or index.
112 ** * Columns in a table
122 ** not have more than a dozen or so columns in any table. And if
184 ** table and for temporary tables. The SQLITE_DEFAULT_CACHE_SIZE
11217 char *table; \/* The table or view to which the trigger applies *\/ member in struct:Trigger
    [all...]
  /external/sqlite/dist/
sqlite3.c 100 ** limits the size of a row in a table or index.
112 ** * Columns in a table
122 ** not have more than a dozen or so columns in any table. And if
184 ** table and for temporary tables. The SQLITE_DEFAULT_CACHE_SIZE
11217 char *table; \/* The table or view to which the trigger applies *\/ member in struct:Trigger
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.h 520 virtual SDValue getPICJumpTableRelocBase(SDValue Table,
    [all...]
  /external/oprofile/events/x86-64/family10/
unit_masks 86 0x01 DCT0 Page Table Overflow
87 0x02 DCT1 Page Table Overflow
122 0x04 TLB fill (page table walks)
129 0x04 TLB page table walk
132 0x01 L2 fills (victims from L1 caches, TLB page table walks and data prefetches)
138 0x08 GART/DEV request hit table walk in progress
142 0x80 GART/DEV multiple table walk in progress
  /external/chromium_org/native_client_sdk/src/doc/devguide/devcycle/
vs-addin.rst 5 .. contents:: Table Of Contents
  /external/opencv/cv/src/
cvpyramids.cpp     [all...]
  /external/oprofile/events/x86-64/family11h/
events 116 event:0xe1 counters:0,1,2,3 um:dramcontroller minimum:500 name:DRAM_CONTROLLER_PAGE_TABLE_EVENTS : DRAM Controller Page Table Events
unit_masks 84 0x01 DCT Page Table Overflow
85 0x02 Number of stale table entry hits (hit on a page closed too soon)
86 0x04 Page table idle cycle limit incremented
87 0x08 Page table idle cycle limit decremented
116 0x04 TLB fill (page table walk)
122 0x04 TLB page table walk
124 0x01 L2 fills (victims from L1 caches, TLB page table walks and data prefetches)

Completed in 1832 milliseconds

1 2 3 4 5 6 7 891011>>