Home
last modified time | relevance | path

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

/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
DNameFunction.java38 VariableValue variableValue = (VariableValue) value; in execute() local
39 Data variable = variableValue.getReference(); in execute()
41 return literalValue(variable.getSymlink().getName(), variableValue.getEscapeMode(), in execute()
42 variableValue.isPartiallyEscaped()); in execute()
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DTemplateInterpreter.java378 VariableValue variableValue = (VariableValue) expression; in caseAEachCommand() local
379 Data parent = variableValue.getReference(); in caseAEachCommand()
381 each(node.getVariable(), variableValue.getName(), parent, node.getCommand()); in caseAEachCommand()
534 setTempVariable(eachVar, Value.variableValue(pathBuilder.toString(), dataContext)); in each()
DExpressionEvaluator.java96 setResult(Value.variableValue(variableName, context)); in caseAVariableExpression()
/external/jsilver/src/com/google/clearsilver/jsilver/values/
DValue.java221 public static Value variableValue(String name, DataContext dataContext) { in variableValue() method in Value
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DBaseCompiledTemplate.java198 return Value.variableValue(variableName, context); in asVariableValue()
/external/cldr/tools/java/org/unicode/cldr/util/
DRegexLookup.java1027 public RegexLookup<T> addVariable(String variable, String variableValue) { in addVariable() argument
1031 variables.add(variable.trim(), variableValue.trim()); in addVariable()