Searched defs:currentEscaper (Results 1 - 1 of 1) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DDefaultRenderingContext.java53 private String currentEscaper; // optimization to reduce List lookup. field in class:DefaultRenderingContext
97 escaperStack.add(currentEscaper);
99 currentEscaper = null;
101 currentEscaper = name;
111 currentEscaper = escaperStack.remove(len - 1);
118 boolean applyAutoEscape = isRuntimeAutoEscaping() && (currentEscaper == null);
126 globalFunctionExecutor.escape(currentEscaper, text, tmp);
133 globalFunctionExecutor.escape(currentEscaper, text, out);
155 if (isRuntimeAutoEscaping() && (currentEscaper == null)) {
215 if (isRuntimeAutoEscaping() || (currentEscaper !
[all...]

Completed in 68 milliseconds