Home
last modified time | relevance | path

Searched refs:proto (Results 1 – 17 of 17) 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.h75 const ProtoKey* proto = &it->first; // Valid as long as the element remains in protos_. in AddMethod() local
78 class_descriptor, name, proto in AddMethod()
213 auto it = protos_.find(*entry.first.proto);
327 const ProtoKey* proto; member
337 return ProtoKeyComparator()(*lhs.proto, *rhs.proto); in operator()
Ddex_file.cc391 const ProtoId& proto = GetProtoId(proto_idx); in FindProtoId() local
392 int compare = return_type_idx.index_ - proto.return_type_idx_.index_; in FindProtoId()
394 DexFileParameterIterator it(*this, proto); in FindProtoId()
414 return &proto; in FindProtoId()
/art/test/dexdump/
Dinvoke-polymorphic.txt87 …ang/Object;, (Ljava/lang/String;DILjava/lang/Object;I)Ljava/lang/String; // method@0003, proto@0002
89 …MethodHandle;.invokeExact:([Ljava/lang/Object;)Ljava/lang/Object;, (DI)I // method@0004, proto@0000
92 ….invoke:([Ljava/lang/Object;)Ljava/lang/Object;, (Ljava/lang/String;DI)V // method@0003, proto@0004
Dconst-method-handle.txt91 …okeExact:([Ljava/lang/Object;)Ljava/lang/Object;, ([Ljava/lang/String;)V // method@0012, proto@0010
174 …a/lang/Object;)Ljava/lang/Object;, (Ljava/lang/Object;)Ljava/lang/Class; // method@0011, proto@0001
271 … |0000: const-method-type v0, (CSIJFDLjava/lang/Object;)Z // proto@0011
Dall-dex-files.txt8633 …okeExact:([Ljava/lang/Object;)Ljava/lang/Object;, ([Ljava/lang/String;)V // method@0012, proto@0010
8716 …a/lang/Object;)Ljava/lang/Object;, (Ljava/lang/Object;)Ljava/lang/Class; // method@0011, proto@0001
8813 … |0000: const-method-type v0, (CSIJFDLjava/lang/Object;)Z // proto@0011
9731 …invoke/MethodHandle;.invoke:([Ljava/lang/Object;)Ljava/lang/Object;, ()V // method@00d3, proto@0041
9754 …voke/MethodHandle;.invoke:([Ljava/lang/Object;)Ljava/lang/Object;, (IC)V // method@00d3, proto@0048
14779 …ang/Object;, (Ljava/lang/String;DILjava/lang/Object;I)Ljava/lang/String; // method@0003, proto@0002
14781 …MethodHandle;.invokeExact:([Ljava/lang/Object;)Ljava/lang/Object;, (DI)I // method@0004, proto@0000
14784 ….invoke:([Ljava/lang/Object;)Ljava/lang/Object;, (Ljava/lang/String;DI)V // method@0003, proto@0004
Dinvoke-custom.txt907 …invoke/MethodHandle;.invoke:([Ljava/lang/Object;)Ljava/lang/Object;, ()V // method@00d3, proto@0041
930 …voke/MethodHandle;.invoke:([Ljava/lang/Object;)Ljava/lang/Object;, (IC)V // method@00d3, proto@0048
/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/perfetto_hprof/
DAndroid.bp21 …esource.com/platform/external/perfetto/+/refs/heads/master/protos/perfetto/ipc/producer_port.proto.
/art/dexlayout/
Ddexlayout.h148 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.h259 const dex::ProtoId& proto = dex_file->GetMethodPrototype( in GetParameterTypeList() local
261 return dex_file->GetProtoParameters(proto); in GetParameterTypeList()
/art/tools/
Dbuildbot-build.sh356 …$ANDROID_HOST_OUT/bin/conv_linker_config proto -s $ANDROID_BUILD_TOP/system/core/rootdir/etc/linke…
/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.cc623 const dex::ProtoId& proto = dex_file_->GetMethodPrototype(referrer_method_id); in InitializeParameters() local
624 const dex::TypeList* arg_types = dex_file_->GetProtoParameters(proto); in InitializeParameters()