Home
last modified time | relevance | path

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

/external/jsilver/src/com/google/clearsilver/jsilver/values/
DValue.java33 private static final Map<EscapeMode, Value> EMPTY_UNESCAPED; field in Value
50 EMPTY_UNESCAPED = new HashMap<EscapeMode, Value>(2);
51 EMPTY_UNESCAPED.put(EscapeMode.ESCAPE_NONE, new StringValue("", EscapeMode.ESCAPE_NONE, false)); in EMPTY_UNESCAPED.put()
52 EMPTY_UNESCAPED.put(EscapeMode.ESCAPE_IS_CONSTANT, new StringValue("", in EMPTY_UNESCAPED.put()
124 Value v = (partiallyEscaped ? EMPTY_PART_ESCAPED : EMPTY_UNESCAPED).get(mode); in literalValue()