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

1 2

  /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 199 struct ProtoId {
206 DISALLOW_COPY_AND_ASSIGN(ProtoId);
653 const DexFile::ProtoId& signature) const;
662 const ProtoId& GetMethodPrototype(const MethodId& method_id) const {
746 const char* GetReturnTypeDescriptor(const ProtoId& proto_id) const {
756 // Returns the ProtoId at the specified index.
757 const ProtoId& GetProtoId(uint32_t idx) const {
762 uint16_t GetIndexForProtoId(const ProtoId& proto_id) const {
769 const ProtoId* FindProtoId(uint16_t return_type_idx,
771 const ProtoId* FindProtoId(uint16_t return_type_idx
    [all...]
dex_file_test.cc 308 const DexFile::ProtoId& to_find = java_lang_dex_file_->GetProtoId(i);
316 const DexFile::ProtoId* found =
328 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_);
art_method-inl.h 344 inline const DexFile::ProtoId& ArtMethod::GetPrototype() {
353 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype(
377 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
431 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
dex_file_verifier.cc     [all...]
art_method.h 593 const DexFile::ProtoId& GetPrototype() SHARED_REQUIRES(Locks::mutator_lock_);
dex_file_verifier_test.cc     [all...]
dex_file.cc 440 proto_ids_(reinterpret_cast<const ProtoId*>(base + header_->proto_ids_off_)),
587 const DexFile::ProtoId& signature) const {
695 const DexFile::ProtoId* DexFile::FindProtoId(uint16_t return_type_idx,
702 const DexFile::ProtoId& proto = GetProtoId(mid);
792 const ProtoId* proto_id = FindProtoId(return_type_idx, param_type_indices);
    [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 28 import com.android.dex.ProtoId;
438 new IdMerger<ProtoId>(idsDefsOut) {
443 @Override ProtoId read(Dex.Section in, IndexMap indexMap, int index) {
454 @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/compiler/utils/
test_dex_file_builder.h 137 uint32_t field_ids_offset = proto_ids_offset + protos_.size() * sizeof(DexFile::ProtoId);
184 uint32_t raw_offset = proto_ids_offset + entry.second.idx * sizeof(DexFile::ProtoId);
  /art/compiler/debug/
elf_debug_info_writer.h 141 const DexFile::ProtoId& dex_proto = dex->GetMethodPrototype(dex_method);
  /art/compiler/dex/quick/
dex_file_method_inliner.cc     [all...]
  /art/compiler/optimizing/
instruction_builder.cc 450 const DexFile::ProtoId& proto = dex_file_->GetMethodPrototype(referrer_method_id);
    [all...]
  /art/runtime/verifier/
method_verifier.cc     [all...]
  /libcore/
non_openjdk_java_files.mk 335 dex/src/main/java/com/android/dex/ProtoId.java \
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0/
builder-2.1.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta1/
builder-2.1.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta3/
builder-2.1.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-rc1/
builder-2.1.0-rc1.jar 

Completed in 4283 milliseconds

1 2