Searched refs:functionExecutor (Results 1 – 4 of 4) sorted by relevance
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
D | InterpretedTemplate.java | 43 private final FunctionExecutor functionExecutor; field in InterpretedTemplate 48 FunctionExecutor functionExecutor, AutoEscapeOptions autoEscapeOptions, EscapeMode mode) { in InterpretedTemplate() argument 52 this.functionExecutor = functionExecutor; in InterpretedTemplate() 65 new TemplateInterpreter(this, loader, context, functionExecutor); in render() 75 return new DefaultRenderingContext(dataContext, resourceLoader, out, functionExecutor, in createRenderingContext()
|
D | ExpressionEvaluator.java | 66 private final FunctionExecutor functionExecutor; field in ExpressionEvaluator 73 public ExpressionEvaluator(DataContext context, FunctionExecutor functionExecutor) { in ExpressionEvaluator() argument 75 this.functionExecutor = functionExecutor; in ExpressionEvaluator() 236 setResult(functionExecutor.executeFunction(name, args)); in executeFunction()
|
D | TemplateInterpreter.java | 81 RenderingContext context, FunctionExecutor functionExecutor) { in TemplateInterpreter() argument 87 expressionEvaluator = new ExpressionEvaluator(dataContext, functionExecutor); in TemplateInterpreter()
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | BaseCompiledTemplate.java | 46 private FunctionExecutor functionExecutor; field in BaseCompiledTemplate 52 public void setFunctionExecutor(FunctionExecutor functionExecutor) { in setFunctionExecutor() argument 53 this.functionExecutor = functionExecutor; in setFunctionExecutor() 83 return new DefaultRenderingContext(dataContext, resourceLoader, out, functionExecutor, in createRenderingContext()
|