reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaDeclAttr.cpp
 6238   if (AL.getKind() == ParsedAttr::UnknownAttribute)
 6242   if (!AL.diagnoseLangOpts(S))
 6245   if (!AL.diagnoseAppertainsTo(S, D))
 6247   if (AL.hasCustomParsing())
 6250   if (AL.getMinArgs() == AL.getMaxArgs()) {
 6250   if (AL.getMinArgs() == AL.getMaxArgs()) {
 6253     if (!checkAttributeNumArgs(S, AL, AL.getMinArgs()))
 6253     if (!checkAttributeNumArgs(S, AL, AL.getMinArgs()))
 6257     if (AL.getMinArgs() &&
 6258         !checkAttributeAtLeastNumArgs(S, AL, AL.getMinArgs()))
 6258         !checkAttributeAtLeastNumArgs(S, AL, AL.getMinArgs()))
 6260     else if (!AL.hasVariadicArg() && AL.getMaxArgs() &&
 6260     else if (!AL.hasVariadicArg() && AL.getMaxArgs() &&
 6261              !checkAttributeAtMostNumArgs(S, AL, AL.getMaxArgs()))
 6261              !checkAttributeAtMostNumArgs(S, AL, AL.getMaxArgs()))
 6265   if (S.CheckAttrTarget(AL))