Searched refs:false_expr (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/python/autograph/converters/ |
D | conditional_expressions.py | 40 false_expr=node.orelse,
|
/external/pigweed/pw_preprocessor/public/pw_preprocessor/internal/ |
D | arg_count_impl.h | 20 #define _PW_IF(boolean, true_expr, false_expr) \ argument 21 _PW_PASTE2(_PW_IF_, boolean)(true_expr, false_expr) 23 #define _PW_IF_0(true_expr, false_expr) false_expr argument 24 #define _PW_IF_1(true_expr, false_expr) true_expr argument
|
/external/pytorch/torch/csrc/jit/python/ |
D | python_tree_views.cpp | 347 [](const Expr& cond, const Expr& true_expr, const Expr& false_expr) { in initTreeViewBindings() argument 348 return TernaryIf::create(cond.range(), cond, true_expr, false_expr); in initTreeViewBindings()
|
/external/pytorch/torch/csrc/jit/frontend/ |
D | tree_views.h | 1129 Expr false_expr() const { in false_expr() function 1136 const Expr& false_expr) { in create() 1138 Compound::create(TK_IF_EXPR, range, {cond, true_expr, false_expr})); in create()
|
D | ir_emitter.cpp | 1350 return emitExpr(expr.false_expr(), type_hint); in emitTernaryIf() 1354 auto false_expr = [&] { return emitExpr(expr.false_expr(), type_hint); }; in emitTernaryIf() local 1355 return emitIfExpr(expr.range(), cond_value, true_expr, false_expr); in emitTernaryIf() 1893 const std::function<Value*()>& false_expr) { in emitIfExpr() 1912 emit_if_expr(false_block, cond_value.refinements().Not(), false_expr); in emitIfExpr()
|