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

1 2 3 4 5 6 7 891011>>

  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.c 19 Table of contents
76 /* clipping table, defined in h264bsd_intra_prediction.c */
1223 i32 table[21*16]; local
1410 i32 table[21*16]; local
1614 i32 table[21*16]; local
    [all...]
  /libcore/luni/src/main/java/java/text/
DateFormat.java 741 private static Hashtable<Integer, Field> table = new Hashtable<Integer, Field>(); field in class:DateFormat.Field
853 if (calendarField != -1 && table.get(Integer.valueOf(calendarField)) == null) {
854 table.put(Integer.valueOf(calendarField), this);
884 return table.get(Integer.valueOf(calendarField));
  /packages/providers/DrmProvider/src/com/android/providers/drm/
DrmProvider.java 108 * Creates the table that'll hold the download information.
111 db.execSQL("CREATE TABLE audio (" +
119 db.execSQL("CREATE TABLE images (" +
129 * Deletes the table that holds the download information.
133 db.execSQL("DROP TABLE IF EXISTS audio");
134 db.execSQL("DROP TABLE IF EXISTS images");
273 public String table; field in class:DrmProvider.GetTableAndWhereOutParameter
285 out.table = "audio";
289 out.table = "audio";
294 out.table = "images"
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
bootparam.h 53 __u8 table[14]; member in struct:sys_desc_table
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 223 // Before changing the table, commit all dirty state.
239 // creation of the master table.
289 Composite table = useSubsections ? null : masterTable; local
295 } else if (table == null || attr_desc instanceof SeparatorAttributeDescriptor) {
304 table = createSubSectionTable(toolkit, masterTable, title);
313 ui_attr.createUiControl(table, managedForm);
317 ((Section) table.getParent()).setExpanded(true);
360 * Create a sub Section and its embedding wrapper table with 2 columns.
361 * @return The table, child of a new section.
367 // if the parent is a table with more than one column an extra table with one colum
378 Composite table; local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatPanel.java 67 import org.eclipse.swt.widgets.Table;
81 * LogCatPanel displays a table listing the logcat messages.
241 // Run this in a separate async thread to give the table some time to update after the
459 final Table table = new Table(parent, SWT.FULL_SELECTION); local
463 table.setLayoutData(gd);
465 mFiltersTableViewer = new TableViewer(table);
488 * Create the search bar at the top of the logcat messages table.
570 * Save logcat messages selected in the table to a file
639 Table table = mViewer.getTable(); local
657 final Table table = new Table(parent, SWT.FULL_SELECTION | SWT.MULTI | SWT.VIRTUAL); local
996 final Table table = mViewer.getTable(); local
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdSelector.java 54 import org.eclipse.swt.widgets.Table;
70 * The AVD selector is a table that is added to the given parent composite.
84 private Table mTable;
239 mTable = new Table(group, style);
367 // create the table columns
430 * Sets the table grid layout data.
508 * The listener will be called <em>after</em> this table processed its selection
635 private void adjustColumnsWidth(final Table table,
641 // Add a listener to resize the column to the full width of the table
    [all...]
  /dalvik/vm/alloc/
MarkSweep.cpp 171 * - Interned string table
889 IndirectRefTable* table = &gDvm.jniWeakGlobalRefTable; local
892 for (It it = table->begin(), end = table->end(); it != end; ++it) {
  /external/bison/src/
tables.c 123 /* TABLE_SIZE is the allocated size of both TABLE and CHECK. We start
127 base_number *table; variable
129 /* The value used in TABLE to denote explicit syntax errors
141 | If TABLE (and CHECK) appear to be small to be addressed at |
142 | DESIRED, grow them. Note that TABLE[DESIRED] is to be used, so |
155 fprintf (stderr, "growing table and check from: %d to %d\n",
158 table = xnrealloc (table, table_size, sizeof *table);
165 table[old_size] = 0
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
certificate_viewer.cc 32 void AddTitle(GtkTable* table, int row, const std::string& text) {
33 gtk_table_attach_defaults(table,
39 void AddKeyValue(GtkTable* table, int row, const std::string& text,
42 table,
49 table,
211 GtkTable* table = GTK_TABLE(gtk_table_new(num_rows, 2, FALSE)); local
212 gtk_table_set_col_spacing(table, 0, gtk_util::kLabelSpacing);
213 gtk_table_set_row_spacings(table, gtk_util::kControlSpacing);
215 gtk_box_pack_start(GTK_BOX(general_page_vbox_), GTK_WIDGET(table),
220 AddTitle(table, row++
    [all...]
  /external/chromium/chrome/browser/visitedlink/
visitedlink_unittest.cc 48 virtual void NewTable(base::SharedMemory* table) {
49 if (table) {
53 table->ShareToProcess(base::GetCurrentProcessHandle(), &new_handle);
86 // freshly created table to be. 0 means use the default.
128 // check that the table has the proper number of entries
231 // Deleting the other four should leave the table empty.
240 "Hash table has values in it.";
292 // Clear the table and make sure the slave picked it up.
339 // Verify that the table got resized sufficiently.
341 VisitedLinkCommon::Fingerprint* table; local
    [all...]
  /external/chromium/net/disk_cache/
disk_format.h 13 // The index file is just a simple hash table that maps a particular entry to
92 int32 table_len; // Actual size of the table (0 == kIndexTablesize).
103 CacheAddr table[kIndexTablesize]; // Default size. Actual size controlled member in struct:disk_cache::Index
  /external/chromium/net/proxy/
proxy_config_service_linux_unittest.cc 85 #define ENTRY(x) table.settings[#x] = &values.x
110 const char* env_value = table.Get(variable_name);
134 SettingsTable<const char*> table; member in class:net::__anon3672::MockEnvironment
    [all...]
  /external/dbus/dbus/
dbus-hash.c 2 /* dbus-hash.c Generic hash table utility (internal to D-Bus implementation)
8 * Hash table implementation based on generic/tclHash.c from the Tcl
83 * @defgroup DBusHashTable Hash table
91 * @defgroup DBusHashTableInternals Hash table implementation details
102 * the hash table to make it larger.
122 #define RANDOM_INDEX(table, i) \
123 (((((intptr_t) (i))*1103515245) >> (table)->down_shift) & (table)->mask)
126 * Initial number of buckets in hash table (hash table staticall
214 DBusHashTable *table; \/**< Pointer to table containing entry. *\/ member in struct:__anon5181
297 DBusHashTable *table; local
    [all...]
  /external/e2fsprogs/e2fsck/
unix.c 382 int table[32]; member in struct:percent_tbl
399 return ((percent * (tbl->table[pass] - tbl->table[pass-1]))
400 + tbl->table[pass-1]);
    [all...]
  /external/freetype/src/base/
ftdbgmem.c 226 ft_mem_table_alloc( FT_MemTable table,
229 FT_Memory memory = table->memory;
233 memory->user = table->memory_user;
234 block = table->alloc( memory, size );
235 memory->user = table;
242 ft_mem_table_free( FT_MemTable table,
245 FT_Memory memory = table->memory;
248 memory->user = table->memory_user;
249 table->free( memory, block );
250 memory->user = table;
307 FT_MemTable table; local
683 FT_MemTable table = (FT_MemTable)memory->user; local
719 FT_MemTable table = (FT_MemTable)memory->user; local
745 FT_MemTable table = (FT_MemTable)memory->user; local
826 FT_MemTable table; local
889 FT_MemTable table = (FT_MemTable)memory->user; local
925 FT_MemTable table = (FT_MemTable)memory->user; local
    [all...]
  /external/icu4c/common/
rbbitblb.cpp 59 // table from the RBBI rules parse tree.
184 // Update the global table of rule status {tag} values
186 // for all tables. Merge the ones from this table into the global set.
224 // Apply functions from table 3.40 in Aho
268 // Apply functions from table 3.40 in Aho
314 // Apply functions from table 3.40 in Aho
808 for (n=0; n<fDStates->size(); n++) { // For each state s (row in the state table)
824 // Update the global table of rule status {tag} values
826 // for all tables. Merge the ones from this table into the global set.
833 // for each state in this state table
1093 RBBIStateTable *table = (RBBIStateTable *)where; local
    [all...]
  /external/icu4c/test/cintltst/
udatatst.c 830 const int32_t *table=NULL; local
851 table=(const int32_t *)udata_getMemory(result);
853 /* The alias table may list more converters than what's actually available now. [grhoten] */
854 if(ucnv_countAvailable() > table[1]) /*???*/
855 log_err("FAIL: udata_getMemory() failed ucnv_countAvailable returned = %d, expected = %d\n", ucnv_countAvailable(), table[1+2*(*table)]);
    [all...]
  /external/iproute2/ip/
iproute.c 60 fprintf(stderr, " [ table TABLE_ID ] [ proto RTPROTO ]\n");
64 fprintf(stderr, " [ table TABLE_ID ] [ proto RTPROTO ]\n");
131 __u32 table; local
158 table = rtm_get_table(r, tb);
160 if (r->rtm_family == AF_INET6 && table != RT_TABLE_MAIN)
179 if (filter.tb > 0 && filter.tb != table)
353 if (table != RT_TABLE_MAIN && !filter.tb)
354 fprintf(fp, " table %s ", rtnl_rttable_n2a(table, b1, sizeof(b1)));
890 } else if (matches(*argv, "table") == 0)
    [all...]
  /external/opencv/otherlibs/highgui/
bitstrm.cpp 443 int RLBitStream::GetHuff( const short* table )
450 int table_bits = table[0];
451 val = table[Show(table_bits) + 2];
456 table += val*2;
545 int RMBitStream::GetHuff( const short* table )
552 int table_bits = table[0];
553 val = table[Show(table_bits) + 1];
558 table += val;
589 bool bsCreateDecodeHuffmanTable( const int* src, short* table, int max_size )
619 /* calc offsets of sub tables and whole size of table */
690 int* table = dst; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_video.c 369 int table, b, i; local
385 table = ((bpp+7)/8)-1;
386 SDL_closest_depths[table][0] = bpp;
387 SDL_closest_depths[table][7] = 0;
388 for ( b = 0; !supported && SDL_closest_depths[table][b]; ++b ) {
389 format.BitsPerPixel = SDL_closest_depths[table][b];
417 return(SDL_closest_depths[table][b]);
428 int table, b, i; local
457 table = ((*BitsPerPixel+7)/8)-1;
458 SDL_closest_depths[table][0] = *BitsPerPixel
    [all...]
  /external/quake/quake/src/QW/client/
gl_vidlinux.c 218 unsigned *table; local
230 table = d_8to24table;
241 *table++ = v;
534 GLubyte table[256][4]; local
544 table[i][2] = *oldpal++;
545 table[i][1] = *oldpal++;
546 table[i][0] = *oldpal++;
547 table[i][3] = 255;
550 gl3DfxSetPaletteEXT((GLuint *)table);
gl_vidlinux_svga.c 250 unsigned *table; local
260 table = d_8to24table;
271 *table++ = v;
572 GLubyte table[256][4]; local
582 table[i][2] = *oldpal++;
583 table[i][1] = *oldpal++;
584 table[i][0] = *oldpal++;
585 table[i][3] = 255;
588 gl3DfxSetPaletteEXT((GLuint *)table);
gl_vidlinux_x11.c 444 unsigned *table; local
454 table = d_8to24table;
465 *table++ = v;
617 GLubyte table[256][4]; local
627 table[i][2] = *oldpal++;
628 table[i][1] = *oldpal++;
629 table[i][0] = *oldpal++;
630 table[i][3] = 255;
633 gl3DfxSetPaletteEXT((GLuint *)table);
gl_vidlinuxglx.c 390 unsigned *table; local
402 table = d_8to24table;
413 *table++ = v;
565 GLubyte table[256][4]; local
575 table[i][2] = *oldpal++;
576 table[i][1] = *oldpal++;
577 table[i][0] = *oldpal++;
578 table[i][3] = 255;
581 gl3DfxSetPaletteEXT((GLuint *)table);

Completed in 2275 milliseconds

1 2 3 4 5 6 7 891011>>