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

1 2 3

  /external/clang/include/clang/Sema/
PrettyDeclStackTrace.h 33 Decl *TheDecl;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ScopeInfo.h 599 BlockDecl *TheDecl;
610 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
PrettyDeclStackTrace.h 33 Decl *TheDecl;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ScopeInfo.h 669 BlockDecl *TheDecl;
680 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
PrettyDeclStackTrace.h 33 Decl *TheDecl;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ScopeInfo.h 669 BlockDecl *TheDecl;
680 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
PrettyDeclStackTrace.h 33 Decl *TheDecl;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ScopeInfo.h 669 BlockDecl *TheDecl;
680 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
PrettyDeclStackTrace.h 33 Decl *TheDecl;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ScopeInfo.h 669 BlockDecl *TheDecl;
680 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
PrettyDeclStackTrace.h 33 Decl *TheDecl;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ScopeInfo.h 669 BlockDecl *TheDecl;
680 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
PrettyDeclStackTrace.h 33 Decl *TheDecl;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ScopeInfo.h 669 BlockDecl *TheDecl;
680 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
PrettyDeclStackTrace.h 33 Decl *TheDecl;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ScopeInfo.h 669 BlockDecl *TheDecl;
680 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
PrettyDeclStackTrace.h 33 Decl *TheDecl;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ScopeInfo.h 669 BlockDecl *TheDecl;
680 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
    [all...]
  /external/clang/lib/Sema/
Sema.cpp     [all...]
SemaStmt.cpp 461 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
464 if (TheDecl->getStmt()) {
465 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
466 Diag(TheDecl->getLocation(), diag::note_previous_definition);
471 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
472 TheDecl->setStmt(LS);
473 if (!TheDecl->isGnuLocal()) {
474 TheDecl->setLocStart(IdentLoc);
475 if (!TheDecl->isMSAsmLabel()) {
478 TheDecl->setLocation(IdentLoc)
    [all...]
  /external/clang/lib/Parse/
Parser.cpp 891 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none,
893 DS.complete(TheDecl);
895 Decl* decls[] = {AnonRecord, TheDecl};
898 return Actions.ConvertDeclToDeclGroup(TheDecl);
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 228 if (TheLoc.isInvalid() && TheDecl)
229 TheLoc = TheDecl->getLocation();
238 if (const NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl)) {
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 791 LabelDecl *TheDecl;
796 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
806 LabelDecl *getDecl() const { return TheDecl; }
807 void setDecl(LabelDecl *D) { TheDecl = D; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
Stmt.h 815 LabelDecl *TheDecl;
820 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
830 LabelDecl *getDecl() const { return TheDecl; }
831 void setDecl(LabelDecl *D) { TheDecl = D; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
Stmt.h 815 LabelDecl *TheDecl;
820 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) {
830 LabelDecl *getDecl() const { return TheDecl; }
831 void setDecl(LabelDecl *D) { TheDecl = D; }
    [all...]

Completed in 503 milliseconds

1 2 3