HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 401 - 425 of 553) sorted by null

<<11121314151617181920>>

  /external/bison/src/
scan-gram.c 3620 static signed char const table[] = local
    [all...]
  /external/freetype/include/freetype/internal/
tttypes.h 55 /* TrueType collection header. This table contains the offsets of */
118 /* This structure describes a given table of a TrueType font. */
121 /* Tag :: A four-bytes tag describing the table. */
123 /* CheckSum :: The table checksum. This value can be ignored. */
125 /* Offset :: The offset of the table from the start of the TrueType */
128 /* Length :: The table length (in bytes). */
132 FT_ULong Tag; /* table type */
133 FT_ULong CheckSum; /* table checksum */
134 FT_ULong Offset; /* table file offset */
135 FT_ULong Length; /* table length *
902 FT_Byte* table; member in struct:TT_BDFRec_
    [all...]
  /external/javassist/src/main/javassist/
CtClassType.java 1619 HashMap table = new HashMap(); local
    [all...]
  /external/libxml2/
tree.c 154 * Do an entity lookup in the DTD entity hash table and
161 xmlEntitiesTablePtr table; local
164 table = (xmlEntitiesTablePtr) dtd->entities;
165 return((xmlEntityPtr) xmlHashLookup(table, name));
166 /* return(xmlGetEntityFromTable(table, name)); */
175 * Do an entity lookup in the DTD pararmeter entity hash table and
182 xmlEntitiesTablePtr table; local
185 table = (xmlEntitiesTablePtr) dtd->pentities;
186 return((xmlEntityPtr) xmlHashLookup(table, name));
187 /* return(xmlGetEntityFromTable(table, name)); *
    [all...]
xmlreader.c 242 * Remove the given attribute from the ID table maintained internally.
248 xmlIDTablePtr table; local
254 table = (xmlIDTablePtr) doc->ids;
255 if (table == NULL)
261 id = xmlHashLookup(table, ID);
480 * @table: An id table
482 * Deallocate the memory used by an ID hash table.
485 xmlTextReaderFreeIDTable(xmlIDTablePtr table) {
486 xmlHashFree(table, (xmlHashDeallocator) xmlFreeID)
    [all...]
xmlregexp.c 467 * 3/ build a table state x atom for the transitions
551 * Allocate the transition table. The first entry for each
6320 xmlExpNodePtr *table; member in struct:_xmlExpCtxt
    [all...]
  /external/skia/legacy/src/ports/
SkFontHost_mac_coretext.cpp 823 * There are two versions of this table, the short and the long. The version
824 * used is specified in the Font Header ('head') table in the indexToLocFormat
831 * The result is a offset into a table of 2 byte (16 bit) entries.
871 * The table is computed only if the font is a TrueType font, if the glyph
1105 const uint8_t* table = getInverseTable(isWhite); local
    [all...]
  /external/valgrind/main/callgrind/
global.h 251 * For fast lookup, JCCs are reachable with a hash table, keyed by
253 * of one hash table entry.
421 * and a index into the dump boolean table and fn_info_table
538 BB** table; member in struct:_bb_hash
544 Context** table; member in struct:_cxt_hash
554 BBCC** table; member in struct:_bbcc_hash
560 jCC** table; member in struct:_jcc_hash
  /external/webkit/Source/WebCore/rendering/
RenderObject.cpp 148 case TABLE:
307 RenderTable* table; local
310 table = toRenderTable(afterChild);
312 table = new (renderArena()) RenderTable(document() /* is anonymous */);
315 newStyle->setDisplay(TABLE);
316 table->setStyle(newStyle.release());
317 addChild(table, beforeChild);
319 table->addChild(newChild);
617 return cell->table();
    [all...]
RenderBlock.cpp 96 // we're positioned, floating, a table cell.
571 // to wrap itself in additional boxes (e.g., table construction).
643 // to wrap itself in additional boxes (e.g., table construction).
722 // Insert into the anonymous table.
727 // Go on to insert before the anonymous table.
2686 ContinuationOutlineTableMap* table = continuationOutlineTable(); local
2698 ContinuationOutlineTableMap* table = continuationOutlineTable(); local
2711 ContinuationOutlineTableMap* table = continuationOutlineTable(); local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.h 836 const int32_t *table, *indirect;
843 table = (const int32_t *) _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
835 const int32_t *table, *indirect; local
regexec.c 3893 const int32_t *table, *indirect; local
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 381 static final String qualifyColumn(String table, String column) {
382 return table + "." + column + " AS " + column;
402 db.execSQL("CREATE TABLE " + TABLE_BOOKMARKS + "(" +
427 db.execSQL("CREATE TABLE " + TABLE_HISTORY + "(" +
437 db.execSQL("CREATE TABLE " + TABLE_IMAGES + " (" +
446 db.execSQL("CREATE TABLE " + TABLE_SEARCHES + " (" +
452 db.execSQL("CREATE TABLE " + TABLE_SETTINGS + " (" +
475 db.execSQL("CREATE TABLE IF NOT EXISTS " + TABLE_THUMBNAILS + " (" +
517 String table = BrowserProvider.TABLE_NAMES[BrowserProvider.URI_MATCH_BOOKMARKS]; local
519 c = oldDb.query(table,
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java 275 * Note that this isn't relevant for table creation strings, since they are used only once
303 // Email URI matching table
448 * delete from <table> where <column> not in (select <foreignColumn> from <foreignTable>)
450 * @param table the table whose orphans are to be removed
452 * @param foreignColumn the column in the foreign table whose absence will trigger the deletion
453 * @param foreignTable the foreign table
456 void deleteUnlinked(SQLiteDatabase db, String table, String column, String foreignColumn,
458 int count = db.delete(table, column + " not in (select " + foreignColumn + " from " +
461 Log.w(TAG, "Found " + count + " orphaned row(s) in " + table);
699 int table = match >> BASE_SHIFT; local
916 int table = match >> BASE_SHIFT; local
1095 int table = match >> BASE_SHIFT; local
1459 int table = match >> BASE_SHIFT; local
1743 int table = match >> BASE_SHIFT; local
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 122 import javax.swing.table.DefaultTableModel;
672 public static void setVisibleRowCount(JTable table, int rows) {
675 height += table.getRowHeight(row);
678 Dimension size = new Dimension(table.getPreferredScrollableViewportSize().width, height);
679 table.setPreferredScrollableViewportSize(size);
680 table.revalidate();
    [all...]
  /external/chromium/third_party/libevent/
evdns.c 1637 struct dnslabel_table table; local
    [all...]
  /external/opencv/cxcore/src/
cxpersistence.cpp 78 void** table; member in struct:CvGenericHash
216 start_tab_size *= sizeof(map->table[0]);
217 CV_CALL( map->table = (void**)cvMemStorageAlloc( storage, start_tab_size ));
218 memset( map->table, 0, start_tab_size );
452 for( node = (CvStringHashNode*)(map->table[i]); node != 0; node = node->next )
465 node->next = (CvStringHashNode*)(map->table[i]);
466 map->table[i] = node;
529 for( another = (CvFileMapNode*)(map->table[i]); another != 0; another = another->next )
545 node->next = (CvFileMapNode*)(map->table[i]);
546 map->table[i] = node
    [all...]
  /external/v8/src/
jsregexp.h 1371 DispatchTable* table() { return table_; } function in class:v8::internal::DispatchTableConstructor
    [all...]
mark-compact.cc 1171 ObjectHashTable* table = ObjectHashTable::cast(weak_map->table()); local
2592 ObjectHashTable* table = ObjectHashTable::cast(weak_map->table()); local
2613 ObjectHashTable* table = ObjectHashTable::cast(weak_map->table()); local
    [all...]
jsregexp.cc 4177 DispatchTable table; local
    [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios32.c 35 /* if true, put the MP float table and ACPI RSDT in EBDA and the MP
36 table in RAM. Unfortunately, Linux has bugs with that, so we prefer
1065 /* Multi Processor table init */
1132 putle16(&q, 0); /* table length (patched later) */
1141 putle32(&q, 0); /* OEM table ptr */
1142 putle16(&q, 0); /* OEM table size */
1145 putle16(&q, 0); /* ext table length */
1146 putb(&q, 0); /* ext table checksum */
1227 /* pointer to MP config table */
1246 BX_INFO("MP table addr=0x%08lx MPC table addr=0x%08lx size=0x%x\n"
2512 struct smbios_table table; local
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readpdb.c 125 unsigned short e_lfarlc; /* 18: File address of relocation table */
458 unsigned short table[ 1 ]; member in struct:_PDB_SYMBOL_SOURCE
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 244 // entries for that storage from the files table.
2119 int table = URI_MATCHER.match(uri); local
3668 public String table; field in class:MediaProvider.GetTableAndWhereOutParameter
    [all...]
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 

Completed in 1686 milliseconds

<<11121314151617181920>>