HomeSort by relevance Sort by last modified time
    Searched refs:Lookup (Results 76 - 100 of 443) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/misc/cgo/testsanitizers/
tsan5.go 37 user.Lookup(u.Username)
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
typelink.go 36 tl := ctxt.Syms.Lookup("runtime.typelink", 0)
data.go 745 rel := ctxt.Syms.Lookup(".rel", 0)
1063 sp := ctxt.Syms.Lookup(p, 0)
1068 s := ctxt.Syms.Lookup(name, 0)
1113 sym := ctxt.Syms.Lookup(symname, 0)
1128 sp := ctxt.Syms.Lookup(p, 0)
1190 p.sym = ctxt.Syms.Lookup(name, 0)
    [all...]
  /prebuilts/go/linux-x86/src/os/user/
lookup_android.go 21 return nil, errors.New("user: Lookup not implemented on android")
lookup_plan9.go 15 // Supports Current(), but not Lookup()/LookupId().
  /development/host/windows/usb/api/
adb_object_handle.cpp 148 AdbObjectHandle* AdbObjectHandle::Lookup(ADBAPIHANDLE adb_hndl) {
  /external/libchrome/base/trace_event/
trace_event_synthetic_delay.h 92 static TraceEventSyntheticDelay* Lookup(const std::string& name);
heap_profiler_allocation_register.h 70 Cell** p_cell = Lookup(key);
106 Cell* cell = *Lookup(key);
153 // for any other cell. With that Lookup() is the only function that handles
164 Cell** Lookup(const Key& key) const {
  /external/v8/src/
identity-map.h 48 RawEntry Lookup(Object* key);
address-map.h 31 Entry* entry = Lookup(key, Hash(key));
53 int Lookup(HeapObject* obj) {
196 SerializerReference Lookup(HeapObject* obj) {
  /external/webrtc/webrtc/examples/peerconnection/server/
peer_channel.h 86 ChannelMember* Lookup(DataSocket* ds) const;
  /frameworks/native/services/vr/performanced/
cpu_set.h 70 // Lookup and return a CpuSet from a cpuset path. Ownership of the pointer
73 CpuSet* Lookup(const std::string& path);
  /libcore/ojluni/src/main/java/java/lang/invoke/
MethodHandles.java 43 * <li>Lookup methods which help create method handles for methods and fields.
64 * Returns a {@link Lookup lookup object} with
66 * These capabilities include <a href="MethodHandles.Lookup.html#privacc">private access</a> to the caller.
67 * Factory methods on the lookup object can create
71 * This lookup object is a <em>capability</em> which may be delegated to trusted agents.
77 * For any given caller class {@code C}, the lookup object returned by this call
78 * has equivalent capabilities to any lookup object
82 * @return a lookup object for the caller of this method, with private access
86 public static Lookup lookup() method in class:MethodHandles
    [all...]
  /external/webrtc/webrtc/base/
flags.cc 131 Flag* FlagList::Lookup(const char* name) {
192 // lookup the flag
193 Flag* flag = Lookup(name);
260 RTC_CHECK(!Lookup(flag->name())) << "flag " << flag->name()
  /prebuilts/go/darwin-x86/src/html/template/
clone_test.go 112 if _, err := t0.Lookup("a").Clone(); err == nil {
113 t.Error(`t0.Lookup("a").Clone(): got nil err want non-nil`)
115 if _, err := t0.Lookup("lhs").Clone(); err == nil {
116 t.Error(`t0.Lookup("lhs").Clone(): got nil err want non-nil`)
229 if tmpl.Lookup(tmpl.Name()) != tmpl {
230 t.Error("after Clone, tmpl.Lookup(tmpl.Name()) != tmpl")
  /prebuilts/go/linux-x86/src/html/template/
clone_test.go 112 if _, err := t0.Lookup("a").Clone(); err == nil {
113 t.Error(`t0.Lookup("a").Clone(): got nil err want non-nil`)
115 if _, err := t0.Lookup("lhs").Clone(); err == nil {
116 t.Error(`t0.Lookup("lhs").Clone(): got nil err want non-nil`)
229 if tmpl.Lookup(tmpl.Name()) != tmpl {
230 t.Error("after Clone, tmpl.Lookup(tmpl.Name()) != tmpl")
  /external/v8/src/ast/
scopes.h 26 // A hash map to support fast variable declaration and lookup.
37 Variable* Lookup(const AstRawString* name);
135 // Lookup a variable in this scope. Returns the variable or NULL if not found.
137 Variable* result = variables_.Lookup(name);
144 // Lookup a variable in this scope or outer scopes.
146 Variable* Lookup(const AstRawString* name);
403 return variables_.Lookup(name) != NULL;
517 // Lookup a variable reference given by name recursively starting with this
598 return params_.Contains(variables_.Lookup(name));
    [all...]
  /frameworks/native/vulkan/nulldrv/
null_driver_gen.cpp 31 PFN_vkVoidFunction Lookup(const char* name,
43 PFN_vkVoidFunction Lookup(const char* name, const NameProc (&procs)[N]) {
44 return Lookup(name, procs, procs + N);
216 return Lookup(name, kGlobalProcs);
220 return Lookup(name, kInstanceProcs);
  /external/desugar/java/com/google/devtools/build/android/desugar/
LambdaDesugaring.java 26 import java.lang.invoke.MethodHandles.Lookup;
346 Lookup lookup = createLookup(internalName); local
348 args.add(lookup);
352 args.add(toJvmMetatype(lookup, bsmArg));
393 private Lookup createLookup(String lookupClass) throws ReflectiveOperationException {
395 Constructor<Lookup> constructor = Lookup.class.getDeclaredConstructor(Class.class);
402 * given ASM {@link Handle} or {@link Type}. {@code lookup} is only used for resolving
405 private Object toJvmMetatype(Lookup lookup, Object asm) throws ReflectiveOperationException
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/invoke/
MethodHandleAccessorsTest.java 538 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
543 tryAccessor(lookup.findSetter(ValueHolder.class, "m_z", boolean.class),
545 tryAccessor(lookup.findGetter(ValueHolder.class, "m_z", boolean.class),
548 tryAccessor(lookup.findStaticSetter(ValueHolder.class, "s_z", boolean.class),
550 tryAccessor(lookup.findStaticGetter(ValueHolder.class, "s_z", boolean.class),
558 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
578 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
598 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
618 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
638 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
658 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
678 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
698 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
720 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
759 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
782 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
815 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
870 MethodHandles.Lookup lookup = MethodHandles.lookup(); local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
data.go 745 rel := ctxt.Syms.Lookup(".rel", 0)
1063 sp := ctxt.Syms.Lookup(p, 0)
1068 s := ctxt.Syms.Lookup(name, 0)
1113 sym := ctxt.Syms.Lookup(symname, 0)
1128 sp := ctxt.Syms.Lookup(p, 0)
1190 p.sym = ctxt.Syms.Lookup(name, 0)
    [all...]
  /external/flatbuffers/src/
idl_parser.cpp 525 auto ed = enums_.Lookup(
648 !type.enum_def->attributes.Lookup("bit_flags") &&
657 field->deprecated = field->attributes.Lookup("deprecated") != nullptr;
658 auto hash_name = field->attributes.Lookup("hash");
680 auto cpp_type = field->attributes.Lookup("cpp_type");
687 field->required = field->attributes.Lookup("required") != nullptr;
691 field->key = field->attributes.Lookup("key") != nullptr;
703 field->native_inline = field->attributes.Lookup("native_inline") != nullptr;
707 auto nested = field->attributes.Lookup("nested_flatbuffer");
724 auto attr = field->attributes.Lookup("id")
1757 static type_lookup lookup[] = { local
    [all...]
  /external/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 83 const DirectoryLookup *Lookup, Token &Tok,
194 /// Simple lookup for a SourceLocation (specifically one denoting the hash in
204 /// Simple lookup for a SourceLocation (specifically one denoting the hash in
330 FileID FileId, Lexer &RawLex, const DirectoryLookup *Lookup, Token &Tok,
514 const DirectoryLookup *Lookup = PP.GetCurDirLookup();
515 if (Lookup)
516 ++Lookup;
518 if (!HandleHasInclude(FileId, RawLex, Lookup, RawToken,
  /external/llvm/lib/IR/
ConstantsContext.h 612 /// Hash once, and reuse it for the lookup and the insertion if needed.
613 LookupKeyHashed Lookup(MapInfo::getHashValue(Key), Key);
617 auto I = Map.find_as(Lookup);
619 Result = create(Ty, V, Lookup);
640 /// Hash once, and reuse it for the lookup and the insertion if needed.
641 LookupKeyHashed Lookup(MapInfo::getHashValue(Key), Key);
643 auto I = Map.find_as(Lookup);
659 Map.insert_as(CP, Lookup);
  /external/v8/src/compiler/
load-elimination.h 54 Node* Lookup(Node* node) const;
88 Node* Lookup(Node* object, Node* index) const;
127 Node* Lookup(Node* object) const;

Completed in 1108 milliseconds

1 2 34 5 6 7 8 91011>>