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

  /external/clang/test/SemaCXX/
PR10177.cpp 8 template<typename T, typename U, U> struct class_ref {}; struct
24 (void)class_ref<int, int&, U<2>::a>(); // expected-note {{here}}
32 (void)class_ref<int, int&, U<N+2>::a>(); // expected-note {{here}}
  /art/profman/
profman.cc 739 // in the out parameter class_ref.
743 /*out*/TypeReference* class_ref) {
751 *class_ref = TypeReference(dex_file, dex::TypeIndex(kInvalidTypeIndex));
769 *class_ref = TypeReference(dex_file, type_index);
775 // Find the method specified by method_spec in the class class_ref.
776 uint32_t FindMethodIndex(const TypeReference& class_ref,
778 const DexFile* dex_file = class_ref.dex_file;
    [all...]
profile_assistant_test.cc 359 for (const auto& class_ref : dex_pc_data.classes) {
361 pmi->dex_references[class_ref.dex_profile_index];
363 class_ref.type_index == it->GetDexTypeIndex()) {
    [all...]
  /art/runtime/jit/
profile_compilation_info.cc 689 for (const ClassReference& class_ref : pmi_ic_dex_pc_data.classes) {
690 const DexReference& dex_ref = pmi.dex_references[class_ref.dex_profile_index];
698 dex_pc_data->AddClass(class_dex_data->profile_index, class_ref.type_index);
720 for (const TypeReference& class_ref : cache.classes) {
721 DexFileData* class_dex_data = GetOrAddDexFileData(class_ref.dex_file);
730 dex_pc_data->AddClass(class_dex_data->profile_index, class_ref.TypeIndex());
    [all...]
profile_compilation_info_test.cc 202 for (const auto& class_ref : inline_cache.classes) {
203 uint8_t dex_profile_index = dex_map.FindOrAdd(const_cast<DexFile*>(class_ref.dex_file),
205 dex_pc_data.AddClass(dex_profile_index, class_ref.TypeIndex());
209 class_ref.dex_file->GetLocation());
211 class_ref.dex_file->GetLocationChecksum(),
212 class_ref.dex_file->NumMethodIds());
    [all...]
  /art/compiler/optimizing/
inliner.cc 736 for (const ProfileCompilationInfo::ClassReference& class_ref : dex_pc_data.classes) {
738 dex_profile_index_to_dex_cache[class_ref.dex_profile_index];
741 if (!dex_cache->GetDexFile()->IsTypeIndexValid(class_ref.type_index)) {
742 VLOG(compiler) << "Profile data corrupt: type index " << class_ref.type_index
747 class_ref.type_index,
757 .GetDexFile()->StringByTypeIdx(class_ref.type_index);
    [all...]
  /art/compiler/driver/
compiler_driver.cc     [all...]
  /art/dex2oat/linker/
oat_writer.cc     [all...]

Completed in 1072 milliseconds