• Home
  • Raw
  • Download

Lines Matching refs:TheDecl

2610       currentDecl = BSI->TheDecl;  in ActOnPredefinedExpr()
9100 LabelDecl *TheDecl) { in ActOnAddrLabel() argument
9101 TheDecl->setUsed(); in ActOnAddrLabel()
9103 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl, in ActOnAddrLabel()
9521 CurBlock->TheDecl->setSignatureAsWritten(Sig); in ActOnBlockArguments()
9529 CurBlock->TheDecl->setIsVariadic(isVariadic); in ActOnBlockArguments()
9544 CurBlock->TheDecl->setBlockMissingReturnType(false); in ActOnBlockArguments()
9567 BuildParmVarDeclForTypedef(CurBlock->TheDecl, in ActOnBlockArguments()
9576 CurBlock->TheDecl->setParams(Params); in ActOnBlockArguments()
9577 CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(), in ActOnBlockArguments()
9578 CurBlock->TheDecl->param_end(), in ActOnBlockArguments()
9583 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); in ActOnBlockArguments()
9590 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), in ActOnBlockArguments()
9591 E = CurBlock->TheDecl->param_end(); AI != E; ++AI) { in ActOnBlockArguments()
9592 (*AI)->setOwningFunction(CurBlock->TheDecl); in ActOnBlockArguments()
9640 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); in ActOnBlockStmtExpr()
9654 BSI->TheDecl->setCaptures(Context, Captures.begin(), Captures.end(), in ActOnBlockStmtExpr()
9696 DiagnoseUnusedParameters(BSI->TheDecl->param_begin(), in ActOnBlockStmtExpr()
9697 BSI->TheDecl->param_end()); in ActOnBlockStmtExpr()
9706 BSI->TheDecl->setBody(cast<CompoundStmt>(Body)); in ActOnBlockStmtExpr()
9712 !BSI->TheDecl->isDependentContext()) in ActOnBlockStmtExpr()
9715 BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy); in ActOnBlockStmtExpr()