HomeSort by relevance Sort by last modified time
    Searched refs:ProtoId (Results 1 - 20 of 20) 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...]
  /art/runtime/
dex_file.h 183 struct ProtoId {
190 DISALLOW_COPY_AND_ASSIGN(ProtoId);
602 const DexFile::ProtoId& signature) const;
611 const ProtoId& GetMethodPrototype(const MethodId& method_id) const {
689 const char* GetReturnTypeDescriptor(const ProtoId& proto_id) const {
699 // Returns the ProtoId at the specified index.
700 const ProtoId& GetProtoId(uint32_t idx) const {
705 uint16_t GetIndexForProtoId(const ProtoId& proto_id) const {
712 const ProtoId* FindProtoId(uint16_t return_type_idx,
714 const ProtoId* FindProtoId(uint16_t return_type_idx
    [all...]
method_helper-inl.h 60 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
dex_file_test.cc 306 const DexFile::ProtoId& to_find = java_lang_dex_file_->GetProtoId(i);
314 const DexFile::ProtoId* found =
326 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_);
method_helper.cc 89 const DexFile::ProtoId* other_sig =
dex_file_verifier.cc     [all...]
dex_file.cc 358 proto_ids_(reinterpret_cast<const ProtoId*>(base + header_->proto_ids_off_)),
519 const DexFile::ProtoId& signature) const {
607 const DexFile::ProtoId* DexFile::FindProtoId(uint16_t return_type_idx,
614 const DexFile::ProtoId& proto = GetProtoId(mid);
704 const ProtoId* proto_id = FindProtoId(return_type_idx, param_type_indices);
    [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);
  /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 28 import com.android.dex.ProtoId;
445 new IdMerger<ProtoId>(idsDefsOut) {
450 @Override ProtoId read(Dex.Section in, IndexMap indexMap, int index) {
461 @Override void write(ProtoId value) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fltdefs.h 37 #define FILTER_PROTO(ProtoId) MAKELONG(MAKEWORD((ProtoId),0x00),0x00000)
  /art/runtime/mirror/
art_method-inl.h 483 inline const DexFile::ProtoId& ArtMethod::GetPrototype() {
492 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype(
514 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
art_method.h 524 const DexFile::ProtoId& GetPrototype() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
  /art/compiler/sea_ir/types/
type_inference.cc 89 const art::DexFile::ProtoId& proto_id =
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationAccess.java 23 import com.android.dex.ProtoId;
277 ProtoId proto = dex.protoIds().get(protoIndex);
  /art/compiler/optimizing/
builder.cc 329 const DexFile::ProtoId& proto_id = dex_file_->GetProtoId(method_id.proto_idx_);
  /art/compiler/dex/quick/
dex_file_method_inliner.cc 642 const DexFile::ProtoId* proto_id = dex_file->FindProtoId(return_type, signature_type_idxs,
    [all...]
  /art/runtime/verifier/
method_verifier.cc     [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 513 milliseconds