HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 51 - 75 of 1580) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/tools/aapt2/process/
SymbolTable_test.cpp 32 std::unique_ptr<ResourceTable> table = local
40 ResourceTableSymbolSource symbol_source(table.get());
51 std::unique_ptr<ResourceTable> table = local
57 ResourceTableSymbolSource symbol_source(table.get());
65 std::unique_ptr<ResourceTable> table = local
73 symbol_table.AppendSource(util::make_unique<ResourceTableSymbolSource>(table.get()));
93 std::unique_ptr<ResourceTable> table = local
102 ASSERT_TRUE(flattener.Consume(context.get(), table.get()));
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
vc1parse_ppic.c 20 * Table 19 of SMPTE 421M after processing up to PTYPE for P picture.
27 const uint8_t *table; local
65 table = VC1_MVMODE_LOW_TBL;
67 table = VC1_MVMODE_HIGH_TBL;
78 picLayerHeader->MVMODE = table[bit_count];
91 picLayerHeader->MVMODE2 = table[bit_count];
  /prebuilts/gdb/darwin-x86/lib/python2.7/
toaiff.py 21 table = {} variable
25 table['au'] = t
35 table['hcom'] = t
39 table['voc'] = t
43 table['wav'] = t
47 table['8svx'] = t
51 table['sndt'] = t
55 table['sndr'] = t
102 if ftype is None or not ftype in table:
107 sts = table[ftype].copy(fname, temp
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
toaiff.py 21 table = {} variable
25 table['au'] = t
35 table['hcom'] = t
39 table['voc'] = t
43 table['wav'] = t
47 table['8svx'] = t
51 table['sndt'] = t
55 table['sndr'] = t
102 if ftype is None or not ftype in table:
107 sts = table[ftype].copy(fname, temp
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
toaiff.py 21 table = {} variable
25 table['au'] = t
35 table['hcom'] = t
39 table['voc'] = t
43 table['wav'] = t
47 table['8svx'] = t
51 table['sndt'] = t
55 table['sndr'] = t
102 if ftype is None or not ftype in table:
107 sts = table[ftype].copy(fname, temp
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
toaiff.py 21 table = {} variable
25 table['au'] = t
35 table['hcom'] = t
39 table['voc'] = t
43 table['wav'] = t
47 table['8svx'] = t
51 table['sndt'] = t
55 table['sndr'] = t
102 if ftype is None or not ftype in table:
107 sts = table[ftype].copy(fname, temp
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
CheckBoxPanelDisplay.java 10 private FlexTable table = new FlexTable(); field in class:CheckBoxPanelDisplay
14 initWidget(table);
22 table.setWidget(row, col, checkbox);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
BcDefaultDigestProvider.java 40 Map table = new HashMap(); local
42 table.put(OIWObjectIdentifiers.idSHA1, new BcDigestProvider()
49 table.put(NISTObjectIdentifiers.id_sha224, new BcDigestProvider()
56 table.put(NISTObjectIdentifiers.id_sha256, new BcDigestProvider()
63 table.put(NISTObjectIdentifiers.id_sha384, new BcDigestProvider()
70 table.put(NISTObjectIdentifiers.id_sha512, new BcDigestProvider()
79 table.put(NISTObjectIdentifiers.id_sha3_224, new BcDigestProvider()
86 table.put(NISTObjectIdentifiers.id_sha3_256, new BcDigestProvider()
93 table.put(NISTObjectIdentifiers.id_sha3_384, new BcDigestProvider()
100 table.put(NISTObjectIdentifiers.id_sha3_512, new BcDigestProvider(
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
AbstractTableReadTest.java 28 * Test cases for {@link Table} read operations.
34 protected Table<String, Integer, Character> table; field in class:AbstractTableReadTest
37 * Creates a table with the specified data.
39 * @param data the table data, repeating the sequence row key, column key,
45 protected abstract Table<String, Integer, Character>
49 assertEquals(expectedSize, table.size());
54 table = create();
58 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
59 assertTrue(table.contains("foo", 1))
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractTableReadTest.java 30 * Test cases for {@link Table} read operations.
36 protected Table<String, Integer, Character> table; field in class:AbstractTableReadTest
39 * Creates a table with the specified data.
41 * @param data the table data, repeating the sequence row key, column key,
47 protected abstract Table<String, Integer, Character>
51 assertEquals(expectedSize, table.size());
56 table = create();
60 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
61 assertTrue(table.contains("foo", 1))
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/
SitePrinter.java 35 HeapTable.TableConfig<Site> table = new HeapTable.TableConfig<Site>() { local
61 HeapTable.render(doc, query, id, table, snapshot, path);
  /external/autotest/frontend/client/src/autotest/common/table/
BooleanFilter.java 1 package autotest.common.table;
  /external/clang/test/Analysis/
malloc-overflow2.c 9 struct table { struct
11 unsigned *table; member in struct:table
15 static int table_build(struct table *t) {
18 t->table = (unsigned *)malloc(sizeof(unsigned) * t->nentry); // expected-warning {{the computation of the size of the memory allocation may overflow}}
28 static int table_build_1(struct table *t) {
29 t->nentry = (sizeof(struct table) * 2 + 31) / 32;
30 t->table = (unsigned *)malloc(sizeof(unsigned) * t->nentry); // no-warning
  /external/clang/test/CodeGenCXX/
partial-init.cpp 20 static Foo table[] = { variable
  /external/e2fsprogs/lib/ss/
invocation.c 31 register ss_data **table; local
34 table = _ss_table;
37 if (table == (ss_data **) NULL) {
38 table = (ss_data **) malloc(2 * size);
39 table[0] = table[1] = (ss_data *)NULL;
43 for (sci_idx = 1; table[sci_idx] != (ss_data *)NULL; sci_idx++)
45 table = (ss_data **) realloc((char *)table,
47 if (table == NULL)
    [all...]
  /external/freetype/src/psaux/
psobjs.h 51 ps_table_new( PS_Table table,
56 ps_table_add( PS_Table table,
62 ps_table_done( PS_Table table ); variable
66 ps_table_release( PS_Table table ); variable
  /external/iproute2/netem/
normal.c 2 * Normal distribution table generator
29 double table[TABLESIZE+1]; local
33 table[i] = x;
37 printf("# This is the distribution table for the normal distribution.\n");
39 int value = (int) rint(table[i]*TABLEFACTOR);
  /external/iptables/iptables/
xtables-config-parser.y 20 #include <libnftnl/table.h>
116 tables : table
117 | tables table
120 table : T_TABLE T_STRING '{' chains '}' label
185 struct nftnl_table *table = NULL;
206 table = nftnl_table_alloc();
207 if (table == NULL)
210 nftnl_table_set_u32(table, NFTNL_TABLE_FAMILY, family);
211 nftnl_table_set(table, NFTNL_TABLE_NAME, e->data);
217 nftnl_table_list_add(table, table_list)
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
CounterColumn.java 12 package org.jacoco.report.internal.html.table;
ITableItem.java 12 package org.jacoco.report.internal.html.table;
18 * Interface for a item (row) in a coverage data table.
TableItemComparator.java 12 package org.jacoco.report.internal.html.table;
19 * Adapter to sort table items based on their coverage nodes.
  /external/libexif/libexif/fuji/
mnote-fuji-tag.c 34 } table[] = { variable in typeref:struct:__anon24790
76 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
77 if (table[i].tag == t) return (table[i].name);
87 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
88 if (table[i].tag == t) return (_(table[i].title));
97 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++
    [all...]
  /external/libexif/libexif/olympus/
mnote-olympus-tag.c 34 } table[] = { variable in typeref:struct:__anon24793
148 {MNOTE_OLYMPUS_TAG_INTERNALFLASHTABLE, "InternalFlashTable", N_("Internal Flash Table"), ""},
201 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
202 if (table[i].tag == t) return (table[i].name);
212 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
213 if (table[i].tag == t) return (_(table[i].title))
    [all...]
  /external/libexif/libexif/pentax/
mnote-pentax-tag.c 33 } table[] = { variable in typeref:struct:__anon24798
146 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
147 if (table[i].tag == t) return (table[i].name);
157 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
158 if (table[i].tag == t) return (_(table[i].title));
167 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++
    [all...]
  /external/libxkbcommon/xkbcommon/bench/
compose.c 39 struct xkb_compose_table *table; local
53 table = xkb_compose_table_new_from_file(ctx, file, "",
56 assert(table);
57 xkb_compose_table_unref(table);

Completed in 1780 milliseconds

1 23 4 5 6 7 8 91011>>