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

  /external/clang/include/clang/Sema/
PrettyDeclStackTrace.h 33 Decl *TheDecl;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ScopeInfo.h 521 BlockDecl *TheDecl;
532 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
Sema.h     [all...]
  /external/clang/lib/Sema/
Sema.cpp     [all...]
SemaStmt.cpp 414 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
417 if (TheDecl->getStmt()) {
418 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
419 Diag(TheDecl->getLocation(), diag::note_previous_definition);
424 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
425 TheDecl->setStmt(LS);
426 if (!TheDecl->isGnuLocal()) {
427 TheDecl->setLocStart(IdentLoc);
428 TheDecl->setLocation(IdentLoc);
    [all...]
SemaExpr.cpp     [all...]
SemaChecking.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Parse/
Parser.cpp 844 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
845 DS.complete(TheDecl);
846 return Actions.ConvertDeclToDeclGroup(TheDecl);
884 Decl *TheDecl = ParseLinkage(DS, Declarator::FileContext);
885 return Actions.ConvertDeclToDeclGroup(TheDecl);
    [all...]
ParseDecl.cpp     [all...]
ParseDeclCXX.cpp     [all...]
  /external/clang/lib/AST/
DeclBase.cpp 191 if (TheLoc.isInvalid() && TheDecl)
192 TheLoc = TheDecl->getLocation();
201 if (const NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl)) {
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 782 LabelDecl *TheDecl;
787 : Stmt(LabelStmtClass), TheDecl(D), SubStmt(substmt), IdentLoc(IL) {
794 LabelDecl *getDecl() const { return TheDecl; }
795 void setDecl(LabelDecl *D) { TheDecl = D; }
    [all...]
DeclBase.h     [all...]
ExprCXX.h 616 MSPropertyDecl *TheDecl;
630 BaseExpr(baseExpr), TheDecl(decl),
660 MSPropertyDecl *getPropertyDecl() const { return TheDecl; }
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]

Completed in 734 milliseconds