Searched defs:lookups (Results 1 - 15 of 15) sorted by relevance

/external/guice/core/src/com/google/inject/internal/
H A DDeferredLookups.java32 * creation it's necessary to {@link #initialize initialize} these 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);
H A DEncounterImpl.java43 private final Lookups lookups; field in class:EncounterImpl
51 EncounterImpl(Errors errors, Lookups lookups) { argument
53 this.lookups = lookups;
129 return lookups.getProvider(key);
138 return lookups.getMembersInjector(typeLiteral);
H A DInjectorImpl.java122 Lookups lookups = new DeferredLookups(this); field in class:InjectorImpl
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DLookupList.java15 private Lookup[] lookups; field in class:LookupList
20 lookups = new Lookup[10];
26 if (lookupCount >= lookups.length) {
27 Lookup[] newLookups = new Lookup[lookups.length + 5];
29 System.arraycopy(lookups, 0, newLookups, 0, lookups.length);
30 lookups = newLookups;
33 lookups[lookupCount] = lookup;
54 lookups[i].writeLookup(writer);
H A DCanonGSUBBuilder.java318 int[] lookups = new int[2];
343 lookups[0] = lookupList.addLookup(compLookup);
344 lookups[1] = lookupList.addLookup(dcmpLookup);
346 return lookups;
349 public static void addLookups(Feature feature, int[] lookups) argument
351 for (int i = 0; i < lookups.length; i += 1) {
352 feature.addLookup(lookups[i]);
469 // build common, inherited lookups...
482 int[] lookups = buildLookups(data, lookupList, script);
486 addLookups(ccmp, lookups);
[all...]
/external/autotest/contrib/
H A Ddhcp_failed_machines.py10 /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/include/clang/AST/
H A DDeclLookups.h71 inline DeclContext::lookups_range DeclContext::lookups() const { function in class:clang::DeclContext
85 return lookups().begin();
89 return lookups().end();
/external/selinux/libselinux/utils/
H A Davcstat.c27 #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...]
/external/c-ares/
H A Dares_private.h262 char *lookups; member in struct:ares_channeldata
H A Dares.h263 char *lookups; member in struct:ares_options
H A Dares_init.c106 #define ARES_CONFIG_CHECK(x) (x->lookups && x->nsort > -1 && \
166 channel->lookups = NULL;
249 if(channel->lookups)
250 free(channel->lookups);
394 /* copy lookups */
395 if (channel->lookups) {
396 options->lookups = strdup(channel->lookups);
397 if (!options->lookups && channel->lookups)
1293 char lookups[3], *l; local
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-shape.cc858 hb_set_t lookups; local
859 lookups.init ();
860 hb_ot_shape_plan_collect_lookups (shape_plan, HB_OT_TAG_GSUB, &lookups);
867 for (hb_codepoint_t lookup_index = -1; hb_set_next (&lookups, &lookup_index);)
H A Dhb-ot-shape-complex-indic.cc350 * lookups for init,pres,abvs,blws features.
417 /* Do this before any lookups have been applied. */
468 &lookups, &count);
476 if (hb_ot_layout_lookup_would_substitute_fast (face, lookups[i].index, glyphs, glyphs_count, zero_context))
482 const hb_ot_map_t::lookup_map_t *lookups; member in struct:would_substitute_feature_t
576 * some broken fonts (like Free Sans) simply copied lookups
578 * And oddly enough, Uniscribe seems to respect those lookups.
580 * base at 0. The font however, only has lookups matching
/external/strace/
H A Dquota.c208 u_int32_t lookups; member in struct:v1_dqstats
220 u_int32_t lookups; member in struct:v2_dqstats
393 tprintf("{lookups=%u, ", dq.lookups);
409 tprintf("{lookups=%u, ", dq.lookups);
/external/testng/lib-supplied/
H A Dguice-2.0.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE NOTICE org/ org/testng/ org/testng/guice/ org/testng/ ...

Completed in 473 milliseconds