HomeSort by relevance Sort by last modified time
    Searched defs:lookup (Results 1 - 25 of 1168) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/turbine/java/com/google/turbine/binder/lookup/
Scope.java 17 package com.google.turbine.binder.lookup;
24 * Performs qualified name lookup on the given {@link LookupKey}, and returns either a {@link
28 LookupResult lookup(LookupKey lookupKey); method in interface:Scope
  /external/boringssl/src/crypto/x509/
x509_d2.c 64 X509_LOOKUP *lookup; local
66 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file());
67 if (lookup == NULL)
69 X509_LOOKUP_load_file(lookup, NULL, X509_FILETYPE_DEFAULT);
71 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_hash_dir());
72 if (lookup == NULL)
74 X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
85 X509_LOOKUP *lookup; local
88 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file());
89 if (lookup == NULL
    [all...]
  /external/llvm/test/ExecutionEngine/RuntimeDyld/PowerPC/
ppc32_elf_rel_addr16.s 5 .globl lookup
7 .type lookup,@function
8 lookup: # @lookup label
28 .size lookup, .Lfunc_end0-.Lfunc_begin0
  /external/tensorflow/tensorflow/core/kernels/
initializable_lookup_table.cc 21 namespace lookup { namespace in namespace:tensorflow
63 } // namespace lookup
lookup_table_init_op.h 22 namespace lookup { namespace in namespace:tensorflow
30 } // namespace lookup
  /prebuilts/go/darwin-x86/src/plugin/
plugin_stubs.go 11 func lookup(p *Plugin, symName string) (interface{}, error) { func
plugin_dlopen.go 149 func lookup(p *Plugin, symName string) (Symbol, error) { func
  /prebuilts/go/darwin-x86/src/runtime/pprof/
map.go 28 func (m *profMap) lookup(stk []uint64, tag unsafe.Pointer) *profMapEntry { func
  /prebuilts/go/linux-x86/src/plugin/
plugin_stubs.go 11 func lookup(p *Plugin, symName string) (interface{}, error) { func
plugin_dlopen.go 149 func lookup(p *Plugin, symName string) (Symbol, error) { func
  /prebuilts/go/linux-x86/src/runtime/pprof/
map.go 28 func (m *profMap) lookup(stk []uint64, tag unsafe.Pointer) *profMapEntry { func
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/
MDCStrLookup.java 43 public String lookup(String key) { method in class:MDCStrLookup
  /external/tensorflow/tensorflow/core/framework/
lookup_interface.h 27 namespace lookup { namespace in namespace:tensorflow
33 // Lookup interface for batch lookups used by table lookup ops.
46 // - InvalidArgument: if any of the preconditions on the lookup key or value
61 // - InvalidArgument: if any of the preconditions on the lookup key or value
118 return strings::StrCat("A lookup table of size: ", size());
142 } // namespace lookup
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestHandlerResolver.java 49 HttpRequestHandler lookup(String requestURI); method in interface:HttpRequestHandlerResolver
  /external/okhttp/android/main/java/com/squareup/okhttp/internalandroidapi/
Dns.java 31 List<InetAddress> lookup(String hostname) throws UnknownHostException; method in interface:Dns
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Dns.java 34 * lookup IP addresses. Most custom {@link Dns} implementations should delegate to this instance.
37 @Override public List<InetAddress> lookup(String hostname) throws UnknownHostException {
49 List<InetAddress> lookup(String hostname) throws UnknownHostException; method in interface:Dns
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DoubleInetAddressDns.java 29 @Override public List<InetAddress> lookup(String hostname) throws UnknownHostException { method in class:DoubleInetAddressDns
30 List<InetAddress> addresses = Dns.SYSTEM.lookup(hostname);
SingleInetAddressDns.java 30 @Override public List<InetAddress> lookup(String hostname) throws UnknownHostException { method in class:SingleInetAddressDns
31 List<InetAddress> addresses = Dns.SYSTEM.lookup(hostname);
  /external/tensorflow/tensorflow/python/framework/
registry.py 78 def lookup(self, name): member in class:Registry
  /external/valgrind/none/tests/x86/
bug125959-x86.c 6 static int lookup ( int i ) function
33 printf("%08x\n", lookup(j));
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
ALookup.h 30 bool lookup(const T& from, U *to) const;
34 inline bool map(const T& from, V *to) const { return lookup(from, to); }
49 bool ALookup<T, U>::lookup(const T& from, U *to) const { function in class:android::ALookup
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
DummyLookup.java 19 * Lookup that always returns null.
21 public final class DummyLookup<K, V> implements Lookup<K, V> {
23 public V lookup(K key) { method in class:DummyLookup
Lookup.java 29 public interface Lookup<K, V> {
30 @Nullable V lookup(K key); method in interface:Lookup
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/idna/
trie.go 50 // lookup determines the type of block n and looks up the value for b.
51 // For n < t.cutoff, the block is a simple lookup table. Otherwise, the block
54 func (t *sparseBlocks) lookup(n uint32, b byte) uint16 { func
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/idna/
trie.go 50 // lookup determines the type of block n and looks up the value for b.
51 // For n < t.cutoff, the block is a simple lookup table. Otherwise, the block
54 func (t *sparseBlocks) lookup(n uint32, b byte) uint16 { func

Completed in 445 milliseconds

1 2 3 4 5 6 7 8 91011>>