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

References

tools/clang/lib/Sema/SemaPseudoObject.cpp
 1146   if (AtIndexGetter)
 1189   AtIndexGetter = S.LookupMethodInObjectType(AtIndexGetterSelector, ResultType,
 1192   if (!AtIndexGetter && S.getLangOpts().DebuggerObjCLiteral) {
 1193     AtIndexGetter = ObjCMethodDecl::Create(S.Context, SourceLocation(),
 1203     ParmVarDecl *Argument = ParmVarDecl::Create(S.Context, AtIndexGetter,
 1212     AtIndexGetter->setMethodParams(S.Context, Argument, None);
 1215   if (!AtIndexGetter) {
 1221     AtIndexGetter =
 1227   if (AtIndexGetter) {
 1228     QualType T = AtIndexGetter->parameters()[0]->getType();
 1234       S.Diag(AtIndexGetter->parameters()[0]->getLocation(),
 1238     QualType R = AtIndexGetter->getReturnType();
 1242       S.Diag(AtIndexGetter->getLocation(), diag::note_method_declared_at) <<
 1243         AtIndexGetter->getDeclName();
 1396   if (AtIndexGetter)
 1397     S.DiagnoseUseOfDecl(AtIndexGetter, GenericLoc);
 1400                                        AtIndexGetterSelector, AtIndexGetter,