Home
last modified time | relevance | path

Searched refs:thenExpr (Results 1 – 8 of 8) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorSyclExprConstructor.h133 my_then_type thenExpr;\
138 …: ifExpr(funcD.ifExpr, t), thenExpr(funcD.thenExpr, t), elseExpr(funcD.elseExpr, t), expr(ifExpr.e…
DTensorSyclExtractFunctors.h100 FunctorExtractor<TensorEvaluator<ThenExpr, Dev> > thenExpr;
103 : ifExpr(expr.cond_impl()), thenExpr(expr.then_impl()), elseExpr(expr.else_impl()) {}
/external/javassist/src/main/javassist/compiler/ast/
DCondExpr.java32 public ASTree thenExpr() { return tail().head(); } in thenExpr() method in CondExpr
/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyTraverse.h870 printSExpr(E->thenExpr(), SS, Prec_Unary); in printIfThenElse()
878 printSExpr(E->thenExpr(), SS, Prec_Other); in printIfThenElse()
DThreadSafetyTIL.h1828 SExpr *thenExpr() { return ThenExpr; } // Value to store in thenExpr() function
1829 const SExpr *thenExpr() const { return ThenExpr; } in thenExpr() function
1847 Ct = Cmp.compare(thenExpr(), E->thenExpr()); in compare()
/external/javassist/src/main/javassist/compiler/
DTypeChecker.java283 expr.thenExpr().accept(this); in atCondExpr()
291 expr.setThen(new CastExpr(exprType, 0, expr.thenExpr())); in atCondExpr()
DParser.java721 ASTree thenExpr = parseExpression(tbl); in parseConditionalExpr() local
726 return new CondExpr(cond, thenExpr, elseExpr); in parseConditionalExpr()
DCodeGen.java920 expr.thenExpr().accept(this); in atCondExpr()