Home
last modified time | relevance | path

Searched refs:proto (Results 1 – 15 of 15) sorted by relevance

/art/libdexfile/dex/
Dsignature.h55 Signature(const DexFile* dex, const dex::ProtoId& proto) : dex_file_(dex), proto_id_(&proto) { in Signature() argument
Dtest_dex_file_builder.h76 const ProtoKey* proto = &it->first; // Valid as long as the element remains in protos_. in AddMethod() local
79 class_descriptor, name, proto in AddMethod()
211 auto it = protos_.find(*entry.first.proto); in Build()
325 const ProtoKey* proto; member
335 return ProtoKeyComparator()(*lhs.proto, *rhs.proto); in operator()
Ddex_file.cc374 const ProtoId& proto = GetProtoId(proto_idx); in FindProtoId() local
375 int compare = return_type_idx.index_ - proto.return_type_idx_.index_; in FindProtoId()
377 DexFileParameterIterator it(*this, proto); in FindProtoId()
397 return &proto; in FindProtoId()
/art/test/dexdump/
Dinvoke-polymorphic.txt85 …ang/Object;, (Ljava/lang/String;DILjava/lang/Object;I)Ljava/lang/String; // method@0003, proto@0002
87 …MethodHandle;.invokeExact:([Ljava/lang/Object;)Ljava/lang/Object;, (DI)I // method@0004, proto@0000
90 ….invoke:([Ljava/lang/Object;)Ljava/lang/Object;, (Ljava/lang/String;DI)V // method@0003, proto@0004
Dconst-method-handle.txt89 …okeExact:([Ljava/lang/Object;)Ljava/lang/Object;, ([Ljava/lang/String;)V // method@0012, proto@0010
170 …a/lang/Object;)Ljava/lang/Object;, (Ljava/lang/Object;)Ljava/lang/Class; // method@0011, proto@0001
263 … |0000: const-method-type v0, (CSIJFDLjava/lang/Object;)Z // proto@0011
Dinvoke-custom.txt883 …invoke/MethodHandle;.invoke:([Ljava/lang/Object;)Ljava/lang/Object;, ()V // method@00d3, proto@0041
906 …voke/MethodHandle;.invoke:([Ljava/lang/Object;)Ljava/lang/Object;, (IC)V // method@00d3, proto@0048
/art/perfetto_hprof/
DAndroid.bp21 …esource.com/platform/external/perfetto/+/refs/heads/master/protos/perfetto/ipc/producer_port.proto.
/art/tools/luci/config/
Dluci-notify.cfg3 # https://chromium.googlesource.com/infra/luci/luci-go/+/master/luci_notify/api/config/notify.proto
Dluci-scheduler.cfg5 …s://chromium.googlesource.com/infra/luci/luci-go/+/master/scheduler/appengine/messages/config.proto
/art/dexlayout/
Ddexlayout.h149 const dex_ir::ProtoId* proto);
Ddexlayout.cc235 static std::string GetSignatureForProtoId(const dex_ir::ProtoId* proto) { in GetSignatureForProtoId() argument
236 if (proto == nullptr) { in GetSignatureForProtoId()
241 const dex_ir::TypeList* type_list = proto->Parameters(); in GetSignatureForProtoId()
248 result += proto->ReturnType()->GetStringId()->Data(); in GetSignatureForProtoId()
455 std::string proto("<proto?>"); in IndexString() local
465 proto = GetSignatureForProtoId(proto_id); in IndexString()
468 method.c_str(), proto.c_str(), width, index, width, secondary_index); in IndexString()
1082 const dex_ir::ProtoId* proto) { in DumpCode() argument
1116 const dex_ir::TypeList* parameters = proto->Parameters(); in DumpCode()
Ddex_ir.h699 MethodId(const TypeId* klass, const ProtoId* proto, const StringId* name) in MethodId() argument
700 : class_(klass), proto_(proto), name_(name) { size_ = kMethodIdItemSize; } in MethodId()
/art/runtime/
Dart_method-inl.h251 const dex::ProtoId& proto = dex_file->GetMethodPrototype( in GetParameterTypeList() local
253 return dex_file->GetProtoParameters(proto); in GetParameterTypeList()
/art/dexdump/
Ddexdump.cc899 std::string proto("<proto?>"); in indexString() local
913 proto = signature.ToString(); in indexString()
916 method.c_str(), proto.c_str(), width, index, width, secondary_index); in indexString()
931 const std::string& proto = signature.ToString(); in indexString() local
932 outSize = snprintf(buf.get(), bufSize, "%s // proto@%0*x", proto.c_str(), width, index); in indexString()
/art/compiler/optimizing/
Dinstruction_builder.cc591 const dex::ProtoId& proto = dex_file_->GetMethodPrototype(referrer_method_id); in InitializeParameters() local
592 const dex::TypeList* arg_types = dex_file_->GetProtoParameters(proto); in InitializeParameters()