Home
last modified time | relevance | path

Searched refs:toExecutionPath (Results 1 – 10 of 10) sorted by relevance

/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
DTernaryExpr.java104 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { in toExecutionPath() method in TernaryExpr
105 List<ExecutionPath> executionPaths = getPred().toExecutionPath(paths); in toExecutionPath()
111 result.addAll(getIfTrue().toExecutionPath(ifTrue)); in toExecutionPath()
115 result.addAll(getIfFalse().toExecutionPath(ifFalse)); in toExecutionPath()
DSymbolExpr.java77 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { in toExecutionPath() method in SymbolExpr
81 return super.toExecutionPath(paths); in toExecutionPath()
DBracketExpr.java61 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { in toExecutionPath() method in BracketExpr
62 final List<ExecutionPath> targetPaths = getTarget().toExecutionPath(paths); in toExecutionPath()
74 final List<ExecutionPath> argPath = getArg().toExecutionPath(subPath); in toExecutionPath()
DFieldAssignmentExpr.java80 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { in toExecutionPath() method in FieldAssignmentExpr
82 List<ExecutionPath> targetPaths = child.toExecutionPath(paths); in toExecutionPath()
DLambdaExpr.java120 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { in toExecutionPath() method in LambdaExpr
147 getExpr().toExecutionPath(mExecutionPath); in setup()
DMethodBaseExpr.java41 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { in toExecutionPath() method in MethodBaseExpr
42 final List<ExecutionPath> targetPaths = getTarget().toExecutionPath(paths); in toExecutionPath()
DExpr.java329 public final List<ExecutionPath> toExecutionPath(ExecutionPath path) { in toExecutionPath() method in Expr
332 return toExecutionPath(paths); in toExecutionPath()
335 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { in toExecutionPath() method in Expr
358 executionPaths = anOrder.toExecutionPath(executionPaths); in toExecutionPathInOrder()
372 executionPaths = expr.toExecutionPath(executionPaths); in toExecutionPathInOrder()
DMethodCallExpr.java98 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { in toExecutionPath() method in MethodCallExpr
99 final List<ExecutionPath> targetPaths = getTarget().toExecutionPath(paths); in toExecutionPath()
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
DExecutionPathTest.java64 List<ExecutionPath> result = parsed.toExecutionPath(paths); in simpleExpr()
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
DInverseBinding.java66 mInverseExpr.toExecutionPath(mExecutionPath); in InverseBinding()