Lines Matching defs:AE
318 for (const auto &AE : ARCHExtNames) {
319 if ((Extensions & AE.ID) == AE.ID && !AE.Feature.empty())
320 Features.push_back(AE.Feature);
321 else if (!AE.NegFeature.empty())
322 Features.push_back(AE.NegFeature);
345 for (const auto &AE : ARCHExtNames) {
346 if (ArchExtKind == AE.ID)
347 return AE.Name;
358 for (const auto &AE : ARCHExtNames) {
359 if (!AE.Feature.empty() && ArchExt == AE.Name)
360 return StringRef(Negated ? AE.NegFeature : AE.Feature);
432 for (const auto &AE : ARCHExtNames) {
434 if ((AE.ID & ID) == ID && !AE.NegFeature.empty())
435 Features.push_back(AE.NegFeature);
437 if ((AE.ID & ID) == AE.ID && !AE.Feature.empty())
438 Features.push_back(AE.Feature);