HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 251 - 275 of 3741) sorted by null

<<11121314151617181920>>

  /frameworks/base/tools/aapt2/link/
ReferenceLinker_test.cpp 29 std::unique_ptr<ResourceTable> table = local
49 util::make_unique<ResourceTableSymbolSource>(table.get()))
57 ASSERT_TRUE(linker.Consume(context.get(), table.get()));
59 Reference* ref = test::GetValue<Reference>(table.get(), "com.app.test:string/foo");
64 ref = test::GetValue<Reference>(table.get(), "com.app.test:string/bar");
69 ref = test::GetValue<Reference>(table.get(), "com.app.test:string/baz");
76 std::unique_ptr<ResourceTable> table = local
90 // build the table, because we need access to the string pool.
91 Style* style = test::GetValue<Style>(table.get(), "com.app.test:style/Theme");
94 util::make_unique<RawString>(table->string_pool.MakeRef("one|two"))
156 std::unique_ptr<ResourceTable> table = local
177 std::unique_ptr<ResourceTable> table = local
202 std::unique_ptr<ResourceTable> table = local
230 std::unique_ptr<ResourceTable> table = local
    [all...]
  /external/freetype/src/otvalid/
otvcommn.h 41 typedef void (*OTV_Validate_Func)( FT_Bytes table,
110 "Invalid offset to optional table `%s'" \
132 "Invalid offset to optional table `%s'" \
183 FT_TRACE4(( "%s table\n", \
191 FT_TRACE4(( "%s table\n", name )); \
241 /***** COVERAGE TABLE *****/
247 otv_Coverage_validate( FT_Bytes table,
253 otv_Coverage_get_first( FT_Bytes table ); variable
257 otv_Coverage_get_last( FT_Bytes table ); variable
261 otv_Coverage_get_count( FT_Bytes table ); variable
455 otv_GSUBGPOS_get_Lookup_count( FT_Bytes table ); variable
458 otv_GSUBGPOS_have_MarkAttachmentType_flag( FT_Bytes table ); variable
    [all...]
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyMap.java 106 this.table = new HashMap<IRubyObject, IRubyObject>();
133 // Table value type is always UINT64: this ensures enough space to store the
159 this.table.put(key, value);
172 if (table.containsKey(key))
173 return this.table.get(key);
196 if (!typeCompatible(other) || this.table.size() != other.table.size())
198 for (IRubyObject key : table.keySet()) {
199 if (! other.table.containsKey(key))
201 if (! other.table.get(key).equals(table.get(key))
433 private Map<IRubyObject, IRubyObject> table; field in class:RubyMap
    [all...]
  /external/mesa3d/src/util/
set.c 45 * free to avoid exponential performance degradation as the hash table fills
123 ht->table = rzalloc_array(ht, struct set_entry, ht->size);
127 if (ht->table == NULL) {
154 ralloc_free(ht->table);
172 struct set_entry *entry = ht->table + hash_address;
213 struct set_entry *table, *entry; local
218 table = rzalloc_array(ht, struct set_entry,
220 if (table == NULL)
225 ht->table = table;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout9.java 37 final TableLayout table = (TableLayout) findViewById(R.id.menu); local
42 table.setColumnShrinkable(0, mShrink);
46 mShrink = table.isColumnShrinkable(0);
  /external/autotest/skylab_migration/venv/skylab_venv/scripts/
test_server_db_sync.py 107 """Test create_mysql_updates with servers table."""
112 table = 'servers'
117 table,
125 """Test create_mysql_updates with servers table."""
130 table = 'servers'
135 table,
145 """Test create_mysql_updates with servers table."""
152 table = 'server_attributes'
157 table,
165 """Test create_mysql_updates with servers table.""
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/
settings.py 125 def __init__(self, table, device):
127 self._table = table
198 desired_settings: A list of (table, [(key: value), ...]) for all
201 for table, key_value in desired_settings:
202 settings = ContentSettings(table, device)
205 logger.info('\n%s %s', table, (80 - len(table)) * '-')
220 same value for that column are removed from the table prior to inserting the
234 def get_lock_settings(table):
235 return [(table, 'lockscreen.disabled', '1')
    [all...]
  /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/tensorflow/tensorflow/compiler/xla/service/
human_readable_profile_builder.cc 104 // Only show an optimal discrepancy table if at least one value was
108 MetricTableReport table; local
109 table.SetMetricName("microseconds above estimated optimum");
110 table.SetEntryName("ops");
111 table.SetShowCategoryTable();
121 table.AddEntry(std::move(entry));
123 StrAppend(&s, table.MakeReport(total_discrepancy_in_microseconds));
127 MetricTableReport table; local
128 table.SetMetricName("microseconds");
129 table.SetEntryName("ops")
    [all...]
  /external/v8/src/js/
macros.py 142 macro ORDERED_HASH_TABLE_BUCKET_COUNT(table) = (FIXED_ARRAY_GET(table, 2));
143 macro ORDERED_HASH_TABLE_ELEMENT_COUNT(table) = (FIXED_ARRAY_GET(table, 0));
144 macro ORDERED_HASH_TABLE_SET_ELEMENT_COUNT(table, count) = (FIXED_ARRAY_SET_SMI(table, 0, count));
145 macro ORDERED_HASH_TABLE_DELETED_COUNT(table) = (FIXED_ARRAY_GET(table, 1));
146 macro ORDERED_HASH_TABLE_SET_DELETED_COUNT(table, count) = (FIXED_ARRAY_SET_SMI(table, 1, count))
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
log2.c 34 #include "log2_tab.h" /* Table for Log2() */
45 * The function Log2(L_x) is approximated by a table and linear
52 * 5- fraction = table[i]<<16 - (table[i] - table[i+1]) * a * 2
78 L_y = L_deposit_h (table[i]); /* table[i] << 16 */
79 tmp = vo_sub(table[i], table[i + 1]); /* table[i] - table[i+1] *
    [all...]
  /frameworks/ml/nn/runtime/test/specs/V1_0/
hashtable_lookup_float.mod.py 22 table = [x for x in range(rows * features)] variable
25 table[i * features + j] = i + j / 10.
38 value: table}
hashtable_lookup_quant8.mod.py 22 table = [x for x in range(rows * features)] variable
25 table[i * features + j] = i * 10 + j
38 value: table}
  /frameworks/ml/nn/runtime/test/specs/V1_1/
hashtable_lookup_float_relaxed.mod.py 22 table = [x for x in range(rows * features)] variable
25 table[i * features + j] = i + j / 10.
39 value: table}
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
UiElementPart.java 37 * This part is designed to be displayed in a page that has a table column layout.
49 /** Table that contains all the attributes */
138 * Sets the table where the attribute UI needs to be created.
140 protected void setTable(Composite table) {
141 mTable = table;
145 * Returns the table where the attribute UI needs to be created.
152 * Add all the attribute UI widgets into the underlying table layout.
157 Composite table = getTable(); local
158 if (table == null || managedForm == null) {
163 for (Control c : table.getChildren())
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-m68hc11/
bug-3331.s 12 std table ;; This instruction uses a symbol in page0
18 .globl table
19 table: .long 0 label
  /external/autotest/client/cros/faft/utils/
rootfs_handler.py 48 table = match.group(1)
51 if table.find('PARTUUID=%U/PARTNROFF=1') < 0:
53 table = table.replace('PARTUUID=%U/PARTNROFF=1', rootfs_path)
55 table += ' error_behavior=eio'
60 "dmsetup create -r %s --table '%s'" % (_DM_DEVICE, table))
  /external/autotest/frontend/client/src/autotest/common/table/
DynamicTableSelectionManager.java 1 package autotest.common.table;
4 import autotest.common.table.DataSource.DefaultDataCallback;
5 import autotest.common.table.DataSource.Query;
38 public DynamicTableSelectionManager(DynamicTable table, boolean selectOnlyOne) {
39 super(table, selectOnlyOne);
40 attachedDynamicTable = table;
46 * Select all objects covering all pages, not just the currently displayed page in the table.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafL2RMultiplier.java 43 ECPoint[] table = digit < 0 ? preCompNeg : preComp; local
45 // Optimization can only be used for values in the lower half of the table
56 R = table[i1 >>> 1].add(table[i2 >>> 1]);
64 R = table[n >>> 1];
76 ECPoint[] table = digit < 0 ? preCompNeg : preComp; local
77 ECPoint r = table[n >>> 1];
  /external/v8/src/interpreter/
handler-table-builder.cc 5 #include "src/interpreter/handler-table-builder.h"
20 Handle<HandlerTable> table = local
26 table->SetRangeStart(i, static_cast<int>(entry.offset_start));
27 table->SetRangeEnd(i, static_cast<int>(entry.offset_end));
28 table->SetRangeHandler(i, static_cast<int>(entry.offset_target), pred);
29 table->SetRangeData(i, entry.context.index());
31 return table;
44 DCHECK(Smi::IsValid(offset)); // Encoding of handler table requires this.
50 DCHECK(Smi::IsValid(offset)); // Encoding of handler table requires this.
56 DCHECK(Smi::IsValid(offset)); // Encoding of handler table requires this
    [all...]
  /external/zopfli/src/zopfli/
util.c 126 static const int table[259] = { local
144 return table[l];
148 static const int table[259] = { local
162 return table[l];
169 static const int table[259] = { local
203 return table[l];
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
hash.h 58 void isl_hash_table_free(struct isl_ctx *ctx, struct isl_hash_table *table);
60 int isl_hash_table_init(struct isl_ctx *ctx, struct isl_hash_table *table,
62 void isl_hash_table_clear(struct isl_hash_table *table);
64 struct isl_hash_table *table,
69 struct isl_hash_table *table,
72 struct isl_hash_table *table,
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationFastLatin.java 85 * Use INDEX_MASK to find the start of the contraction list after the fixed table.
99 * Use INDEX_MASK to find the pair of CEs after the fixed table.
269 char[] table = data.fastLatinTable; // skip the header local
271 int p = table[c];
290 public static int compareUTF16(char[] table, char[] primaries, int options,
321 leftPair = table[c];
323 leftPair = table[c - PUNCT_START + LATIN_LIMIT];
325 leftPair = lookup(table, c);
334 long pairAndInc = nextPair(table, c, leftPair, left, leftIndex);
357 rightPair = table[c]
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationFastLatin.java 81 * Use INDEX_MASK to find the start of the contraction list after the fixed table.
95 * Use INDEX_MASK to find the pair of CEs after the fixed table.
265 char[] table = data.fastLatinTable; // skip the header local
267 int p = table[c];
286 public static int compareUTF16(char[] table, char[] primaries, int options,
317 leftPair = table[c];
319 leftPair = table[c - PUNCT_START + LATIN_LIMIT];
321 leftPair = lookup(table, c);
330 long pairAndInc = nextPair(table, c, leftPair, left, leftIndex);
353 rightPair = table[c]
    [all...]

Completed in 786 milliseconds

<<11121314151617181920>>