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

  /art/runtime/
instruction_set_test.cc 25 TEST_F(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(kNone, GetInstructionSetFromString("none"));
32 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string"));
46 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA)));
instruction_set.cc 42 InstructionSet GetInstructionSetFromString(const char* isa_str) {
instruction_set.h 80 InstructionSet GetInstructionSetFromString(const char* instruction_set);
parsed_options.cc 426 image_isa_ = GetInstructionSetFromString(isa_str);
    [all...]
  /art/runtime/native/
dalvik_system_ZygoteHooks.cc 121 InstructionSet isa = GetInstructionSetFromString(isa_string.c_str());
dalvik_system_DexFile.cc 504 const InstructionSet target_instruction_set = GetInstructionSetFromString(instruction_set);
dalvik_system_VMRuntime.cc 530 InstructionSet isa = GetInstructionSetFromString(instruction_set.c_str());
  /art/patchoat/
patchoat.cc     [all...]

Completed in 253 milliseconds