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

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/linux-x86/src/go/types/
ordering.go 41 embedded := check.pkg.scope.Lookup(ident.Name)
  /prebuilts/go/linux-x86/src/os/user/
lookup_windows.go 127 // BUG(brainman): Lookup and LookupId functions do not set
  /prebuilts/go/linux-x86/src/reflect/
example_test.go 83 if alias, ok := field.Tag.Lookup("alias"); ok {
  /art/runtime/
class_table.h 196 mirror::Class* Lookup(const char* descriptor, size_t hash)
imt_conflict_table.h 33 // with the last entry being null to make an assembly implementation of a lookup
132 // Lookup the implementation ArtMethod associated to `interface_method`. Return null
134 ArtMethod* Lookup(ArtMethod* interface_method, PointerSize pointer_size) const {
  /build/kati/
var.go 298 // Lookup looks up named make variable.
299 func (vt Vars) Lookup(name string) Var {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramStateTrait.h 73 static lookup_type Lookup(data_type B, key_type K) {
74 return B.lookup(K);
  /external/flatbuffers/src/
idl_gen_grpc.cpp 36 auto val = method_->attributes.Lookup("streaming");
  /external/harfbuzz_ng/src/
hb-ot-layout.cc 1001 typedef OT::SubstLookup Lookup;
1015 typedef OT::PosLookup Lookup;
    [all...]
  /external/libchrome/base/
id_map.h 139 T* Lookup(KeyType id) const {
  /external/libchrome/base/trace_event/
trace_event_synthetic_delay.cc 47 TraceEventSyntheticDelay* TraceEventSyntheticDelay::Lookup(
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 575 SmallDenseMap<uint32_t, IrrNode *, 4> Lookup;
621 StartIrr = Lookup[Start.Index];
627 auto L = Lookup.find(Node.Index);
628 if (L == Lookup.end())
683 /// All other stages make use of this ordering. Save a lookup from BlockT
826 BlockNode getNode(const BlockT *BB) const { return Nodes.lookup(BB); }
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
proto_writer.h 198 // TypeInfo to lookup types.
238 // bookkeeping associated with name lookup.
241 // Lookup the field in the current element. Looks in the base descriptor
244 const google::protobuf::Field* Lookup(StringPiece name);
246 // Lookup the field type in the type descriptor. Returns NULL if the type
287 // typeinfo_ : the TypeInfo object to lookup types.
  /external/skia/src/core/
SkAnalyticEdge.cpp 15 // Moreover, we'll compute fDY by quickly lookup the inverse table (if possible).
45 ? QuickFDot6Inverse::Lookup(absSlope)
  /external/v8/src/interpreter/
bytecode-peephole-optimizer.cc 299 PeepholeActionTable::Lookup(last()->bytecode(), node->bytecode());
  /external/v8/src/snapshot/
serializer.cc 170 SerializerReference reference = reference_map_.Lookup(obj);
339 serializer_->code_address_map_->Lookup(object_->address());
543 serializer_->reference_map()->Lookup(object_);
569 int root_index = serializer_->root_index_map()->Lookup(current_contents);
  /libcore/ojluni/src/main/java/sun/invoke/util/
VerifyAccess.java 41 private static final int PACKAGE_ALLOWED = java.lang.invoke.MethodHandles.Lookup.PACKAGE;
155 * @param lookupClass the class performing the lookup (D)
  /prebuilts/go/darwin-x86/src/cmd/vet/
copylock.go 233 if plock := types.NewMethodSet(types.NewPointer(typ)).Lookup(tpkg, "Lock"); plock != nil {
234 if lock := types.NewMethodSet(typ).Lookup(tpkg, "Lock"); lock == nil {
  /prebuilts/go/darwin-x86/src/go/ast/
resolve.go 33 alt = altScope.Lookup(obj.Name)
46 if obj := scope.Lookup(ident.Name); obj != nil {
  /prebuilts/go/darwin-x86/src/go/types/
builtins_test.go 117 if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] {
122 if _, ok := Unsafe.Scope().Lookup(name).(*Builtin); ok && !seen[name] {
labels.go 26 if alt := all.Lookup(name); alt != nil {
222 obj := all.Lookup(name)
methodset.go 42 // Lookup returns the method with matching package and name, or nil if not found.
43 func (s *MethodSet) Lookup(pkg *Package, name string) *Selection {
stdlib_test.go 217 errorError := Universe.Lookup("error").Type().Underlying().(*Interface).ExplicitMethod(0) // (error).Error
219 predeclared := obj == Universe.Lookup(obj.Name()) || obj == errorError
  /prebuilts/go/darwin-x86/src/text/template/
template.go 175 // Lookup returns the template with the given name that is associated with t.
177 func (t *Template) Lookup(name string) *Template {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/width/
width.go 72 // Lookup reports the Properties of the first rune in b and the number of bytes
74 func Lookup(b []byte) (p Properties, size int) {
75 v, sz := trie.lookup(b)
90 v, _ := trie.lookup(buf[:n])

Completed in 666 milliseconds

1 2 3 4 5 6 7 891011>>