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

  /art/runtime/arch/
instruction_set_test.cc 25 TEST(InstructionSetTest, GetInstructionSetFromString) {
26 EXPECT_EQ(kArm, GetInstructionSetFromString("arm"));
27 EXPECT_EQ(kArm64, GetInstructionSetFromString("arm64"));
28 EXPECT_EQ(kX86, GetInstructionSetFromString("x86"));
29 EXPECT_EQ(kX86_64, GetInstructionSetFromString("x86_64"));
30 EXPECT_EQ(kMips, GetInstructionSetFromString("mips"));
31 EXPECT_EQ(kMips64, GetInstructionSetFromString("mips64"));
32 EXPECT_EQ(kNone, GetInstructionSetFromString("none"));
33 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string"));
57 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA)))
    [all...]
instruction_set.cc 66 InstructionSet GetInstructionSetFromString(const char* isa_str) {
instruction_set.h 89 InstructionSet GetInstructionSetFromString(const char* instruction_set);
  /art/cmdline/
cmdline.h 148 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data());
260 if (GetInstructionSetFromString(parent_dir_name.c_str()) != kNone) {
  /art/dexoptanalyzer/
dexoptanalyzer.cc 157 isa_ = GetInstructionSetFromString(isa_str.c_str());
  /art/runtime/native/
dalvik_system_ZygoteHooks.cc 316 InstructionSet isa = GetInstructionSetFromString(isa_string.c_str());
dalvik_system_DexFile.cc 471 const InstructionSet target_instruction_set = GetInstructionSetFromString(instruction_set);
515 const InstructionSet target_instruction_set = GetInstructionSetFromString(
681 const InstructionSet target_instruction_set = GetInstructionSetFromString(
dalvik_system_VMRuntime.cc 609 InstructionSet isa = GetInstructionSetFromString(instruction_set.c_str());
  /art/patchoat/
patchoat.cc 825 isa = GetInstructionSetFromString(isa_str);
    [all...]
  /art/runtime/
parsed_options.cc 367 auto&& image_isa = GetInstructionSetFromString(isa_str);
    [all...]
  /art/dex2oat/
dex2oat.cc 708 instruction_set_ = GetInstructionSetFromString(buf.get());
    [all...]

Completed in 572 milliseconds