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

1 2 3 4 56 7 8 91011>>

  /external/sfntly/cpp/src/sfntly/table/core/
horizontal_device_metrics_table.cc 17 #include "sfntly/table/core/horizontal_device_metrics_table.h"
76 : Table(header, data), num_glyphs_(num_glyphs) {
96 FontDataTablePtr table = new HorizontalDeviceMetricsTable(header(), data, local
98 return table.Detach();
109 HorizontalDeviceMetricsTable* table = local
111 if (table) {
112 table->num_glyphs_ = num_glyphs;
horizontal_metrics_table.cc 17 #include "sfntly/table/core/horizontal_metrics_table.h"
88 : Table(header, data),
108 FontDataTablePtr table = local
110 return table.Detach();
125 HorizontalMetricsTable* table = local
127 table->num_hmetrics_ = num_hmetrics;
133 HorizontalMetricsTable* table = local
135 table->num_glyphs_ = num_glyphs;
  /external/sfntly/cpp/src/sfntly/tools/subsetter/
subsetter.cc 30 // TODO(arthurhsu): IMPLEMENT: CMap table subsetter
86 Table* table = font_->GetTable(*tag); local
87 if (table) {
88 font_builder->NewTableBuilder(*tag, table->ReadFontData());
  /hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/
OMXSceneModeTables.h 44 const SceneModesEntry* Table;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 45 import org.eclipse.swt.widgets.Table;
60 private Table mTable;
83 * Internal struct to store library info in the table item.
141 mTable = new Table(mTop, SWT.BORDER | SWT.FULL_SELECTION | SWT.SINGLE);
360 private void adjustColumnsWidth(final Table table,
363 // Add a listener to resize the column to the full width of the table
364 table.addControlListener(new ControlAdapter() {
367 Rectangle r = table.getClientArea();
  /external/chromium_org/third_party/sqlite/src/src/
build.c 16 ** CREATE TABLE
17 ** DROP TABLE
45 int iDb; /* The database containing the table to be locked */
46 int iTab; /* The root page of the table to be locked */
48 const char *zName; /* Name of the table */
52 ** Record the fact that we want to lock a table at run-time.
54 ** The table to be locked has root page iTab and is found in database iDb.
63 int iDb, /* Index of the database containing the table to lock */
64 int iTab, /* Root page number of the table to be locked */
66 const char *zName /* Name of the table to be locked *
    [all...]
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/chrome/browser/resources/file_manager/foreground/js/
file_table.js 15 * @param {Array.<cr.ui.table.TableColumn>} tableColumns Table columns.
16 * @extends {cr.ui.table.TableColumnModel}
20 cr.ui.table.TableColumnModel.call(this, tableColumns);
35 cr.ui.table.TableColumnModel.prototype;
118 * Sets the width of column with keeping the total width of table.
197 * File list Table View.
205 * Inherits from cr.ui.Table.
207 FileTable.prototype.__proto__ = cr.ui.Table.prototype;
211 * @param {HTMLElement} self Table to decorate
    [all...]
  /art/runtime/
reference_table.cc 143 os << name_ << " reference table dump:\n";
147 void ReferenceTable::Dump(std::ostream& os, const Table& entries) {
195 // Make a copy of the table and sort it.
196 Table sorted_entries(entries.begin(), entries.end());
210 // Dump a summary of the whole table.
oat_file.cc 329 Table::const_iterator it = oat_dex_files_.find(dex_location);
342 for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) {
353 for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) {
  /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/test/SemaCXX/
cxx98-compat.cpp 303 void *Table[] = {&&DirectJump, &&Later};
304 goto *Table[n]; // expected-warning {{indirect goto might cross protected scopes in C++98}}
  /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/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
  /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/WebKit/Source/devtools/front_end/
ConsoleModel.js 253 Table: "table",
  /external/clang/docs/
Makefile 91 $(Echo) Making User LOC Table

Completed in 1264 milliseconds

1 2 3 4 56 7 8 91011>>