Searched refs:feature (Results 1 - 7 of 7) sorted by relevance

/art/test/052-verifier-fun/src/
H A DMain.java111 BlahFeature feature = null; // interface ref
115 feature = new BlahOne();
118 feature = new BlahTwo();
122 feature.doStuff();
/art/runtime/arch/mips/
H A Dinstruction_set_features_mips.cc124 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
209 std::string feature = Trim(*i); local
210 if (feature == "fpu32") {
212 } else if (feature == "-fpu32") {
214 } else if (feature == "mips2") {
216 } else if (feature == "-mips2") {
218 } else if (feature == "r6") {
220 } else if (feature == "-r6") {
223 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature
[all...]
/art/runtime/arch/x86/
H A Dinstruction_set_features_x86.cc137 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
263 std::string feature = Trim(*i); local
264 if (feature == "ssse3") {
266 } else if (feature == "-ssse3") {
268 } else if (feature == "sse4.1") {
270 } else if (feature == "-sse4.1") {
272 } else if (feature == "sse4.2") {
274 } else if (feature == "-sse4.2") {
276 } else if (feature == "avx") {
278 } else if (feature
[all...]
/art/runtime/arch/arm64/
H A Dinstruction_set_features_arm64.cc72 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
137 std::string feature = Trim(*i); local
138 if (feature == "a53") {
140 } else if (feature == "-a53") {
143 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
/art/runtime/arch/mips64/
H A Dinstruction_set_features_mips64.cc49 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
107 std::string feature = Trim(*i); local
108 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
/art/runtime/arch/arm/
H A Dinstruction_set_features_arm.cc75 // TODO: some of the variants below may have feature support, but that support is currently
127 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
272 std::string feature = Trim(*i); local
273 if (feature == "div") {
275 } else if (feature == "-div") {
277 } else if (feature == "atomic_ldrd_strd") {
279 } else if (feature == "-atomic_ldrd_strd") {
282 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
/art/runtime/arch/
H A Dinstruction_set_features.cc221 bool use_default = false; // Have we seen the 'default' feature?
222 bool first = false; // Is this first feature?
228 std::string feature = Trim(*it); local
230 if (feature == "default") {
238 } else if (feature == "smp") {
241 } else if (feature == "-smp") {
245 // Erase the smp feature once processed.

Completed in 208 milliseconds