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

1 2

  /art/runtime/
dex_file-inl.h 61 if (dex_file_ == nullptr) {
62 return rhs.dex_file_ == nullptr;
64 if (rhs.dex_file_ == nullptr) {
67 if (dex_file_ == rhs.dex_file_) {
71 const char* lhs_shorty_data = dex_file_->StringDataAndUtf16LengthByIdx(proto_id_->shorty_idx_,
77 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,
85 const DexFile::TypeId& return_type_id = dex_file_->GetTypeId(proto_id_->return_type_idx_);
87 rhs.dex_file_->GetTypeId(rhs.proto_id_->return_type_idx_);
88 if (!DexFileStringEquals(dex_file_, return_type_id.descriptor_idx_
    [all...]
dex_file_verifier.h 38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location),
114 const DexFile* const dex_file_; member in class:art::DexFileVerifier
dex_file_verifier.cc 70 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumStringIds(), error_string))) {
73 return dex_file_->StringDataByIdx(idx);
77 if (UNLIKELY(!CheckIndex(type_idx, dex_file_->NumTypeIds(), error_string))) {
80 const DexFile::TypeId& type_id = dex_file_->GetTypeId(type_idx);
86 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) {
89 return &dex_file_->GetFieldId(idx);
93 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumMethodIds(), err_string))) {
96 return &dex_file_->GetMethodId(idx);
684 ClassDataItemIterator it(*dex_file_, ptr_);
    [all...]
dex_file.h 1050 const DexFile& dex_file_; member in class:art::DexFileParameterIterator
1082 const DexFile* const dex_file_; member in class:art::Signature
1265 const DexFile& dex_file_; member in class:art::ClassDataItemIterator
1309 const DexFile& dex_file_; member in class:art::EncodedStaticFieldValueIterator
    [all...]
dex_file.cc     [all...]
  /art/compiler/driver/
dex_compilation_unit.h 56 return dex_file_;
72 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
73 return dex_file_->GetMethodShorty(method_id);
77 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
78 return dex_file_->GetMethodShorty(method_id, shorty_len);
118 const DexFile* const dex_file_; member in class:art::DexCompilationUnit
dex_compilation_unit.cc 30 dex_file_(cu->dex_file),
50 dex_file_(&dex_file),
61 symbol_ += MangleForJni(PrettyMethod(dex_method_idx_, *dex_file_));
compiler_driver.h 435 return *dex_file_;
467 : dex_file_(dex_file),
471 CHECK(dex_file_ != nullptr);
475 const DexFile* const dex_file_; member in class:art::CompilerDriver::PatchInformation
    [all...]
compiler_driver.cc 1543 const DexFile* const dex_file_; member in class:art::ParallelCompilationManager
    [all...]
  /art/compiler/sea_ir/types/
type_inference.cc 40 : dex_file_(graph->GetDexFile()), dex_method_idx_(graph->method_idx_), type_cache_(types),
42 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
43 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_));
48 art::verifier::RegTypeCache* types): dex_file_(graph->GetDexFile()),
52 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
53 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_));
58 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
59 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_
    [all...]
type_inference.h 84 const art::DexFile* dex_file_; member in class:sea_ir::FunctionTypeInfo
  /art/runtime/verifier/
method_verifier-inl.h 50 return MethodReference(dex_file_, dex_method_idx_);
method_verifier.cc 338 dex_file_(dex_file),
518 ClassReference ref(dex_file_, dex_file_->GetIndexForClassDef(*class_def_));
526 std::string location(StringPrintf("%s: [0x%X] ", PrettyMethod(dex_method_idx_, *dex_file_).c_str(),
534 return info_messages_ << "VFY: " << PrettyMethod(dex_method_idx_, *dex_file_)
645 mirror::Class* exception_type = linker->ResolveType(*dex_file_,
    [all...]
method_verifier.h 163 return dex_file_->GetVersion();
653 const DexFile* const dex_file_; // The dex file containing the method. member in class:art::verifier::MethodVerifier
  /art/runtime/mirror/
dex_cache.h 150 return GetFieldPtr<const DexFile*>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_));
155 return SetFieldPtr<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_), dex_file);
165 uint64_t dex_file_; member in class:art::mirror::FINAL
dex_cache.cc 47 SetFieldPtr<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_), dex_file);
  /art/compiler/optimizing/
builder.h 47 dex_file_(dex_file),
127 const DexFile* const dex_file_; member in class:art::HGraphBuilder
builder.cc 328 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
329 const DexFile::ProtoId& proto_id = dex_file_->GetProtoId(method_id.proto_idx_);
330 const char* descriptor = dex_file_->StringDataByIdx(proto_id.shorty_idx_);
  /art/compiler/
oat_writer.cc 211 dex_file_(nullptr),
216 DCHECK(dex_file_ == nullptr);
218 dex_file_ = dex_file;
227 dex_file_ = nullptr;
246 const DexFile* dex_file_; member in class:art::OatWriter::DexMethodVisitor
298 writer_->compiler_driver_->GetCompiledMethod(MethodReference(dex_file_, method_idx));
307 ClassReference class_ref(dex_file_, class_def_index_);
443 std::string name = PrettyMethod(it.GetMemberIndex(), *dex_file_, true);
458 ClassReference class_ref(dex_file_, class_def_index_);
474 << PrettyMethod(it.GetMemberIndex(), *dex_file_);
    [all...]
  /art/compiler/sea_ir/code_gen/
code_gen.h 150 const art::DexFile& dex_file): CodeGenPassVisitor(code_gen_data), dex_file_(dex_file) { }
168 const art::DexFile& dex_file_; member in class:sea_ir::CodeGenVisitor
code_gen.cc 199 symbol += art::MangleForJni(PrettyMethod(invoke->GetCalledMethodIndex(), dex_file_));
  /art/compiler/sea_ir/ir/
sea.h 281 return &dex_file_;
349 const art::DexFile& dex_file_; member in class:sea_ir::SeaGraph
sea.cc 465 regions_(), parameters_(), dex_file_(df), code_item_(NULL) { }
  /art/compiler/dex/quick/
dex_file_method_inliner.h 327 const DexFile* dex_file_; member in class:art::DexFileMethodInliner
dex_file_method_inliner.cc 395 dex_file_(NULL) {
684 DCHECK(dex_file_ == nullptr);
693 dex_file_ = dex_file;
702 if (PrettyMethod(method_idx, *dex_file_) == "int java.lang.String.length()") {
705 LOG(ERROR) << "Inliner: " << PrettyMethod(method_idx, *dex_file_) << " already inline";
    [all...]

Completed in 772 milliseconds

1 2