| /minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | UndefCapturedBlockVarChecker.cpp | 29 : public Checker< check::PostStmt<BlockExpr> > { 33 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const; 55 UndefCapturedBlockVarChecker::checkPostStmt(const BlockExpr *BE, in checkPostStmt()
|
| H A D | ObjCUnusedIVarsChecker.cpp | 46 if (const BlockExpr *BE = dyn_cast<BlockExpr>(S)) { in Scan()
|
| H A D | MallocChecker.cpp | 156 check::PostStmt<BlockExpr>, 193 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const; 2011 void MallocChecker::checkPostStmt(const BlockExpr *BE, in checkPostStmt()
|
| H A D | RetainCountChecker.cpp | 2403 check::PostStmt<BlockExpr>, 2551 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const; 2639 void RetainCountChecker::checkPostStmt(const BlockExpr *BE, in checkPostStmt()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Sema/ |
| H A D | AnalysisBasedWarnings.h | 21 class BlockExpr; variable 94 const Decl *D, const BlockExpr *blkExpr);
|
| /minix3/external/bsd/llvm/dist/clang/test/Misc/ |
| H A D | ast-dump-stmt.m | 7 // CHECK: BlockExpr{{.*}} 'void (^)(void)' 16 // CHECK-NEXT: BlockExpr
|
| /minix3/external/bsd/llvm/dist/clang/lib/Analysis/ |
| H A D | PseudoConstantAnalysis.cpp | 212 const BlockExpr *B = cast<BlockExpr>(Head); in RunAnalysis()
|
| H A D | CallGraph.cpp | 47 if (BlockExpr *Block = dyn_cast<BlockExpr>(CEE)) { in getDeclFromCall()
|
| H A D | LiveVariables.cpp | 207 void VisitBlockExpr(BlockExpr *BE); 358 void TransferFunctions::VisitBlockExpr(BlockExpr *BE) { in VisitBlockExpr()
|
| H A D | UninitializedValues.cpp | 478 void VisitBlockExpr(BlockExpr *be); 659 void TransferFunctions::VisitBlockExpr(BlockExpr *be) { in VisitBlockExpr()
|
| H A D | AnalysisDeclContext.cpp | 490 void VisitBlockExpr(BlockExpr *BR) { in VisitBlockExpr()
|
| /minix3/external/bsd/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGBlocks.h | 211 const BlockExpr *BlockExpression; 244 const BlockExpr *getBlockExpr() const { in getBlockExpr()
|
| H A D | CGDecl.cpp | 569 if (const BlockExpr *be = dyn_cast<BlockExpr>(e)) { in isAccessedBy() 1026 if (const BlockExpr *be = dyn_cast<BlockExpr>(e)) { in isCapturedBy()
|
| H A D | CodeGenModule.h | 60 class BlockExpr; variable 777 llvm::Constant *GetAddrOfGlobalBlock(const BlockExpr *BE, const char *);
|
| H A D | CodeGenPGO.cpp | 155 bool TraverseBlockExpr(BlockExpr *BE) { return true; } in TraverseBlockExpr()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | EvaluatedExprVisitor.h | 42 void VisitBlockExpr(BlockExpr *E) { } in VisitBlockExpr()
|
| H A D | ASTContext.h | 52 class BlockExpr; variable 1427 std::string getObjCEncodingForBlock(const BlockExpr *blockExpr) const;
|
| /minix3/external/bsd/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | TransZeroOutPropsInDealloc.cpp | 145 bool TraverseBlockExpr(BlockExpr *block) { return true; } in TraverseBlockExpr()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 124 SmallVector<BlockExpr *, 32> Blocks; 139 llvm::DenseMap<BlockExpr *, std::string> RewrittenBlockExprs; 375 std::string SynthesizeBlockHelperFuncs(BlockExpr *CE, int i, 377 std::string SynthesizeBlockFunc(BlockExpr *CE, int i, 379 std::string SynthesizeBlockImpl(BlockExpr *CE, 389 Stmt *SynthBlockInitExpr(BlockExpr *Exp, 401 void CollectBlockDeclRefInfo(BlockExpr *Exp); 3271 std::string RewriteObjC::SynthesizeBlockFunc(BlockExpr *CE, int i, in SynthesizeBlockFunc() 3363 std::string RewriteObjC::SynthesizeBlockHelperFuncs(BlockExpr *CE, int i, in SynthesizeBlockHelperFuncs() 3407 std::string RewriteObjC::SynthesizeBlockImpl(BlockExpr *CE, std::string Tag, in SynthesizeBlockImpl() [all …]
|
| H A D | RewriteModernObjC.cpp | 132 SmallVector<BlockExpr *, 32> Blocks; 148 llvm::DenseMap<BlockExpr *, std::string> RewrittenBlockExprs; 471 std::string SynthesizeBlockHelperFuncs(BlockExpr *CE, int i, 473 std::string SynthesizeBlockFunc(BlockExpr *CE, int i, 475 std::string SynthesizeBlockImpl(BlockExpr *CE, 485 Stmt *SynthBlockInitExpr(BlockExpr *Exp, 496 void CollectBlockDeclRefInfo(BlockExpr *Exp); 4136 std::string RewriteModernObjC::SynthesizeBlockFunc(BlockExpr *CE, int i, in SynthesizeBlockFunc() 4232 std::string RewriteModernObjC::SynthesizeBlockHelperFuncs(BlockExpr *CE, int i, in SynthesizeBlockHelperFuncs() 4276 std::string RewriteModernObjC::SynthesizeBlockImpl(BlockExpr *CE, std::string Tag, in SynthesizeBlockImpl() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 165 def BlockExpr : DStmt<Expr>;
|
| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | AnalysisBasedWarnings.cpp | 501 const BlockExpr *blkExpr, in CheckFallThroughForBody() 866 const BlockExpr *BE = cast<BlockExpr>(Use.getUser()); in DiagnoseUninitializedUse() 1837 const Decl *D, const BlockExpr *blkExpr) { in IssueWarnings()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | ExprEngine.h | 341 void VisitBlockExpr(const BlockExpr *BE, ExplodedNode *Pred,
|
| /minix3/external/bsd/llvm/dist/clang/lib/AST/ |
| H A D | Expr.cpp | 1975 const FunctionProtoType *BlockExpr::getFunctionType() const { in getFunctionType() 1981 SourceLocation BlockExpr::getCaretLocation() const { in getCaretLocation() 1984 const Stmt *BlockExpr::getBody() const { in getBody() 1987 Stmt *BlockExpr::getBody() { in getBody()
|
| H A D | ASTDumper.cpp | 501 void VisitBlockExpr(const BlockExpr *Node); 1851 void ASTDumper::VisitBlockExpr(const BlockExpr *Node) { in VisitBlockExpr()
|