HomeSort by relevance Sort by last modified time
    Searched refs:FunctionExecutor (Results 1 - 11 of 11) sorted by null

  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
FunctionExecutor.java 26 public interface FunctionExecutor {
FunctionRegistry.java 31 * @see FunctionExecutor
33 public class FunctionRegistry implements FunctionExecutor {
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
InterpretedTemplateLoader.java 21 import com.google.clearsilver.jsilver.functions.FunctionExecutor;
34 private final FunctionExecutor globalFunctionExecutor;
39 FunctionExecutor globalFunctionExecutor, AutoEscapeOptions autoEscapeOptions) {
InterpretedTemplate.java 24 import com.google.clearsilver.jsilver.functions.FunctionExecutor;
43 private final FunctionExecutor functionExecutor;
48 FunctionExecutor functionExecutor, AutoEscapeOptions autoEscapeOptions, EscapeMode mode) {
52 this.functionExecutor = functionExecutor;
65 new TemplateInterpreter(this, loader, context, functionExecutor);
75 return new DefaultRenderingContext(dataContext, resourceLoader, out, functionExecutor,
ExpressionEvaluator.java 21 import com.google.clearsilver.jsilver.functions.FunctionExecutor;
66 private final FunctionExecutor functionExecutor;
70 * @param functionExecutor Used for executing functions in expressions. As well as looking up
73 public ExpressionEvaluator(DataContext context, FunctionExecutor functionExecutor) {
75 this.functionExecutor = functionExecutor;
236 setResult(functionExecutor.executeFunction(name, args));
TemplateInterpreter.java 25 import com.google.clearsilver.jsilver.functions.FunctionExecutor;
81 RenderingContext context, FunctionExecutor functionExecutor) {
87 expressionEvaluator = new ExpressionEvaluator(dataContext, functionExecutor);
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateCompiler.java 21 import com.google.clearsilver.jsilver.functions.FunctionExecutor;
54 private final FunctionExecutor globalFunctionExecutor;
58 public TemplateCompiler(TemplateFactory templateFactory, FunctionExecutor globalFunctionExecutor,
BaseCompiledTemplate.java 27 import com.google.clearsilver.jsilver.functions.FunctionExecutor;
46 private FunctionExecutor functionExecutor;
52 public void setFunctionExecutor(FunctionExecutor functionExecutor) {
53 this.functionExecutor = functionExecutor;
83 return new DefaultRenderingContext(dataContext, resourceLoader, out, functionExecutor,
TemplateTranslator.java 37 import com.google.clearsilver.jsilver.functions.FunctionExecutor;
195 FunctionExecutor.class, Value.class, EscapeMode.class, IOException.class);
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
PrecompiledTemplateLoader.java 22 import com.google.clearsilver.jsilver.functions.FunctionExecutor;
47 Map<Object, String> templateToClassNameMap, FunctionExecutor globalFunctionExecutor,
55 Map<Object, String> templateToClassNameMap, FunctionExecutor globalFunctionExecutor) {
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
DefaultRenderingContext.java 27 import com.google.clearsilver.jsilver.functions.FunctionExecutor;
41 public class DefaultRenderingContext implements RenderingContext, FunctionExecutor {
47 private final FunctionExecutor globalFunctionExecutor;
66 Appendable out, FunctionExecutor globalFunctionExecutor, AutoEscapeOptions autoEscapeOptions) {

Completed in 106 milliseconds