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

References

tools/clang/lib/Parse/ParseDecl.cpp
 2281     ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
 2286     ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(),
 2289     if (VarTemplateDecl *VT = dyn_cast_or_null<VarTemplateDecl>(ThisDecl))
 2292       ThisDecl = VT->getTemplatedDecl();
 2303       ThisDecl = ThisRes.get();
 2313         ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
 2328         ThisDecl =
 2355       InitializerScopeRAII InitScope(*this, D, ThisDecl);
 2358         Actions.CodeCompleteInitializer(getCurScope(), ThisDecl);
 2359         Actions.FinalizeDeclaration(ThisDecl);
 2364       PreferredType.enterVariableInit(Tok.getLocation(), ThisDecl);
 2388         Actions.ActOnInitializerError(ThisDecl);
 2390         Actions.AddInitializerToDecl(ThisDecl, Init.get(),
 2401     InitializerScopeRAII InitScope(*this, D, ThisDecl);
 2403     auto ThisVarDecl = dyn_cast_or_null<VarDecl>(ThisDecl);
 2407           ThisDecl->getLocation(), Exprs, T.getOpenLocation());
 2427             ThisDecl->getLocation(), Exprs, T.getOpenLocation());
 2430       Actions.ActOnInitializerError(ThisDecl);
 2444       Actions.AddInitializerToDecl(ThisDecl, Initializer.get(),
 2452     InitializerScopeRAII InitScope(*this, D, ThisDecl);
 2459       Actions.ActOnInitializerError(ThisDecl);
 2461       Actions.AddInitializerToDecl(ThisDecl, Init.get(), /*DirectInit=*/true);
 2464     Actions.ActOnUninitializedDecl(ThisDecl);
 2467   Actions.FinalizeDeclaration(ThisDecl);
 2469   return ThisDecl;