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

1 2

  /external/clang/lib/AST/
ParentMap.cpp 122 return DirectChild == cast<ForStmt>(P)->getCond();
124 return DirectChild == cast<WhileStmt>(P)->getCond();
126 return DirectChild == cast<DoStmt>(P)->getCond();
128 return DirectChild == cast<IfStmt>(P)->getCond();
132 return DirectChild == cast<SwitchStmt>(P)->getCond();
StmtPrinter.cpp 190 PrintExpr(If->getCond());
227 PrintExpr(Node->getCond());
243 PrintExpr(Node->getCond());
260 PrintExpr(Node->getCond());
273 if (Node->getCond()) {
275 PrintExpr(Node->getCond());
932 PrintExpr(Node->getCond());
959 PrintExpr(Node->getCond());
    [all...]
  /frameworks/compile/slang/
slang_rs_ast_replace.cpp 105 if (matchesExpr(DS->getCond())) {
118 } else if (matchesExpr(FS->getCond())) {
131 if (matchesExpr(IS->getCond())) {
150 if (matchesExpr(SS->getCond())) {
159 if (matchesExpr(WS->getCond())) {
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 355 HandleBranch(cast<AbstractConditionalOperator>(Term)->getCond(),
363 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred);
380 HandleBranch(cast<DoStmt>(Term)->getCond(), Term, B, Pred);
384 HandleBranch(cast<CXXForRangeStmt>(Term)->getCond(), Term, B, Pred);
388 HandleBranch(cast<ForStmt>(Term)->getCond(), Term, B, Pred);
397 HandleBranch(cast<IfStmt>(Term)->getCond(), Term, B, Pred);
428 SwitchNodeBuilder builder(Pred, B, cast<SwitchStmt>(Term)->getCond(),
436 HandleBranch(cast<WhileStmt>(Term)->getCond(), Term, B, Pred);
BugReporter.cpp 322 if (cast<ChooseExpr>(Parent)->getCond() == S)
330 if (cast<AbstractConditionalOperator>(Parent)->getCond() == S)
341 if (cast<IfStmt>(Parent)->getCond() != S)
349 if (cast<WhileStmt>(Parent)->getCond() != S)
812 S = cast<AbstractConditionalOperator>(S)->getCond();
816 S = cast<ChooseExpr>(S)->getCond();
    [all...]
BugReporterVisitors.cpp 688 Cond = cast<IfStmt>(Term)->getCond();
691 Cond = cast<ConditionalOperator>(Term)->getCond();
    [all...]
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 101 Expr *condE = S->getCond();
115 Expr *condE = S->getCond();
125 Expr *condE = S->getCond();
  /external/clang/lib/Analysis/
CFG.cpp     [all...]
ThreadSafety.cpp 412 unsigned Sz = buildSExpr(CE->getCond(), CallCtx);
419 unsigned Sz = buildSExpr(CE->getCond(), CallCtx);
    [all...]
  /external/clang/include/clang/AST/
StmtCXX.h 155 Expr *getCond() { return cast_or_null<Expr>(SubExprs[COND]); }
166 const Expr *getCond() const {
Stmt.h 877 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
884 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
950 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
954 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]);}
    [all...]
Expr.h     [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 386 if (ConstantFoldsToSimpleInteger(S.getCond(), CondConstant)) {
411 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock);
469 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
543 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
589 if (S.getCond()) {
607 BoolCondVal = EvaluateExprAsBool(S.getCond());
688 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
    [all...]
CGExprComplex.cpp 706 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
CGExprAgg.cpp 810 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
    [all...]
CodeGenFunction.cpp 729 EmitBranchOnBoolExpr(CondOp->getCond(), LHSBlock, RHSBlock);
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 648 Environment after_cond = env.ApplyEffect(VisitExpr(expr->getCond(), env));
1028 block.Loop(stmt->getCond(), stmt->getBody());
1036 block.Loop(stmt->getBody(), stmt->getCond());
1044 block.Loop(stmt->getCond(),
1052 Environment cond_out = VisitStmt(stmt->getCond(), env);
1060 block.Seq(stmt->getCond(), stmt->getBody());
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 529 Range = IS->getCond()->getSourceRange();
539 Range = CO->getCond()->getSourceRange();
568 Range = cast<WhileStmt>(Term)->getCond()->getSourceRange();
575 Range = cast<ForStmt>(Term)->getCond()->getSourceRange();
587 Range = cast<DoStmt>(Term)->getCond()->getSourceRange();
    [all...]
TreeTransform.h     [all...]
SemaStmt.cpp 628 Expr *CondExpr = SS->getCond();
    [all...]
  /external/clang/lib/Serialization/
ASTWriterStmt.cpp 122 Writer.AddStmt(S->getCond());
133 Writer.AddStmt(S->getCond());
146 Writer.AddStmt(S->getCond());
154 Writer.AddStmt(S->getCond());
165 Writer.AddStmt(S->getCond());
551 Writer.AddStmt(E->getCond());
564 Writer.AddStmt(E->getCond());
702 Writer.AddStmt(E->getCond());
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 221 const Expr *condition = FS->getCond();
IdempotentOperationChecker.cpp 698 return CanVary(cast<AbstractConditionalOperator>(Ex)->getCond(), AC);
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 499 milliseconds

1 2