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

  /art/compiler/utils/
string_reference_test.cc 43 std::unique_ptr<const DexFile> dex_file2 = builder2.Build("dummy location 2"); local
44 ASSERT_EQ(1u, dex_file2->NumStringIds());
45 ASSERT_STREQ("String2", dex_file2->GetStringData(dex_file2->GetStringId(dex::StringIndex(0))));
46 StringReference sr2(dex_file2.get(), dex::StringIndex(0));
92 std::unique_ptr<const DexFile> dex_file2 = builder2.Build("dummy location 1"); local
93 ASSERT_EQ(arraysize(kDexFile2Strings), dex_file2->NumStringIds());
96 dex_file2->GetStringData(dex_file2->GetStringId(dex::StringIndex(index))));
103 StringReference sr2(dex_file2.get(), dex::StringIndex(index2))
    [all...]
  /art/compiler/
oat_test.cc 590 ScratchFile dex_file2; local
594 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
598 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
601 success = dex_file2.GetFile()->Flush() == 0;
603 input_filenames.push_back(dex_file2.GetFilename().c_str());
698 ScratchFile dex_file2; local
702 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
706 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
709 success = dex_file2.GetFile()->Flush() == 0;
    [all...]
  /art/runtime/
art_method.cc 179 const DexFile* dex_file2 = other->GetDexFile(); local
180 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
181 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
184 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
    [all...]

Completed in 84 milliseconds