Home
last modified time | relevance | path

Searched refs:feature (Results 1 – 3 of 3) sorted by relevance

/art/test/052-verifier-fun/src/
DMain.java111 BlahFeature feature = null; // interface ref in tryBlah() local
115 feature = new BlahOne(); in tryBlah()
118 feature = new BlahTwo(); in tryBlah()
122 feature.doStuff(); in tryBlah()
/art/compiler/
Dcommon_compiler_test.cc125 std::string feature = Trim(*i); in ParseFeatureList() local
126 if (feature == "default") { in ParseFeatureList()
128 } else if (feature == "div") { in ParseFeatureList()
131 } else if (feature == "nodiv") { in ParseFeatureList()
135 LOG(FATAL) << "Unknown instruction set feature: '" << feature << "'"; in ParseFeatureList()
/art/dex2oat/
Ddex2oat.cc739 std::string feature = Trim(*i); in ParseFeatureList() local
740 if (feature == "default") { in ParseFeatureList()
742 } else if (feature == "div") { in ParseFeatureList()
745 } else if (feature == "nodiv") { in ParseFeatureList()
748 } else if (feature == "lpae") { in ParseFeatureList()
751 } else if (feature == "nolpae") { in ParseFeatureList()
755 Usage("Unknown instruction set feature: '%s'", feature.c_str()); in ParseFeatureList()