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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
maximum_profile_table.cc 17 #include "sfntly/table/core/maximum_profile_table.h"
83 : Table(header, data) {
101 FontDataTablePtr table = new MaximumProfileTable(header(), data); local
102 return table.Detach();
os2_table.h 21 #include "sfntly/table/table.h"
22 #include "sfntly/table/table_based_table_builder.h"
312 // An OS/2 table - 'OS/2'.
313 class OS2Table : public Table, public RefCounted<OS2Table> {
315 // A builder for the OS/2 table = 'OS/2'.
  /external/guava/guava-tests/test/com/google/common/collect/
RegularImmutableTableTest.java 23 import com.google.common.collect.Table.Cell;
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 625 /* Offset to a table, same as uint16 (length = 16 bits), Null offset = 0x0000 */
633 /* LongOffset to a table, same as uint32 (length = 32 bits), Null offset = 0x00000000 */
645 static uint32_t CalcTableChecksum (ULONG *Table, uint32_t Length)
648 ULONG *EndPtr = Table+((Length+3) & ~3) / ULONG::static_size;
650 while (Table < EndPtr)
651 Sum += *Table++;
  /external/llvm/docs/
Makefile 95 $(Echo) Making User LOC Table
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.c 49 struct _glxapi_table *Table;
103 prevTable = d->Table;
104 return d->Table; /* done! */
121 d->Table = t;
144 #define GET_DISPATCH(DPY, TABLE) \
146 TABLE = prevTable; \
149 TABLE = NULL; \
152 TABLE = get_dispatch(DPY); \
1191 * Return size of the GLX dispatch table, in entries, not bytes.
1208 * Initialize all functions in given dispatch table to be no-op
    [all...]
  /external/opencv/cxcore/include/
cxmisc.h 95 /* initial hash table size */
98 /* maximal average node_count/hash_size ratio beyond which hash table is resized */
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
font_header_table.cc 17 #include "sfntly/table/core/font_header_table.h"
94 : Table(header, data) {
117 FontDataTablePtr table = new FontHeaderTable(header(), data); local
118 return table.Detach();
horizontal_header_table.cc 17 #include "sfntly/table/core/horizontal_header_table.h"
79 : Table(header, data) {
97 FontDataTablePtr table = new HorizontalHeaderTable(header(), data); local
98 return table.Detach();
maximum_profile_table.cc 17 #include "sfntly/table/core/maximum_profile_table.h"
83 : Table(header, data) {
101 FontDataTablePtr table = new MaximumProfileTable(header(), data); local
102 return table.Detach();
os2_table.h 21 #include "sfntly/table/table.h"
22 #include "sfntly/table/table_based_table_builder.h"
312 // An OS/2 table - 'OS/2'.
313 class OS2Table : public Table, public RefCounted<OS2Table> {
315 // A builder for the OS/2 table = 'OS/2'.
  /hardware/ti/omap4xxx/camera/inc/
General3A_Settings.h 46 const userToOMX_LUT *Table;
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp 570 // Efficient Lookup Table Support
589 static bool TableIsSorted(const TableEntry *Table, unsigned NumEntries) {
591 if (!(Table[i] < Table[i+1])) return false;
596 static int Lookup(const TableEntry *Table, unsigned N, unsigned Opcode) {
597 const TableEntry *I = std::lower_bound(Table, Table+N, Opcode);
598 if (I != Table+N && I->from == Opcode)
604 #define ASSERT_SORTED(TABLE)
606 #define ASSERT_SORTED(TABLE) \
    [all...]
  /external/guava/guava/src/com/google/common/collect/
StandardTable.java 42 * {@link Table} implementation backed by a map that associates row keys with
58 * access this table concurrently and one of the threads modifies the table, it
64 class StandardTable<R, C, V> implements Table<R, C, V>, Serializable {
137 if (obj instanceof Table) {
138 Table<?, ?, ?> other = (Table<?, ?, ?>) obj;
178 Table<? extends R, ? extends C, ? extends V> table) {
179 for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet())
    [all...]
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMX3A.cpp 51 cameraLUT = CameraToSensorModesLUT[i].Table;
57 // 2. Find scene mode entry in table
383 if( 0 == strcmp(LUT.Table[i].userDefinition, HalValue) )
384 return LUT.Table[i].omxDefinition;
393 if( LUT.Table[i].omxDefinition == OMXValue )
394 return LUT.Table[i].userDefinition;
    [all...]
  /external/chromium_org/third_party/mesa/src/docs/OLD/
MESA_packed_depth_stencil.spec 78 One entry is added to table 3.5 (DrawPixels and ReadPixels formats).
79 The new table is:
102 Table 3.5: DrawPixels and ReadPixels formats. The third column
172 described in the table below:
  /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/
ComponentResultsView.java 35 import org.eclipse.swt.widgets.Table;
240 * - change table line selection display
317 * Reset the table tab folders by re-create all the pages.
325 int lineIndex = tabIndex<0 ? -1 : this.tabs[tabIndex].table.getSelectionIndex();
370 Table table = this.tabs[tabIndex].table;
371 table.setSelection(lineIndex);
  /external/mesa3d/docs/OLD/
MESA_packed_depth_stencil.spec 78 One entry is added to table 3.5 (DrawPixels and ReadPixels formats).
79 The new table is:
102 Table 3.5: DrawPixels and ReadPixels formats. The third column
172 described in the table below:
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
EntrySchema.java 51 // Get table and column metadata from reflection.
295 // Wrapped class must have a @Table.Definition.
299 // Add the CREATE TABLE statement for the main table.
300 StringBuilder sql = new StringBuilder("CREATE TABLE ");
349 // Add an FTS virtual table if using full-text search.
351 sql.append("CREATE VIRTUAL TABLE ");
356 // Add the column to the FTS table.
368 // table in sync.
425 StringBuilder sql = new StringBuilder("DROP TABLE IF EXISTS ")
450 Entry.Table table = clazz.getAnnotation(Entry.Table.class); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleWizard.java 45 import org.eclipse.swt.widgets.Table;
78 private Table mTable;
237 // The root data structure, which we set as the table root. The content provider
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ConsoleMessage.cpp 167 case TableMessageType: return TypeBuilder::Console::ConsoleMessage::Type::Table;
209 ScriptValue table = m_arguments->argumentAt(0); local
211 RefPtr<TypeBuilder::Runtime::RemoteObject> inspectorValue = injectedScript.wrapTable(table, columns);
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
viewrtree.tcl 40 WHERE type='table' AND sql LIKE '%virtual%table%using%rtree%'
46 lappend rtree_tables [list Table $name]
50 puts stderr "Cannot find an r-tree table in database [lindex $argv 0]"
  /external/chromium_org/third_party/sqlite/src/src/
callback.c 137 ** Locate and return an entry from the db.aCollSeq hash table. If the entry
141 ** Each pointer stored in the sqlite3.aCollSeq hash table contains an
174 ** to the hash table).
266 FuncDefHash *pHash, /* Hash table to search */
281 ** Insert a new FuncDef into a FuncDefHash hash table.
284 FuncDefHash *pHash, /* The hash table into which to insert */
382 ** new entry to the hash table and return it.
424 Table *pTab = sqliteHashData(pElem);
tokenize.c 503 /* If the pParse->declareVtab flag is set, do not delete any table
505 ** will take responsibility for freeing the Table structure.
519 Table *p = pParse->pZombieTab;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CTableCombo.java 31 import org.eclipse.swt.widgets.Table;
39 * {@link Control} like {@link Combo} or {@link CCombo} that shows {@link Table} with image/text as
50 protected Table m_table;
70 m_table = new Table(m_popup, SWT.FULL_SELECTION);

Completed in 1084 milliseconds

1 2 3 4 5 6 78 91011>>