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

<<11121314151617181920>>

  /external/qemu/hw/
smbios.c 72 "cannot add table\n", type);
77 struct smbios_structure_header *table = (void *)(header + 1); local
78 if (type == table->type) {
79 fprintf(stderr, "SMBIOS type %d table already defined, "
173 struct smbios_table *table; local
187 sizeof(*table) + size);
188 table = (struct smbios_table *)(smbios_entries + smbios_entries_len);
189 table->header.type = SMBIOS_TABLE_ENTRY;
190 table->header.length = cpu_to_le16(sizeof(*table) + size)
    [all...]
  /frameworks/base/cmds/settings/src/com/android/commands/settings/
SettingsCmd.java 169 final String table, final String key) {
171 if ("system".equals(table)) callGetCommand = Settings.CALL_METHOD_GET_SYSTEM;
172 else if ("secure".equals(table)) callGetCommand = Settings.CALL_METHOD_GET_SECURE;
173 else if ("global".equals(table)) callGetCommand = Settings.CALL_METHOD_GET_GLOBAL;
175 System.err.println("Invalid table; no put performed");
176 throw new IllegalArgumentException("Invalid table " + table);
188 System.err.println("Can't read key " + key + " in " + table + " for user " + userHandle);
194 final String table, final String key, final String value) {
196 if ("system".equals(table)) callPutCommand = Settings.CALL_METHOD_PUT_SYSTEM
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
main.cc 29 #include "hb-ot-layout-gdef-table.hh"
98 printf (" %d table(s) found in font\n", num_tables);
100 const OpenTypeTable &table = font.get_table (n_table); local
101 printf (" Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables,
102 (const char *)table.tag,
103 (unsigned int) table.offset,
104 (unsigned int) table.length);
106 switch (table.tag) {
112 const GSUBGPOS &g = *CastP<GSUBGPOS> (font_data + table.offset);
115 printf (" %d script(s) found in table\n", num_scripts)
    [all...]
  /external/elfutils/libelf/
nlist.c 90 struct nlist_fshash *table; local
113 /* Find a symbol table. We prefer the real symbol table but if it
114 does not exist use the dynamic symbol table. */
138 table. */
152 /* Create the hash table. */
153 table = nlist_fshash_init (nsyms);
154 if (table == NULL)
180 /* And add it to the hash table. Note that we are using the
187 (void) nlist_fshash_overwrite (table, mem.str, 0, &mem)
    [all...]
  /external/harfbuzz_ng/src/
main.cc 29 #include "hb-ot-layout-gdef-table.hh"
98 printf (" %d table(s) found in font\n", num_tables);
100 const OpenTypeTable &table = font.get_table (n_table); local
101 printf (" Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables,
102 (const char *)table.tag,
103 (unsigned int) table.offset,
104 (unsigned int) table.length);
106 switch (table.tag) {
112 const GSUBGPOS &g = *CastP<GSUBGPOS> (font_data + table.offset);
115 printf (" %d script(s) found in table\n", num_scripts)
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
zutil.c 208 local ptr_table table[MAX_PTR]; variable
209 /* This table is used to remember the original form of pointers
211 * Since MSDOS is not a preemptive multitasking OS, this table is not
231 table[next_ptr].org_ptr = buf;
236 table[next_ptr++].new_ptr = buf;
249 if (ptr != table[n].new_ptr) continue;
251 farfree(table[n].org_ptr);
253 table[n-1] = table[n];
  /external/qemu/
keymaps.c 28 static int get_keysym(const name2keysym_t *table,
32 for(p = table; p->name != NULL; p++) {
62 static kbd_layout_t *parse_keyboard_layout(const name2keysym_t *table,
115 parse_keyboard_layout(table, line + 8, k);
123 keysym = get_keysym(table, line);
168 void *init_keyboard_layout(const name2keysym_t *table, const char *language)
170 return parse_keyboard_layout(table, language, NULL);
  /external/chromium_org/chrome/browser/resources/task_manager/
includes.js 12 'table.css',
33 'cr/ui/table/table_splitter.js',
36 'cr/ui/table/table_column.js',
37 'cr/ui/table/table_column_model.js',
38 'cr/ui/table/table_header.js',
39 'cr/ui/table/table_list.js',
40 'cr/ui/table.js',
  /system/core/toolbox/
schedtop.c 49 static void grow_table(struct thread_table *table)
51 size_t size = table->allocated;
58 new_table = realloc(table->data, size * sizeof(*table->data));
63 table->data = new_table;
64 table->allocated = size;
67 static struct thread_info *get_item(struct thread_table *table)
69 if (table->active >= table->allocated)
70 grow_table(table);
    [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/chromium_org/third_party/freetype/src/pshinter/
pshalgo.c 63 /* destroy hints table */
65 psh_hint_table_done( PSH_Hint_Table table,
68 FT_FREE( table->zones );
69 table->num_zones = 0;
70 table->zone = 0;
72 FT_FREE( table->sort );
73 FT_FREE( table->hints );
74 table->num_hints = 0;
75 table->max_hints = 0;
76 table->sort_global = 0
1675 PSH_Hint_Table table = &glyph->hint_tables[dimension]; local
1755 PSH_Blue_Table table; local
    [all...]
  /external/eigen/doc/
eigendoxy.css 3 body, table, div, p, dl {
337 table.memberdecls {
592 table.doxtable {
596 table.doxtable td, table.doxtable th {
601 table.doxtable th {
709 display:table; /* this allows the element to be larger than its parent */
721 table.example, table.manual, table.manual-vl
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c 63 /* destroy hints table */
65 psh_hint_table_done( PSH_Hint_Table table,
68 FT_FREE( table->zones );
69 table->num_zones = 0;
70 table->zone = 0;
72 FT_FREE( table->sort );
73 FT_FREE( table->hints );
74 table->num_hints = 0;
75 table->max_hints = 0;
76 table->sort_global = 0
1675 PSH_Hint_Table table = &glyph->hint_tables[dimension]; local
1755 PSH_Blue_Table table; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
flakiness_dashboard_tests.css 45 .test-table {
50 .test-table tr > td:nth-child(2) {
53 .test-table {
56 .test-table tr {
60 .test-table tbody tr:hover {
63 .test-table th {
72 .table-header-content,
73 .table-header-content * {
76 .table-header-content * {
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texstore.c 4039 static StoreTexImageFunc table[MESA_FORMAT_COUNT]; local
    [all...]
  /external/mesa3d/src/mesa/main/
texstore.c 4039 static StoreTexImageFunc table[MESA_FORMAT_COUNT]; local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteDatabase.java 72 public long insert(String table, String nullColumnHack, ContentValues values) {
73 return insertWithOnConflict(table, nullColumnHack, values, SQLiteDatabase.CONFLICT_NONE);
77 public long insertOrThrow(String table, String nullColumnHack, ContentValues values) {
80 return insertWithOnConflict(table, nullColumnHack, values, SQLiteDatabase.CONFLICT_NONE);
84 public long replace(String table, String nullColumnHack, ContentValues values) {
85 return insertWithOnConflict(table, nullColumnHack, values, SQLiteDatabase.CONFLICT_REPLACE);
89 public long insertWithOnConflict(String table, String nullColumnHack,
93 SQLStringAndBindings sqlInsertString = buildInsertString(table, initialValues, conflictAlgorithm);
114 public Cursor query(boolean distinct, String table, String[] columns,
123 String sql = SQLiteQueryBuilder.buildQueryString(distinct, table,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableRow.cpp 77 // If border was changed, notify table.
79 RenderTable* table = this->table(); local
80 if (table && !table->selfNeedsLayout() && !table->normalChildNeedsLayout() && oldStyle && oldStyle->border() != style()->border())
81 table->invalidateCollapsedBorders();
83 if (table && oldStyle && diff == StyleDifferenceLayout && needsLayout() && table->collapseBorders() && borderWidthChanged(oldStyle, style())) {
165 // Table rows do not add translation
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
colmeta.test 28 CREATE TABLE abc(a, b, c);
29 CREATE TABLE abc2(a PRIMARY KEY COLLATE NOCASE, b VARCHAR(32), c);
30 CREATE TABLE abc3(a NOT NULL, b INTEGER PRIMARY KEY, c);
34 CREATE TABLE abc4(a, b INTEGER PRIMARY KEY AUTOINCREMENT, c);
59 16 {main abc d} {1 {no such table column: abc.d}}
69 9 {{} v1 a} {1 {no such table column: v1.a}}
70 10 {main v1 b} {1 {no such table column: v1.b}}
71 11 {main v1 badname} {1 {no such table column: v1.badname}}
72 12 {main v1 rowid} {1 {no such table column: v1.rowid}}
  /external/elfutils/lib/
fixedsizehash.h 1 /* Fixed size hash table with internal linking.
63 TYPE data type of the hash table entries
69 STORE_POINTER if defined the table stores a pointer and not an element
109 } table[0];
113 /* Constructor for the hashing table. */
118 /* We choose a size for the hashing table 150% over the number of
128 /* Adjust the size to be used for the hashing table. */
159 if (htab->table[idx].hval != 0)
164 if (htab->table[idx].hval == hval
165 && COMPARE (data, ENTRYP (htab->table[idx])) == 0
    [all...]
  /external/openfst/src/include/fst/
symbol-table.h 45 // WARNING: Reading via symbol table read options should
215 // table with the lexical representation L o G.
221 // Construct symbol table with an unspecified name.
224 // Construct symbol table with a unique name.
228 SymbolTable(const SymbolTable& table) : impl_(table.impl_) {
238 // Copys the implemenation from one symbol table to another.
247 // Read an ascii representation of the symbol table from an istream. Pass a
259 // read an ascii representation of the symbol table
271 // WARNING: Reading via symbol table read options shoul
    [all...]
  /external/valgrind/main/callgrind/
bb.c 44 bbs.table = (BB**) CLG_MALLOC("cl.bb.ibh.1",
47 for (i = 0; i < bbs.size; i++) bbs.table[i] = NULL;
65 /* double size of bb table */
83 if (bbs.table[i] == NULL) continue;
85 curr = bbs.table[i];
103 VG_(free)(bbs.table);
111 bbs.table = new_table;
127 /* check fill degree of bb hash table and resize if needed (>80%) */
153 /* insert into BB hash table */
155 bb->next = bbs.table[idx]
    [all...]
  /art/compiler/dex/
vreg_analysis.cc 335 void MIRGraph::DumpRegLocTable(RegLocation* table, int count) {
341 table[i].orig_sreg, storage_name[table[i].location],
342 table[i].wide ? 'W' : 'N', table[i].defined ? 'D' : 'U',
343 table[i].fp ? 'F' : table[i].ref ? 'R' :'C',
344 table[i].is_const ? 'c' : 'n',
345 table[i].high_word ? 'H' : 'L', table[i].home ? 'h' : 't'
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gensprep/
filterRFC3454.pl 7 # This tool filters the RFC-3454 txt file for StringPrep tables and creates a table
26 $warning = "###################\n# WARNING: This table is generated by filterRFC3454.pl tool with\n# options: @ARGV \n###################\n\n";
157 local ($inFH, $outFH,$comment, $table) = @_;
165 # break if "End Table" is found
179 if($table =~ /A/ ){
182 }elsif ( $table =~ /B\.1/ ){
184 }elsif ( $table =~ /B\.[23]/ ){
187 }elsif ( $table =~ /C/ ) {
220 $comment = "# This table contains code points from Table A.1 from RFC 3454\n"
    [all...]
  /external/icu4c/tools/gensprep/
filterRFC3454.pl 7 # This tool filters the RFC-3454 txt file for StringPrep tables and creates a table
26 $warning = "###################\n# WARNING: This table is generated by filterRFC3454.pl tool with\n# options: @ARGV \n###################\n\n";
157 local ($inFH, $outFH,$comment, $table) = @_;
165 # break if "End Table" is found
179 if($table =~ /A/ ){
182 }elsif ( $table =~ /B\.1/ ){
184 }elsif ( $table =~ /B\.[23]/ ){
187 }elsif ( $table =~ /C/ ) {
220 $comment = "# This table contains code points from Table A.1 from RFC 3454\n"
    [all...]

Completed in 202 milliseconds

<<11121314151617181920>>