OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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(InstructionSet::kArm,
GetInstructionSetFromString
("arm"));
27
EXPECT_EQ(InstructionSet::kArm64,
GetInstructionSetFromString
("arm64"));
28
EXPECT_EQ(InstructionSet::kX86,
GetInstructionSetFromString
("x86"));
29
EXPECT_EQ(InstructionSet::kX86_64,
GetInstructionSetFromString
("x86_64"));
30
EXPECT_EQ(InstructionSet::kMips,
GetInstructionSetFromString
("mips"));
31
EXPECT_EQ(InstructionSet::kMips64,
GetInstructionSetFromString
("mips64"));
32
EXPECT_EQ(InstructionSet::kNone,
GetInstructionSetFromString
("none"));
33
EXPECT_EQ(InstructionSet::kNone,
GetInstructionSetFromString
("random-string"));
63
EXPECT_EQ(kRuntimeISA,
GetInstructionSetFromString
(GetInstructionSetString(kRuntimeISA)))
[
all
...]
instruction_set.cc
66
InstructionSet
GetInstructionSetFromString
(const char* isa_str) {
instruction_set.h
90
InstructionSet
GetInstructionSetFromString
(const char* instruction_set);
/art/cmdline/
cmdline.h
151
instruction_set_ =
GetInstructionSetFromString
(instruction_set_str.data());
267
if (
GetInstructionSetFromString
(parent_dir_name.c_str()) != InstructionSet::kNone) {
/art/dexoptanalyzer/
dexoptanalyzer.cc
168
isa_ =
GetInstructionSetFromString
(isa_str.c_str());
/art/runtime/native/
dalvik_system_DexFile.cc
481
const InstructionSet target_instruction_set =
GetInstructionSetFromString
(instruction_set);
540
const InstructionSet target_instruction_set =
GetInstructionSetFromString
(
570
const InstructionSet target_instruction_set =
GetInstructionSetFromString
(
762
const InstructionSet target_instruction_set =
GetInstructionSetFromString
(
[
all
...]
dalvik_system_ZygoteHooks.cc
389
InstructionSet isa =
GetInstructionSetFromString
(isa_string.c_str());
dalvik_system_VMRuntime.cc
650
InstructionSet isa =
GetInstructionSetFromString
(instruction_set.c_str());
/art/dex2oat/
dex2oat_options.cc
29
InstructionSet set =
GetInstructionSetFromString
(option.c_str());
/art/runtime/
parsed_options.cc
385
auto&& image_isa =
GetInstructionSetFromString
(isa_str);
[
all
...]
/art/patchoat/
patchoat.cc
[
all
...]
Completed in 858 milliseconds