HomeSort by relevance Sort by last modified time
    Searched full:lookups (Results 1 - 25 of 1221) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Misc/
ast-dump-lookups.cpp 2 // RUN: %clang_cc1 -std=c++11 -ast-dump-lookups -ast-dump-filter Test %s | FileCheck -check-prefix LOOKUPS %s
3 // RUN: %clang_cc1 -std=c++11 -ast-dump -ast-dump-lookups -ast-dump-filter Test %s | FileCheck -check-prefix DECLS-LOOKUPS %s
36 // LOOKUPS: Dumping Test:
37 // LOOKUPS-NEXT: StoredDeclsMap Namespace {{.*}} 'Test'
38 // LOOKUPS: DeclarationName 'a'
39 // LOOKUPS-NEXT: `-Var {{.*}} 'a' 'int'
41 // LOOKUPS: Dumping Test:
42 // LOOKUPS-NEXT: Lookup map is in primary DeclContex
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
LookupList.java 17 private Lookup[] lookups; field in class:LookupList
22 lookups = new Lookup[10];
28 if (lookupCount >= lookups.length) {
29 Lookup[] newLookups = new Lookup[lookups.length + 5];
31 System.arraycopy(lookups, 0, newLookups, 0, lookups.length);
32 lookups = newLookups;
35 lookups[lookupCount] = lookup;
56 lookups[i].writeLookup(writer);
  /external/guice/core/src/com/google/inject/internal/
DeferredLookups.java 32 * creation it's necessary to {@link #initialize initialize} these lookups.
36 final class DeferredLookups implements Lookups {
38 private final List<Element> lookups = Lists.newArrayList(); field in class:DeferredLookups
45 * Initialize the specified lookups, either immediately or when the injector is created.
48 injector.lookups = injector;
49 new LookupProcessor(errors).process(injector, lookups);
54 lookups.add(lookup);
60 lookups.add(lookup);
EncounterImpl.java 43 private final Lookups lookups; field in class:EncounterImpl
51 EncounterImpl(Errors errors, Lookups lookups) {
53 this.lookups = lookups;
129 return lookups.getProvider(key);
138 return lookups.getMembersInjector(typeLiteral);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/
gc_has_finalizer.py 7 code, so is always "safe": all it does is dict lookups.
9 But of course dict lookups can call arbitrary Python code.
  /external/python/cpython2/Lib/test/crashers/
gc_has_finalizer.py 7 code, so is always "safe": all it does is dict lookups.
9 But of course dict lookups can call arbitrary Python code.
  /frameworks/ml/nn/runtime/test/specs/V1_0/
hashtable_lookup_float.mod.py 17 lookups = 4 variable
29 lookup = Input("lookup", "TENSOR_INT32", "{%d}" % lookups)
32 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (lookups, features))
33 hits = Output("hits", "TENSOR_QUANT8_ASYMM", "{%d}, 1.f, 0" % (lookups))
hashtable_lookup_quant8.mod.py 17 lookups = 4 variable
29 lookup = Input("lookup", "TENSOR_INT32", "{%d}" % (lookups))
32 output = Output("output", "TENSOR_QUANT8_ASYMM", "{%d, %d}, 0.5f, 0" % (lookups, features))
33 hits = Output("hits", "TENSOR_QUANT8_ASYMM", "{%d}, 1.f, 0" % (lookups))
embedding_lookup.mod.py 17 lookups = 3 variable
29 index = Input("index", "TENSOR_INT32", "{%d}"%lookups)
31 output = Output("output", "TENSOR_FLOAT32", "{%d, %d, %d}" % (lookups, columns, features))
  /frameworks/ml/nn/runtime/test/specs/V1_1/
hashtable_lookup_float_relaxed.mod.py 17 lookups = 4 variable
29 lookup = Input("lookup", "TENSOR_INT32", "{%d}" % lookups)
32 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (lookups, features))
33 hits = Output("hits", "TENSOR_QUANT8_ASYMM", "{%d}, 1.f, 0" % (lookups))
embedding_lookup_relaxed.mod.py 17 lookups = 3 variable
29 index = Input("index", "TENSOR_INT32", "{%d}"%lookups)
31 output = Output("output", "TENSOR_FLOAT32", "{%d, %d, %d}" % (lookups, columns, features))
  /external/harfbuzz_ng/src/
hb-ot-map.cc 36 for (unsigned int i = 0; i < lookups[table_index].len; i++)
37 hb_set_add (lookups_out, lookups[table_index][i].index);
111 hb_ot_map_t::lookup_map_t *lookup = m.lookups[table_index].push ();
306 /* Sort lookups and merge duplicates */
307 if (last_num_lookups < m.lookups[table_index].len)
309 m.lookups[table_index].qsort (last_num_lookups, m.lookups[table_index].len);
312 for (unsigned int i = j + 1; i < m.lookups[table_index].len; i++)
313 if (m.lookups[table_index][i].index != m.lookups[table_index][j].index
    [all...]
  /external/selinux/libselinux/utils/
avcstat.c 27 #define HEADERS "lookups hits misses allocations reclaims frees"
30 unsigned long long lookups; member in struct:avc_cache_stats
176 printf("%10s %10s %10s %10s %10s %10s\n", "lookups",
185 &tmp.lookups,
194 tot.lookups += tmp.lookups;
208 tot.lookups, tot.hits, tot.misses,
211 rel.lookups = tot.lookups - last.lookups;
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/phonelookup/composite/
CompositePhoneLookup.java 74 * Delegates to a set of dependent lookups to build a complete {@link PhoneLookupInfo}.
76 * <p>Note: If any of the dependent lookups fails, the returned future will also fail. If any of
77 * the dependent lookups does not complete, the returned future will also not complete.
82 // lookups finishing when a higher-priority one has already finished.
110 * Delegates to sub-lookups' {@link PhoneLookup#isDirty(ImmutableSet)} completing when the first
122 // Executes all child lookups (possibly in parallel), completing when the first composite lookup
133 * Delegates to a set of dependent lookups and combines results.
135 * <p>Note: If any of the dependent lookups fails, the returned future will also fail. If any of
136 * the dependent lookups does not complete, the returned future will also not complete.
195 /** Delegates to sub-lookups' {@link PhoneLookup#onSuccessfulBulkUpdate()}. *
    [all...]
  /external/clang/test/PCH/
cxx-namespaces.cpp 7 // RUN: %clang_cc1 -include-pch %t -fsyntax-only -ast-dump-lookups -ast-dump-filter N %s | FileCheck %s
12 // RUN: %clang_cc1 -fmodules -include-pch %t -fsyntax-only -ast-dump-lookups -ast-dump-filter N %s | FileCheck %s
  /external/iptables/extensions/
libxt_CT.man 25 \fIid\fP and only have lookups done in that zone. If \fBmark\fP is used
30 \fIid\fP and only have lookups done in that zone. If \fBmark\fP is used
34 Assign this packet to zone \fIid\fP and only have lookups done in that zone.
  /external/skia/bench/
SkGlyphCacheBench.cpp 29 for (int lookups = 0; lookups < 10; lookups++) {
  /external/skqp/bench/
SkGlyphCacheBench.cpp 29 for (int lookups = 0; lookups < 10; lookups++) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
Setup.py 23 from Lookups import *
  /external/autotest/contrib/
dhcp_failed_machines.py 10 /etc/dhcp/dhcpd.conf to be able to do reverse DNS lookups. It also expects the
23 lookups = {} variable
33 lookups[d['fixed-address'].replace(';', '')] = hostname
71 return lookups.get(h, h)
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
p3.cpp 8 // scope of class C. At least one of the lookups shall find a name that
  /external/libnl/include/linux-private/linux/
fib_rules.h 12 /* try to find source address in routing lookups */
  /external/python/cpython2/Tools/pybench/
Setup.py 23 from Lookups import *
  /external/python/cpython3/Tools/pybench/
Setup.py 23 from Lookups import *
  /frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
BaseRecipientChip.java 74 * before any reverse lookups.
80 * before any reverse lookups.

Completed in 2176 milliseconds

1 2 3 4 5 6 7 8 91011>>