Lines Matching defs:AE
320 for (const auto &AE : ARCHExtNames) {
321 if ((Extensions & AE.ID) == AE.ID && !AE.Feature.empty())
322 Features.push_back(AE.Feature);
323 else if (!AE.NegFeature.empty())
324 Features.push_back(AE.NegFeature);
347 for (const auto &AE : ARCHExtNames) {
348 if (ArchExtKind == AE.ID)
349 return AE.Name;
360 for (const auto &AE : ARCHExtNames) {
361 if (!AE.Feature.empty() && ArchExt == AE.Name)
362 return StringRef(Negated ? AE.NegFeature : AE.Feature);
434 for (const auto &AE : ARCHExtNames) {
436 if ((AE.ID & ID) == ID && !AE.NegFeature.empty())
437 Features.push_back(AE.NegFeature);
439 if ((AE.ID & ID) == AE.ID && !AE.Feature.empty())
440 Features.push_back(AE.Feature);