Home | History | Annotate | Download | only in Option

Lines Matching defs:Alias

31     assert(getAlias().isValid() && "Only alias options can have alias args.");
32 assert(getKind() == FlagClass && "Only Flag aliases can have alias args.");
34 "Cannot provide alias args to a flag option.");
75 const Option Alias = getAlias();
76 if (Alias.isValid()) {
77 llvm::errs() << " Alias:";
78 Alias.dump();
89 const Option Alias = getAlias();
90 if (Alias.isValid())
91 return Alias.matches(Opt);
108 // If the option was an alias, get the spelling from the unaliased one.