HomeSort by relevance Sort by last modified time
    Searched refs:TheDecl (Results 1 - 14 of 14) sorted by null

  /external/clang/include/clang/Sema/
PrettyDeclStackTrace.h 33 Decl *TheDecl;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ScopeInfo.h 298 BlockDecl *TheDecl;
309 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
Sema.h     [all...]
  /external/clang/lib/Sema/
Sema.cpp     [all...]
SemaStmt.cpp 346 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
349 if (TheDecl->getStmt()) {
350 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
351 Diag(TheDecl->getLocation(), diag::note_previous_definition);
356 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
357 TheDecl->setStmt(LS);
358 if (!TheDecl->isGnuLocal())
359 TheDecl->setLocation(IdentLoc);
    [all...]
SemaExpr.cpp     [all...]
SemaChecking.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Parse/
Parser.cpp 789 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
790 DS.complete(TheDecl);
791 return Actions.ConvertDeclToDeclGroup(TheDecl);
826 Decl *TheDecl = ParseLinkage(DS, Declarator::FileContext);
827 return Actions.ConvertDeclToDeclGroup(TheDecl);
    [all...]
ParseDecl.cpp     [all...]
ParseDeclCXX.cpp     [all...]
  /external/clang/lib/AST/
DeclBase.cpp 173 if (TheLoc.isInvalid() && TheDecl)
174 TheLoc = TheDecl->getLocation();
183 if (const NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl))
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 766 LabelDecl *TheDecl;
771 : Stmt(LabelStmtClass), TheDecl(D), SubStmt(substmt), IdentLoc(IL) {
778 LabelDecl *getDecl() const { return TheDecl; }
779 void setDecl(LabelDecl *D) { TheDecl = D; }
    [all...]
DeclBase.h 886 const Decl *TheDecl;
891 PrettyStackTraceDecl(const Decl *theDecl, SourceLocation L,
893 : TheDecl(theDecl), Loc(L), SM(sm), Message(Msg) {}
    [all...]

Completed in 8604 milliseconds