• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/

Lines Matching defs:DC

936     SynthesizedFunctionScope(Sema &S, DeclContext *DC)
937 : S(S), SavedContext(S, DC) {
941 if (auto *FD = dyn_cast<FunctionDecl>(DC))
944 assert(isa<ObjCMethodDecl>(DC));
1219 /// \param DC - The DeclContext containing the lambda expression or
1222 getCurrentMangleNumberContext(const DeclContext *DC);
2328 bool DiagnoseClassNameShadow(DeclContext *DC, DeclarationNameInfo Info);
2329 bool diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC,
2341 static bool adjustContextForLocalExternDecl(DeclContext *&DC);
2367 NamedDecl* ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
2370 NamedDecl* ActOnTypedefNameDecl(Scope* S, DeclContext* DC, TypedefNameDecl *D,
2372 NamedDecl *ActOnVariableDeclarator(Scope *S, Declarator &D, DeclContext *DC,
2390 NamedDecl* ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
2395 bool AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD);
2426 ParmVarDecl *BuildParmVarDeclForTypedef(DeclContext *DC,
2429 ParmVarDecl *CheckParameter(DeclContext *DC, SourceLocation StartLoc,
2886 void ActOnObjCTemporaryExitContainerContext(DeclContext *DC);
2887 void ActOnObjCReenterContainerContext(DeclContext *DC);
2917 void PushDeclContext(Scope *S, DeclContext *DC);
2922 void EnterDeclaratorContext(Scope *S, DeclContext *DC);
2928 void EnterTemplatedContext(Scope *S, DeclContext *DC);
2966 static Scope *getScopeForDeclContext(Scope *S, DeclContext *DC);
6115 bool RequireCompleteDeclContext(CXXScopeSpec &SS, DeclContext *DC);
9164 DeclContext *FindInstantiatedContext(SourceLocation Loc, DeclContext *DC,
10139 Scope *S, DeclContext *DC, DeclarationName Name,
10164 Scope *S, DeclContext *DC, DeclarationName Name, QualType MapperType,
12411 const DeclContext *DC = getCurLexicalContext();
12413 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(DC))
12414 DC = CatD->getClassInterface();
12415 return DC;