HomeSort by relevance Sort by last modified time
    Searched refs:ProtoId (Results 1 - 17 of 17) sorted by null

  /libcore/dex/src/main/java/com/android/dex/
ProtoId.java 21 public final class ProtoId implements Comparable<ProtoId> {
27 public ProtoId(Dex dex, int shortyIndex, int returnTypeIndex, int parametersOffset) {
34 public int compareTo(ProtoId other) {
Dex.java 243 public List<ProtoId> protoIds() {
620 public ProtoId readProtoId() {
624 return new ProtoId(Dex.this, shortyIndex, returnTypeIndex, parametersOffset);
    [all...]
  /dalvik/dx/src/com/android/dx/io/
DexIndexPrinter.java 23 import com.android.dex.ProtoId;
69 for (ProtoId protoId : dex.protoIds()) {
70 System.out.println("proto " + index + ": " + protoId);
  /art/runtime/
dex_file.h 169 struct ProtoId {
176 DISALLOW_COPY_AND_ASSIGN(ProtoId);
546 const DexFile::ProtoId& signature) const;
555 const ProtoId& GetMethodPrototype(const MethodId& method_id) const {
633 const char* GetReturnTypeDescriptor(const ProtoId& proto_id) const {
643 // Returns the ProtoId at the specified index.
644 const ProtoId& GetProtoId(uint32_t idx) const {
649 uint16_t GetIndexForProtoId(const ProtoId& proto_id) const {
656 const ProtoId* FindProtoId(uint16_t return_type_id,
668 const ProtoId& proto_id = GetProtoId(proto_idx)
    [all...]
dex_file_test.cc 226 const DexFile::ProtoId& to_find = java_lang_dex_file_->GetProtoId(i);
234 const DexFile::ProtoId* found =
246 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_);
object_utils.h 473 const DexFile::ProtoId& GetPrototype() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
479 const DexFile::ProtoId& proto = GetPrototype();
486 const DexFile::ProtoId& proto_id = dex_file.GetMethodPrototype(method_id);
494 const DexFile::ProtoId& proto_id = dex_file.GetMethodPrototype(method_id);
dex_file_verifier.cc     [all...]
dex_file.cc 295 proto_ids_ = reinterpret_cast<const ProtoId*>(b + h->proto_ids_off_);
405 const DexFile::ProtoId& signature) const {
495 const DexFile::ProtoId* DexFile::FindProtoId(uint16_t return_type_idx,
501 const DexFile::ProtoId& proto = GetProtoId(mid);
589 const ProtoId& proto_id = GetProtoId(proto_idx);
    [all...]
class_linker.cc     [all...]
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 46 import com.android.dex.ProtoId;
207 public ProtoId adjust(ProtoId protoId) {
208 return new ProtoId(target,
209 adjustString(protoId.getShortyIndex()),
210 adjustType(protoId.getReturnTypeIndex()),
211 adjustTypeListOffset(protoId.getParametersOffset()));
DexMerger.java 27 import com.android.dex.ProtoId;
443 new IdMerger<ProtoId>(idsDefsOut) {
448 @Override ProtoId read(Dex.Section in, IndexMap indexMap, int index) {
459 @Override void write(ProtoId value) {
    [all...]
  /art/compiler/sea_ir/types/
type_inference.cc 89 const art::DexFile::ProtoId& proto_id =
  /prebuilts/runtime/common/dex/
dex-host-prebuilt.jar 
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationAccess.java 24 import com.android.dex.ProtoId;
292 ProtoId proto = dex.protoIds().get(protoIndex);
  /art/runtime/verifier/
method_verifier.cc     [all...]
  /art/compiler/driver/
compiler_driver.cc     [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 742 milliseconds