/external/clang/lib/StaticAnalyzer/Checkers/ |
D | UndefCapturedBlockVarChecker.cpp | 28 : public Checker< check::PostStmt<BlockExpr> > { 32 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const; 54 UndefCapturedBlockVarChecker::checkPostStmt(const BlockExpr *BE, in checkPostStmt()
|
D | ObjCUnusedIVarsChecker.cpp | 45 if (const BlockExpr *BE = dyn_cast<BlockExpr>(S)) { in Scan()
|
D | MallocChecker.cpp | 101 check::PostStmt<BlockExpr>, 131 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const; 1155 void MallocChecker::checkPostStmt(const BlockExpr *BE, in checkPostStmt()
|
/external/clang/include/clang/Sema/ |
D | AnalysisBasedWarnings.h | 21 class BlockExpr; variable 93 const Decl *D, const BlockExpr *blkExpr);
|
/external/clang/lib/Analysis/ |
D | PseudoConstantAnalysis.cpp | 213 const BlockExpr *B = cast<BlockExpr>(Head); in RunAnalysis()
|
D | LiveVariables.cpp | 213 void VisitBlockExpr(BlockExpr *BE); 364 void TransferFunctions::VisitBlockExpr(BlockExpr *BE) { in VisitBlockExpr()
|
D | UninitializedValues.cpp | 428 void VisitBlockExpr(BlockExpr *be); 592 void TransferFunctions::VisitBlockExpr(BlockExpr *be) { in VisitBlockExpr()
|
D | AnalysisDeclContext.cpp | 388 void VisitBlockExpr(BlockExpr *BR) { in VisitBlockExpr()
|
/external/clang/lib/CodeGen/ |
D | CGBlocks.h | 192 const BlockExpr *BlockExpression; 217 const BlockExpr *getBlockExpr() const { in getBlockExpr()
|
D | CGDecl.cpp | 499 if (const BlockExpr *be = dyn_cast<BlockExpr>(e)) { in isAccessedBy() 940 if (const BlockExpr *be = dyn_cast<BlockExpr>(e)) { in isCapturedBy()
|
D | CodeGenModule.h | 53 class BlockExpr; variable 606 llvm::Constant *GetAddrOfGlobalBlock(const BlockExpr *BE, const char *);
|
/external/clang/include/clang/AST/ |
D | EvaluatedExprVisitor.h | 42 void VisitBlockExpr(BlockExpr *E) { } in VisitBlockExpr()
|
D | ASTContext.h | 49 class BlockExpr; variable 1237 std::string getObjCEncodingForBlock(const BlockExpr *blockExpr) const;
|
D | Expr.h | 4254 class BlockExpr : public Expr { 4258 BlockExpr(BlockDecl *BD, QualType ty) in BlockExpr() function 4266 explicit BlockExpr(EmptyShell Empty) : Expr(BlockExprClass, Empty) { } in BlockExpr() function 4287 static bool classof(const BlockExpr *) { return true; } in classof() argument
|
/external/clang/lib/ARCMigrate/ |
D | TransZeroOutPropsInDealloc.cpp | 147 bool TraverseBlockExpr(BlockExpr *block) { return true; } in TraverseBlockExpr()
|
/external/clang/lib/Rewrite/Frontend/ |
D | RewriteObjC.cpp | 120 SmallVector<BlockExpr *, 32> Blocks; 135 llvm::DenseMap<BlockExpr *, std::string> RewrittenBlockExprs; 381 std::string SynthesizeBlockHelperFuncs(BlockExpr *CE, int i, 383 std::string SynthesizeBlockFunc(BlockExpr *CE, int i, 385 std::string SynthesizeBlockImpl(BlockExpr *CE, 395 Stmt *SynthBlockInitExpr(BlockExpr *Exp, 407 void CollectBlockDeclRefInfo(BlockExpr *Exp); 3339 std::string RewriteObjC::SynthesizeBlockFunc(BlockExpr *CE, int i, in SynthesizeBlockFunc() 3431 std::string RewriteObjC::SynthesizeBlockHelperFuncs(BlockExpr *CE, int i, in SynthesizeBlockHelperFuncs() 3479 std::string RewriteObjC::SynthesizeBlockImpl(BlockExpr *CE, std::string Tag, in SynthesizeBlockImpl() [all …]
|
D | RewriteModernObjC.cpp | 128 SmallVector<BlockExpr *, 32> Blocks; 143 llvm::DenseMap<BlockExpr *, std::string> RewrittenBlockExprs; 424 std::string SynthesizeBlockHelperFuncs(BlockExpr *CE, int i, 426 std::string SynthesizeBlockFunc(BlockExpr *CE, int i, 428 std::string SynthesizeBlockImpl(BlockExpr *CE, 438 Stmt *SynthBlockInitExpr(BlockExpr *Exp, 449 void CollectBlockDeclRefInfo(BlockExpr *Exp); 3963 std::string RewriteModernObjC::SynthesizeBlockFunc(BlockExpr *CE, int i, in SynthesizeBlockFunc() 4055 std::string RewriteModernObjC::SynthesizeBlockHelperFuncs(BlockExpr *CE, int i, in SynthesizeBlockHelperFuncs() 4103 std::string RewriteModernObjC::SynthesizeBlockImpl(BlockExpr *CE, std::string Tag, in SynthesizeBlockImpl() [all …]
|
/external/clang/lib/Sema/ |
D | AnalysisBasedWarnings.cpp | 320 const BlockExpr *blkExpr, in CheckFallThroughForBody() 662 const BlockExpr *BE = cast<BlockExpr>(Use.getUser()); in DiagnoseUninitializedUse() 1185 const Decl *D, const BlockExpr *blkExpr) { in IssueWarnings()
|
D | JumpDiagnostics.cpp | 457 if (const BlockExpr *BE = dyn_cast<BlockExpr>(SubStmt)) { in BuildScopeInformation()
|
D | SemaLambda.cpp | 954 Expr *BuildBlock = new (Context) BlockExpr(Block, Conv->getConversionType()); in BuildBlockForLambdaConversion()
|
/external/clang/lib/AST/ |
D | StmtDumper.cpp | 152 void VisitBlockExpr(BlockExpr *Node); 500 void StmtDumper::VisitBlockExpr(BlockExpr *Node) { in VisitBlockExpr()
|
D | Expr.cpp | 1769 const FunctionProtoType *BlockExpr::getFunctionType() const { in getFunctionType() 1775 SourceLocation BlockExpr::getCaretLocation() const { in getCaretLocation() 1778 const Stmt *BlockExpr::getBody() const { in getBody() 1781 Stmt *BlockExpr::getBody() { in getBody()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 161 def BlockExpr : DStmt<Expr>;
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | ExprEngine.h | 299 void VisitBlockExpr(const BlockExpr *BE, ExplodedNode *Pred,
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 544 VISIT(BlockExpr); in VisitExpr() 609 IGNORE_EXPR(BlockExpr);
|