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

  /art/compiler/dex/
mir_method_info.cc 44 if (it->target_dex_file_ != nullptr) {
45 unresolved.target_dex_file_ = it->target_dex_file_;
79 it->target_dex_file_ = dequicken_ref->dex_file;
83 MethodReference devirt_ref(it->target_dex_file_, it->target_method_idx_);
84 MethodReference* devirt_target = (it->target_dex_file_ != nullptr) ? &devirt_ref : nullptr;
95 it->target_dex_file_ = dex_file;
108 current_dex_cache.Assign(runtime->GetClassLinker()->FindDexCache(*it->target_dex_file_));
112 *it->target_dex_file_, nullptr /* code_item not used */, 0u /* class_def_idx not used */,
151 MethodReference target_method(it->target_dex_file_, it->target_method_idx_)
    [all...]
mir_method_info.h 112 target_dex_file_(nullptr),
119 DCHECK(target_dex_file_ == nullptr);
122 target_dex_file_ = ref.dex_file;
160 return MethodReference(target_dex_file_, target_method_idx_);
190 CHECK_EQ(target_dex_file_, info.target_dex_file_);
225 // Before Resolve(), target_dex_file_ and target_method_idx_ hold the verification-based
229 const DexFile* target_dex_file_; member in class:art::MirMethodLoweringInfo
  /art/compiler/
compiled_method.h 230 return MethodReference(target_dex_file_, method_idx_);
235 return target_dex_file_;
245 return target_dex_file_;
260 : target_dex_file_(target_dex_file),
270 const DexFile* target_dex_file_; member in class:art::LinkerPatch
294 lhs.target_dex_file_ == rhs.target_dex_file_ &&
302 : (lhs.target_dex_file_ != rhs.target_dex_file_) ? lhs.target_dex_file_ < rhs.target_dex_file
    [all...]

Completed in 50 milliseconds