/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/ |
D | ConditionalExpr.java | 48 private Expression thenExpr; field in ConditionalExpr 57 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) { in ConditionalExpr() argument 58 this(null, condition, thenExpr, elseExpr); in ConditionalExpr() 65 …public ConditionalExpr(TokenRange tokenRange, Expression condition, Expression thenExpr, Expressio… in ConditionalExpr() argument 68 setThenExpr(thenExpr); in ConditionalExpr() 97 return thenExpr; in getThenExpr() 129 public ConditionalExpr setThenExpr(final Expression thenExpr) { in setThenExpr() argument 130 assertNotNull(thenExpr); in setThenExpr() 131 if (thenExpr == this.thenExpr) { in setThenExpr() 134 notifyPropertyChange(ObservableProperty.THEN_EXPR, this.thenExpr, thenExpr); in setThenExpr() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/ |
D | ConditionalExpr.java | 34 private Expression thenExpr; field in ConditionalExpr 41 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) { in ConditionalExpr() argument 43 setThenExpr(thenExpr); in ConditionalExpr() 47 …ginColumn, int endLine, int endColumn, Expression condition, Expression thenExpr, Expression elseE… in ConditionalExpr() argument 50 setThenExpr(thenExpr); in ConditionalExpr() 73 return thenExpr; in getThenExpr() 86 public void setThenExpr(Expression thenExpr) { in setThenExpr() argument 87 this.thenExpr = thenExpr; in setThenExpr() 88 setAsParentNodeOf(this.thenExpr); in setThenExpr()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/ |
D | ConditionalExpr.java | 35 private Expression thenExpr; field in ConditionalExpr 42 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) { in ConditionalExpr() argument 44 setThenExpr(thenExpr); in ConditionalExpr() 48 …public ConditionalExpr(Range range, Expression condition, Expression thenExpr, Expression elseExpr… in ConditionalExpr() argument 51 setThenExpr(thenExpr); in ConditionalExpr() 74 return thenExpr; in getThenExpr() 89 public ConditionalExpr setThenExpr(Expression thenExpr) { in setThenExpr() argument 90 this.thenExpr = thenExpr; in setThenExpr() 91 setAsParentNodeOf(this.thenExpr); in setThenExpr()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/ |
D | com_github_javaparser_ast_expr_ConditionalExpr.txt | 8 Line 43) setThenExpr(thenExpr) ==> void 15 Line 50) setThenExpr(thenExpr) ==> void 21 Line 73) thenExpr ==> com.github.javaparser.ast.expr.Expression 26 Line 87) this.thenExpr = thenExpr ==> com.github.javaparser.ast.expr.Expression 27 Line 88) setAsParentNodeOf(this.thenExpr) ==> void
|
D | com_github_javaparser_ast_visitor_CloneVisitor.txt | 377 …Line 551) Expression thenExpr = cloneNodes(_n.getThenExpr(), _arg) ==> com.github.javaparser.ast.e… 383 …(), _n.getBeginColumn(), _n.getEndLine(), _n.getEndColumn(), condition, thenExpr, elseExpr) ==> co… 384 …(), _n.getBeginColumn(), _n.getEndLine(), _n.getEndColumn(), condition, thenExpr, elseExpr) ==> co…
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_methodcalls_expected_output/ |
D | com_github_javaparser_ast_expr_ConditionalExpr.txt | 2 …Line 44) setThenExpr(thenExpr) ==> com.github.javaparser.ast.expr.ConditionalExpr.setThenExpr(com.… 5 …Line 51) setThenExpr(thenExpr) ==> com.github.javaparser.ast.expr.ConditionalExpr.setThenExpr(com.… 11 …Line 91) setAsParentNodeOf(this.thenExpr) ==> com.github.javaparser.ast.Node.setAsParentNodeOf(com…
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorSyclExprConstructor.h | 133 my_then_type thenExpr;\ 138 …: ifExpr(funcD.ifExpr, t), thenExpr(funcD.thenExpr, t), elseExpr(funcD.elseExpr, t), expr(ifExpr.e…
|
D | TensorSyclExtractFunctors.h | 100 FunctorExtractor<TensorEvaluator<ThenExpr, Dev> > thenExpr; 103 : ifExpr(expr.cond_impl()), thenExpr(expr.then_impl()), elseExpr(expr.else_impl()) {}
|
/external/turbine/java/com/google/turbine/parse/ |
D | ConstExpressionParser.java | 538 Tree.Expression thenExpr = expression(TurbineOperatorKind.Precedence.TERNARY); in ternary() local 539 if (thenExpr == null) { in ternary() 550 return new Tree.Conditional(position, term1, thenExpr, elseExpr); in ternary()
|
/external/clang/include/clang/Analysis/Analyses/ |
D | ThreadSafetyTraverse.h | 870 printSExpr(E->thenExpr(), SS, Prec_Unary); in printIfThenElse() 878 printSExpr(E->thenExpr(), SS, Prec_Other); in printIfThenElse()
|
D | ThreadSafetyTIL.h | 1828 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/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/ |
D | ModifierVisitor.java | 307 Expression thenExpr = (Expression) n.getThenExpr().accept(this, arg); in visit() local 309 if (condition == null || elseExpr == null || thenExpr == null) in visit() 313 n.setThenExpr(thenExpr); in visit()
|
D | CloneVisitor.java | 428 Expression thenExpr = cloneNode(n.getThenExpr(), arg); in visit() local 430 …ConditionalExpr r = new ConditionalExpr(n.getTokenRange().orElse(null), condition, thenExpr, elseE… in visit()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/ |
D | CloneVisitor.java | 625 Expression thenExpr = cloneNodes(_n.getThenExpr(), _arg); in visit() local 631 condition, thenExpr, elseExpr in visit()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/ |
D | CloneVisitor.java | 551 Expression thenExpr = cloneNodes(_n.getThenExpr(), _arg); in visit() local 557 condition, thenExpr, elseExpr in visit()
|