HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 226 - 250 of 358) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/quake/quake/src/WinQuake/
gl_vidlinux.cpp 222 unsigned *table; local
232 table = d_8to24table;
241 *table++ = v;
540 GLubyte table[256][4]; local
547 table[i][2] = *oldpal++;
548 table[i][1] = *oldpal++;
549 table[i][0] = *oldpal++;
550 table[i][3] = 255;
553 qgl3DfxSetPaletteEXT((GLuint *)table);
  /external/skia/src/core/
SkScalerContext.cpp 502 const uint8_t* table = (fRec.fFlags & kGammaForBlack_Flag) ? gBlackGammaTable : gWhiteGammaTable; local
503 if (NULL != table) {
509 dst[x] = table[dst[x]];
  /external/tcpdump/
addrtoname.c 691 register struct hnamemem *table; local
699 table = &tporttable[i];
701 table = &uporttable[i];
705 while (table->name)
706 table = table->nxt;
709 table->name = strdup(buf);
711 table->name = strdup(sv->s_name);
712 table->addr = port;
713 table->nxt = newhnamemem()
733 register struct hnamemem *table; local
1081 register struct hnamemem *table; local
    [all...]
print-radius.c 585 static const char **table; local
587 table = attr_type[attr_code].subtypes;
605 printf("%s",table[data_value]);
    [all...]
  /external/v8/src/
ast.cc 253 HashMap* table; local
261 table = &elements;
265 table = &properties;
269 table = &elements;
279 table = &properties;
281 // If the key of a computed property is in the table, do not emit
284 if (table->Lookup(key, hash, false) != NULL) {
288 // Add key to the table.
289 table->Lookup(key, hash, true);
  /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/base/media/libstagefright/
FLACExtractor.cpp 550 } table[] = { local
558 for (unsigned i = 0; i < sizeof(table)/sizeof(table[0]); ++i) {
559 if (table[i].mChannels == getChannels() &&
560 table[i].mBitsPerSample == getBitsPerSample()) {
561 mCopy = table[i].mCopy;
  /frameworks/base/services/camera/libcameraservice/
FakeCamera.cpp 202 uint32_t *param, uint8_t *table[])
211 uint8_t *y_tab = table[0];
212 uint8_t *cb_tab = table[1];
213 uint8_t *cr_tab = table[2];
300 uint8_t *table[3]; local
301 table[0] = gYTable;
302 table[1] = gCbTable + 384;
303 table[2] = gCrTable + 384;
305 ccrgb16toyuv_wo_colorkey(rgb, yuv, param, table);
  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java 52 * following character should be looked up in the "extended" table.
66 * Using a non-default language locking shift table OR single shift table
72 * Using a non-default language locking shift table AND single shift table
84 * Converts a char to a GSM 7 bit table index.
86 * GSM_EXTENDED_ESCAPE if this character is in the extended table.
90 * @return the GSM 7 bit table index for the specified character
103 * Converts a char to a GSM 7 bit table index.
104 * Returns GSM_EXTENDED_ESCAPE if this character is in the extended table
1382 String table = sLanguageTables[i]; typedefs
    [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 ");
338 // Add an FTS virtual table if using full-text search.
340 sql.append("CREATE VIRTUAL TABLE ");
345 // Add the column to the FTS table.
357 // table in sync.
414 StringBuilder sql = new StringBuilder("DROP TABLE IF EXISTS ")
439 Entry.Table table = clazz.getAnnotation(Entry.Table.class); local
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsProvider.java 272 String table = TABLE_PDU; local
298 table = TABLE_PART;
302 table = TABLE_ADDR;
306 table = TABLE_RATE;
310 table = TABLE_DRM;
322 if (table.equals(TABLE_PDU)) {
356 if ((rowId = db.insert(table, null, finalValues)) <= 0) {
363 } else if (table.equals(TABLE_ADDR)) {
367 if ((rowId = db.insert(table, null, finalValues)) <= 0) {
373 } else if (table.equals(TABLE_PART))
503 String table, extraSelection = null; local
658 String table; 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.
138 mTable = new Table(mTop, SWT.BORDER | SWT.FULL_SELECTION | SWT.SINGLE);
357 private void adjustColumnsWidth(final Table table,
360 // Add a listener to resize the column to the full width of the table
361 table.addControlListener(new ControlAdapter() {
364 Rectangle r = table.getClientArea();
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
AddonSitesDialog.java 56 import org.eclipse.swt.widgets.Table;
65 private Table mTable;
195 private void adjustColumnsWidth(final Table table, final TableColumn column0) {
196 // Add a listener to resize the column to the full width of the table
197 table.addControlListener(new ControlAdapter() {
200 Rectangle r = table.getClientArea();
  /external/guava/src/com/google/common/collect/
CustomConcurrentHashMap.java 51 * <p>The resulting hash table supports full concurrency of retrievals and
54 * and there is <i>not</i> any support for locking the entire table
64 * reflecting the state of the hash table at some point at or since the
150 * other kind of hash table is a relatively slow operation, so, when
151 * possible, it is a good idea to provide estimates of expected table
170 * hint for internal sizing. The table is internally partitioned to try to
174 * as many threads as will ever concurrently modify the table. Using a
291 * reclaimed entries will not be copied over during table expansions, for
325 * entries or expanding the internal table.
540 * The basic strategy is to subdivide the table among Segments
762 volatile AtomicReferenceArray<E> table; field in class:CustomConcurrentHashMap.Impl.Segment
785 AtomicReferenceArray<E> table = this.table; local
848 AtomicReferenceArray<E> table = this.table; local
933 AtomicReferenceArray<E> table = this.table; local
1047 AtomicReferenceArray<E> table = this.table; local
1086 AtomicReferenceArray<E> table = this.table; local
1130 AtomicReferenceArray<E> table = this.table; local
1172 AtomicReferenceArray<E> table = this.table; local
1207 AtomicReferenceArray<E> table = this.table; local
2029 AtomicReferenceArray<E> table = segment.table; local
    [all...]
  /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...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogPanel.java 59 import org.eclipse.swt.widgets.Table;
364 Table table = f.getTable(); local
365 if (table != null) {
366 table.setFont(font);
372 Table table = mDefaultFilter.getTable(); local
373 if (table != null) {
374 table.setFont(font);
720 // get the current table and its selectio
807 Table table = filter.getTable(); local
1589 Table table = mCurrentFilter.getTable(); 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 988 /* Since the `interesting' table, with IDs (3,10), is normally the */
3561 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/icu4c/common/
ucnv_io.c 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 404 UCATableHeader *table = NULL; local
430 table = ucol_assembleTailoringTable(&src, status);
433 table->version[0] = UCOL_BUILDER_VERSION;
435 table->version[1] = table->version[2] = table->version[3] = 0;
437 u_getUnicodeVersion(table->UCDVersion);
439 uprv_memcpy(table->UCAVersion, UCA->image->UCAVersion, sizeof(UVersionInfo));
440 result = ucol_initCollator(table, 0, UCA, status);
498 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/icu4c/tools/gennorm/
store.c 146 /* 15b in the combining index -> <=0x8000 uint16_t values in the combining table */
476 /* start a new table */
501 fprintf(stderr, "error: gennorm combining table - trying to use %u units, more than the %ld units available\n",
514 * it writes the table data instead of calculating and setting the final indexes;
516 * they are written into the table
519 /* start a new table */
550 /* set a marker on the last final trail index in this lead's table */
1348 uint16_t *table; local
    [all...]
  /external/libxml2/
debugXML.c 1284 xmlEntitiesTablePtr table = (xmlEntitiesTablePtr) local
1294 xmlEntitiesTablePtr table = (xmlEntitiesTablePtr) local
    [all...]

Completed in 2195 milliseconds

1 2 3 4 5 6 7 8 91011>>