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

<<11121314151617181920>>

  /external/webkit/Source/WebCore/editing/
markup.cpp 402 ContainerNode* table = commonAncestorBlock->parentNode(); local
403 while (table && !table->hasTagName(tableTag))
404 table = table->parentNode();
406 return table;
    [all...]
  /frameworks/av/media/libstagefright/
FLACExtractor.cpp 574 } table[] = { local
585 for (unsigned i = 0; i < sizeof(table)/sizeof(table[0]); ++i) {
586 if (table[i].mChannels >= getChannels() &&
587 table[i].mBitsPerSample == getBitsPerSample()) {
588 mCopy = table[i].mCopy;
  /ndk/sources/host-tools/make-3.81/
variable.c 104 /* Hash table of all global variable definitions. */
152 hash_init (&global_variable_set.table, VARIABLE_BUCKETS,
178 var_slot = (struct variable **) hash_find_slot (&set->table, &var_key);
209 /* Create a new variable definition and add it to the hash table. */
214 hash_insert_at (&set->table, v, var_slot);
290 && global_variable_set.table.ht_fill != last_var_count)
295 struct variable **vp = (struct variable **) global_variable_set.table.ht_vec;
296 struct variable **end = &vp[global_variable_set.table.ht_size];
330 last_var_count = global_variable_set.table.ht_fill;
358 v = (struct variable *) hash_find_item ((struct hash_table *) &set->table, &var_key)
857 struct hash_table table; local
    [all...]
  /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...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
SmsProvider.java 346 String table = TABLE_SMS; local
384 table = "raw";
388 table = "sr_pending";
392 table = "attachments";
396 table = "canonical_addresses";
406 if (table.equals(TABLE_SMS)) {
491 rowID = db.insert(table, "body", values);
493 // Don't use a trigger for updating the words table because of a bug
496 if (table == TABLE_SMS) {
497 // Update the words table with a corresponding row. The words tabl
610 String table = TABLE_SMS; local
    [all...]
  /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/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...]
  /external/chromium/chrome/browser/
browser_about_handler.cc 383 // Helper function to create an Html table header for a Network.
418 // Helper function to create an Html table row for a Network.
478 output.append("<h3>Ethernet:</h3><table border=1>");
487 output.append("</table><h3>Wifi Networks:</h3><table border=1>");
498 output.append("</table><h3>Cellular Networks:</h3><table border=1>");
510 output.append("</table><h3>Virtual Networks:</h3><table border=1>");
523 "</table><h3>Remembered Wi-Fi Networks:</h3><table border=1>")
686 base::StatsTable* table = base::StatsTable::current(); local
    [all...]
  /external/freetype/src/base/
ftobjs.c 993 /* Since the `interesting' table, with IDs (3,10), is normally the */
3642 void* table = 0; local
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c 64 /* destroy hints table */
66 psh_hint_table_done( PSH_Hint_Table table,
69 FT_FREE( table->zones );
70 table->num_zones = 0;
71 table->zone = 0;
73 FT_FREE( table->sort );
74 FT_FREE( table->hints );
75 table->num_hints = 0;
76 table->max_hints = 0;
77 table->sort_global = 0
1676 PSH_Hint_Table table = &glyph->hint_tables[dimension]; local
1756 PSH_Blue_Table table; local
    [all...]
  /external/freetype/src/sfnt/
ttcmap.c 5 /* TrueType character mapping table (cmap) support (body). */
56 FT_Byte* table )
58 cmap->data = table;
73 /* TABLE OVERVIEW */
79 /* length 2 USHORT table length in bytes */
88 tt_cmap0_validate( FT_Byte* table,
91 FT_Byte* p = table + 2;
95 if ( table + length > valid->limit || length < 262 )
104 p = table + 6;
121 FT_Byte* table = cmap->data local
132 FT_Byte* table = cmap->data; local
429 FT_Byte* table = cmap->data; local
467 FT_Byte* table = cmap->data; local
673 FT_Byte* table = cmap->cmap.data; local
1467 FT_Byte* table = cmap->data; local
1488 FT_Byte* table = cmap->data; local
1711 FT_Byte* table = cmap->data; local
1744 FT_Byte* table = cmap->data; local
1878 FT_Byte* table = cmap->data; local
1899 FT_Byte* table = cmap->data; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapsTest.java 127 assertEquals("table size after adding " + size + "elements",
136 assertEquals("table size after adding " + size + "elements",
143 Field tableField = HashMap.class.getDeclaredField("table");
145 Object[] table = (Object[]) tableField.get(hashMap); local
146 return table.length;
    [all...]
  /external/icu4c/common/
ucnv_io.cpp 52 * numbers, which are also 16-bit in size. The majority of the table (except
53 * the string table) are 16-bit numbers.
55 * First there is the size of the Table of Contents (TOC). The TOC
62 * into the string table for the converter name. The index of this list is
67 * into the string table for the tag name. The index of this list is
72 * list contains indexes into the string table for the alias name. The
75 * alias -> converter name mapping. Section 3 and 4 form a two column table.
80 * as a table that maps the 3rd section to the 1st section. This list contains
83 * each converter index in this table. Currently it's only used to say that
95 * and is followed by indexes to alias names in the string table. This i
240 const uint16_t *table; local
    [all...]
  /external/icu4c/i18n/
ucol_res.cpp 413 UCATableHeader *table = NULL; local
440 table = ucol_assembleTailoringTable(&src, status);
443 table->version[0] = UCOL_BUILDER_VERSION;
445 table->version[1] = table->version[2] = table->version[3] = 0;
447 u_getUnicodeVersion(table->UCDVersion);
449 uprv_memcpy(table->UCAVersion, UCA->image->UCAVersion, sizeof(UVersionInfo));
450 result = ucol_initCollator(table, 0, UCA, status);
511 if(table != NULL)
    [all...]
  /external/icu4c/test/intltest/
icusvtst.cpp 46 Hashtable table; member in class:LKFSubclass
53 table.put("en_US", this, status);
58 return &table;
836 Hashtable* table = new Hashtable(); local
837 table->put(UnicodeString(californio), (void*)table, status);
838 table->put(UnicodeString(valley), (void*)table, status);
839 table->put(UnicodeString(surfer), (void*)table, status)
1415 Hashtable table; local
    [all...]
  /external/libxml2/
debugXML.c 1286 xmlEntitiesTablePtr table = (xmlEntitiesTablePtr) local
1296 xmlEntitiesTablePtr table = (xmlEntitiesTablePtr) local
    [all...]
  /external/qemu/target-arm/
helper.c 1018 uint32_t table; local
1021 table = env->cp15.c2_base1 & 0xffffc000;
1023 table = env->cp15.c2_base0 & env->cp15.c2_base_mask;
1025 table |= (address >> 18) & 0x3ffc;
1026 return table;
1034 uint32_t table; local
1043 table = get_level1_table_address(env, address);
1044 desc = ldl_phys(table);
1127 uint32_t table; local
    [all...]
  /external/qemu-pc-bios/vgabios/
clext.c 598 ; in si:mode table
1274 ;; in - al:mode, out - cflag:result, si:table, ax:destroyed variable
1363 ;; in - si: table
1367 mov bx, [si+14] ;; crtc table
  /external/quake/quake/src/WinQuake/
gl_vidandroid.cpp 89 unsigned *table; local
102 table = d_8to24table;
113 *table++ = v;
gl_vidlinuxglx.cpp 495 unsigned *table; local
504 table = d_8to24table;
513 *table++ = v;
654 GLubyte table[256][4]; local
661 table[i][2] = *oldpal++;
662 table[i][1] = *oldpal++;
663 table[i][0] = *oldpal++;
664 table[i][3] = 255;
667 qgl3DfxSetPaletteEXT((GLuint *)table);
  /external/skia/legacy/src/core/
SkBitmap.cpp 1272 const SkPMColor* SK_RESTRICT table = ct->lockColors(); local
    [all...]
  /external/skia/legacy/src/images/
SkImageDecoder_libpng.cpp 861 const SkUnPreMultiply::Scale* SK_RESTRICT table = local
872 SkUnPreMultiply::Scale scale = table[a];
887 const SkUnPreMultiply::Scale* SK_RESTRICT table = local
898 SkUnPreMultiply::Scale scale = table[a];
992 const SkUnPreMultiply::Scale* SK_RESTRICT table = local
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 700 const SkPMColor* table = alc.colors(); local
701 if (!table) {
706 c &= table[i];
1464 const SkPMColor* SK_RESTRICT table = ct->lockColors(); local
    [all...]
  /external/speex/libspeex/
preprocess.c 248 void *fft_lookup; /**< Lookup table for the FFT */
300 /* Q13 table */
301 static const spx_word16_t table[21] = { local
311 return SHL32(DIV32_16(PSHR32(MULT16_16(Q15_ONE-frac,table[ind]) + MULT16_16(frac,table[ind+1]),7),(spx_sqrt(SHL32(xx,15)+6711))),7);
360 static const float table[21] = { local
372 return FRAC_SCALING*((1-frac)*table[ind] + frac*table[ind+1])/sqrt(x+.0001f);
    [all...]
resample.c 53 makes the table much smaller and makes it possible to compute that table
54 on a per-stream basis. In turn, being able to tweak the table for each
194 double *table; member in struct:FuncDef
218 /* This table maps conversion quality to internal parameters. There are two
258 return interp[0]*func->table[ind] + interp[1]*func->table[ind+1] + interp[2]*func->table[ind+2] + interp[3]*func->table[ind+3];
275 /* The slow way of computing a sinc for the table. Should improve that some day *
    [all...]

Completed in 1316 milliseconds

<<11121314151617181920>>