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

1 2

  /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/AST/
ParentMap.cpp 60 M[BCO->getCond()] = S;
61 BuildParentMap(M, BCO->getCond(), OV_Opaque);
183 return DirectChild == cast<ForStmt>(P)->getCond();
185 return DirectChild == cast<WhileStmt>(P)->getCond();
187 return DirectChild == cast<DoStmt>(P)->getCond();
189 return DirectChild == cast<IfStmt>(P)->getCond();
193 return DirectChild == cast<SwitchStmt>(P)->getCond();
StmtPrinter.cpp 196 PrintExpr(If->getCond());
236 PrintExpr(Node->getCond());
255 PrintExpr(Node->getCond());
272 PrintExpr(Node->getCond());
285 if (Node->getCond()) {
287 PrintExpr(Node->getCond());
1035 PrintExpr(Node->getCond());
1062 PrintExpr(Node->getCond());
    [all...]
ExprConstant.cpp     [all...]
  /external/clang/include/clang/AST/
EvaluatedExprVisitor.h 53 if (E->getCond()->isValueDependent())
StmtCXX.h 154 Expr *getCond() { return cast_or_null<Expr>(SubExprs[COND]); }
165 const Expr *getCond() const {
Stmt.h 875 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
882 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
948 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
952 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]);}
    [all...]
Expr.h     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 360 HandleBranch(cast<AbstractConditionalOperator>(Term)->getCond(),
368 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred);
385 HandleBranch(cast<DoStmt>(Term)->getCond(), Term, B, Pred);
389 HandleBranch(cast<CXXForRangeStmt>(Term)->getCond(), Term, B, Pred);
393 HandleBranch(cast<ForStmt>(Term)->getCond(), Term, B, Pred);
402 HandleBranch(cast<IfStmt>(Term)->getCond(), Term, B, Pred);
433 SwitchNodeBuilder builder(Pred, B, cast<SwitchStmt>(Term)->getCond(),
441 HandleBranch(cast<WhileStmt>(Term)->getCond(), Term, B, Pred);
BugReporter.cpp 409 if (allowNestedContexts || cast<ChooseExpr>(Parent)->getCond() == S)
418 cast<AbstractConditionalOperator>(Parent)->getCond() == S)
433 if (cast<IfStmt>(Parent)->getCond() != S)
441 if (cast<WhileStmt>(Parent)->getCond() != S)
908 S = cast<AbstractConditionalOperator>(S)->getCond();
912 S = cast<ChooseExpr>(S)->getCond();
    [all...]
BugReporterVisitors.cpp     [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 428 unsigned Sz = buildSExpr(CE->getCond(), CallCtx);
435 unsigned Sz = buildSExpr(CE->getCond(), CallCtx);
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 437 if (ConstantFoldsToSimpleInteger(S.getCond(), CondConstant)) {
462 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock);
520 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
594 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
640 if (S.getCond()) {
658 BoolCondVal = EvaluateExprAsBool(S.getCond());
739 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
    [all...]
CGExprAgg.cpp     [all...]
CGExprComplex.cpp 751 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
    [all...]
CodeGenFunction.cpp     [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 646 Environment after_cond = env.ApplyEffect(VisitExpr(expr->getCond(), env));
1026 block.Loop(stmt->getCond(), stmt->getBody());
1034 block.Loop(stmt->getBody(), stmt->getCond());
1042 block.Loop(stmt->getCond(),
1050 Environment cond_out = VisitStmt(stmt->getCond(), env);
1058 block.Seq(stmt->getCond(), stmt->getBody());
    [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/Serialization/
ASTWriterStmt.cpp 123 Writer.AddStmt(S->getCond());
134 Writer.AddStmt(S->getCond());
147 Writer.AddStmt(S->getCond());
155 Writer.AddStmt(S->getCond());
166 Writer.AddStmt(S->getCond());
619 Writer.AddStmt(E->getCond());
632 Writer.AddStmt(E->getCond());
771 Writer.AddStmt(E->getCond());
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 532 Range = IS->getCond()->getSourceRange();
542 Range = CO->getCond()->getSourceRange();
571 Range = cast<WhileStmt>(Term)->getCond()->getSourceRange();
578 Range = cast<ForStmt>(Term)->getCond()->getSourceRange();
590 Range = cast<DoStmt>(Term)->getCond()->getSourceRange();
    [all...]
TreeTransform.h     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 214 const Expr *condition = FS->getCond();
IdempotentOperationChecker.cpp 685 return CanVary(cast<AbstractConditionalOperator>(Ex)->getCond(), AC);

Completed in 174 milliseconds

1 2