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

1 2

  /frameworks/compile/slang/
slang_rs_ast_replace.cpp 99 if (matchesExpr(DS->getCond())) {
111 } else if (matchesExpr(FS->getCond())) {
123 if (matchesExpr(IS->getCond())) {
140 if (matchesExpr(SS->getCond())) {
148 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 183 PrintExpr(If->getCond());
223 PrintExpr(Node->getCond());
242 PrintExpr(Node->getCond());
259 PrintExpr(Node->getCond());
272 if (Node->getCond()) {
274 PrintExpr(Node->getCond());
    [all...]
ExprConstant.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 119 const Expr *Cond1 = I->getCond();
122 const Expr *Cond2 = I2->getCond();
361 if (!isIdenticalStmt(Ctx, ForStmt1->getCond(), ForStmt2->getCond(),
376 if (!isIdenticalStmt(Ctx, DStmt1->getCond(), DStmt2->getCond(),
388 if (!isIdenticalStmt(Ctx, WStmt1->getCond(), WStmt2->getCond(),
400 if (!isIdenticalStmt(Ctx, IStmt1->getCond(), IStmt2->getCond(),
    [all...]
CheckSecuritySyntaxOnly.cpp 225 const Expr *condition = FS->getCond();
  /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 909 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
916 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
    [all...]
Expr.h     [all...]
StmtOpenMP.h 527 Expr *getCond(bool SeparateIter) const {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 366 HandleBranch(cast<AbstractConditionalOperator>(Term)->getCond(),
374 HandleBranch(cast<ChooseExpr>(Term)->getCond(), Term, B, Pred);
391 HandleBranch(cast<DoStmt>(Term)->getCond(), Term, B, Pred);
395 HandleBranch(cast<CXXForRangeStmt>(Term)->getCond(), Term, B, Pred);
399 HandleBranch(cast<ForStmt>(Term)->getCond(), Term, B, Pred);
408 HandleBranch(cast<IfStmt>(Term)->getCond(), Term, B, Pred);
439 SwitchNodeBuilder builder(Pred, B, cast<SwitchStmt>(Term)->getCond(),
447 HandleBranch(cast<WhileStmt>(Term)->getCond(), Term, B, Pred);
BugReporter.cpp 445 if (allowNestedContexts || cast<ChooseExpr>(Parent)->getCond() == S)
454 cast<AbstractConditionalOperator>(Parent)->getCond() == S)
469 if (cast<IfStmt>(Parent)->getCond() != S)
477 if (cast<WhileStmt>(Parent)->getCond() != S)
    [all...]
BugReporterVisitors.cpp     [all...]
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 100 Expr *condE = S->getCond();
114 Expr *condE = S->getCond();
124 Expr *condE = S->getCond();
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 370 CountMap[S->getCond()] = PGO.getCurrentRegionCount();
371 Visit(S->getCond());
395 CountMap[S->getCond()] = PGO.getCurrentRegionCount();
396 Visit(S->getCond());
429 if (S->getCond()) {
432 CountMap[S->getCond()] = PGO.getCurrentRegionCount();
433 Visit(S->getCond());
468 CountMap[S->getCond()] = PGO.getCurrentRegionCount();
469 Visit(S->getCond());
492 Visit(S->getCond());
    [all...]
CGStmt.cpp 515 LexicalScope ConditionScope(*this, S.getCond()->getSourceRange());
524 if (ConstantFoldsToSimpleInteger(S.getCond(), CondConstant)) {
552 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock, Cnt.getCount());
712 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
729 PGO.createLoopWeights(S.getCond(), Cnt));
798 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
813 PGO.createLoopWeights(S.getCond(), Cnt));
864 if (S.getCond()) {
882 llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
885 PGO.createLoopWeights(S.getCond(), Cnt))
    [all...]
CoverageMappingGen.cpp 634 propagateCounts(CondCount, S->getCond());
656 propagateCounts(CondCount, S->getCond());
686 if (const Expr *Cond = S->getCond()) {
736 Visit(S->getCond());
796 propagateCounts(ParentCount, S->getCond());
    [all...]
CGStmtOpenMP.cpp     [all...]
  /external/clang/lib/Analysis/
CFG.cpp     [all...]
ReachableCode.cpp 54 const Expr *Cond = DS->getCond()->IgnoreParenCasts();
  /external/v8/tools/gcmole/
gcmole.cc 640 Environment after_cond = env.ApplyEffect(VisitExpr(expr->getCond(), env));
1009 block.Loop(stmt->getCond(), stmt->getBody());
1017 block.Loop(stmt->getBody(), stmt->getCond());
1025 block.Loop(stmt->getCond(),
1033 Environment cond_out = VisitStmt(stmt->getCond(), env);
1041 block.Seq(stmt->getCond(), stmt->getBody());
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 726 Range = IS->getCond()->getSourceRange();
736 Range = CO->getCond()->getSourceRange();
765 Range = cast<WhileStmt>(Term)->getCond()->getSourceRange();
772 Range = cast<ForStmt>(Term)->getCond()->getSourceRange();
795 Range = cast<DoStmt>(Term)->getCond()->getSourceRange();
    [all...]
TreeTransform.h     [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());
617 Writer.AddStmt(E->getCond());
630 Writer.AddStmt(E->getCond());
773 Writer.AddStmt(E->getCond());
    [all...]

Completed in 2139 milliseconds

1 2