Searched refs:TheDecl (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DPrettyDeclStackTrace.h33 Decl *TheDecl; member in class:clang::PrettyDeclStackTraceEntry
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
H A DScopeInfo.h502 BlockDecl *TheDecl; member in class:clang::sema::BlockScopeInfo
513 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
H A DSema.h2887 StmtResult ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
2951 LabelDecl *TheDecl);
3506 LabelDecl *TheDecl);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSema.cpp1153 if (!Loc.isValid() && TheDecl) Loc = TheDecl->getLocation();
1160 if (TheDecl && isa<NamedDecl>(TheDecl)) {
1161 std::string Name = cast<NamedDecl>(TheDecl)->getNameAsString();
H A DSemaStmt.cpp401 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl, argument
404 if (TheDecl->getStmt()) {
405 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
406 Diag(TheDecl->getLocation(), diag::note_previous_definition);
411 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
412 TheDecl->setStmt(LS);
413 if (!TheDecl->isGnuLocal()) {
414 TheDecl->setLocStart(IdentLoc);
415 TheDecl->setLocation(IdentLoc);
2301 LabelDecl *TheDecl) {
2299 ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, LabelDecl *TheDecl) argument
[all...]
H A DSemaExpr.cpp2825 currentDecl = BSI->TheDecl;
9813 LabelDecl *TheDecl) {
9814 TheDecl->markUsed(Context);
9816 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl,
10253 CurBlock->TheDecl->setSignatureAsWritten(Sig);
10261 CurBlock->TheDecl->setIsVariadic(isVariadic);
10269 CurBlock->TheDecl->setBlockMissingReturnType(false);
10292 BuildParmVarDeclForTypedef(CurBlock->TheDecl,
10301 CurBlock->TheDecl->setParams(Params);
10302 CheckParmsForFunctionDef(CurBlock->TheDecl
9812 ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc, LabelDecl *TheDecl) argument
[all...]
H A DSemaChecking.cpp1612 isVariadic = CurBlock->TheDecl->isVariadic();
1639 LastArg = *(CurBlock->TheDecl->param_end()-1);
H A DTreeTransform.h9324 blockScope->TheDecl->setIsVariadic(oldBlock->isVariadic());
9325 blockScope->TheDecl->setBlockMissingReturnType(
9351 blockScope->TheDecl->setParams(params);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Parse/
H A DParser.cpp889 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS); local
890 DS.complete(TheDecl);
891 return Actions.ConvertDeclToDeclGroup(TheDecl);
928 Decl *TheDecl = ParseLinkage(DS, Declarator::FileContext); local
929 return Actions.ConvertDeclToDeclGroup(TheDecl);
H A DParseDecl.cpp1420 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none, local
1422 DS.complete(TheDecl);
1423 return Actions.ConvertDeclToDeclGroup(TheDecl);
1616 Decl *TheDecl = local
1618 return Actions.ConvertDeclToDeclGroup(TheDecl);
3283 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none, local
3285 DS.complete(TheDecl);
H A DParseDeclCXX.cpp2102 Decl *TheDecl = local
2104 DS.complete(TheDecl);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclBase.cpp184 if (TheLoc.isInvalid() && TheDecl)
185 TheLoc = TheDecl->getLocation();
194 if (const NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl)) {
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclBase.h969 const Decl *TheDecl; member in class:clang::PrettyStackTraceDecl
976 : TheDecl(theDecl), Loc(L), SM(sm), Message(Msg) {}
H A DStmt.h765 LabelDecl *TheDecl; member in class:clang::LabelStmt
770 : Stmt(LabelStmtClass), TheDecl(D), SubStmt(substmt), IdentLoc(IL) {
777 LabelDecl *getDecl() const { return TheDecl; }
778 void setDecl(LabelDecl *D) { TheDecl = D; }
H A DExprCXX.h616 MSPropertyDecl *TheDecl; member in class:clang::MSPropertyRefExpr
630 BaseExpr(baseExpr), TheDecl(decl),
660 MSPropertyDecl *getPropertyDecl() const { return TheDecl; }
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1614 E->TheDecl = ReadDeclAs<MSPropertyDecl>(Record, Idx);

Completed in 288 milliseconds