Searched refs:variableValue (Results 1 – 13 of 13) sorted by relevance
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/ |
D | NameFunction.java | 38 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/ |
D | TemplateInterpreter.java | 378 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()
|
D | ExpressionEvaluator.java | 96 setResult(Value.variableValue(variableName, context)); in caseAVariableExpression()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSStyleDeclaration.h | 64 virtual String variableValue(const AtomicString& name) const = 0;
|
D | StylePropertySet.h | 95 String variableValue(const AtomicString& name) const; 239 virtual String value() const OVERRIDE { return m_propertySet->variableValue(name()); } in value()
|
D | CSSVariablesMap.cpp | 46 return m_styleDeclaration->variableValue(name); in get()
|
D | PropertySetCSSStyleDeclaration.cpp | 281 String PropertySetCSSStyleDeclaration::variableValue(const AtomicString& name) const in variableValue() function in WebCore::PropertySetCSSStyleDeclaration 284 return m_propertySet->variableValue(name); in variableValue()
|
D | PropertySetCSSStyleDeclaration.h | 72 virtual String variableValue(const AtomicString& name) const OVERRIDE;
|
D | CSSComputedStyleDeclaration.h | 123 virtual String variableValue(const AtomicString& name) const OVERRIDE;
|
D | StylePropertySet.cpp | 137 String StylePropertySet::variableValue(const AtomicString& name) const in variableValue() function in WebCore::StylePropertySet
|
D | CSSComputedStyleDeclaration.cpp | 3186 String CSSComputedStyleDeclaration::variableValue(const AtomicString& name) const in variableValue() function in WebCore::CSSComputedStyleDeclaration
|
/external/jsilver/src/com/google/clearsilver/jsilver/values/ |
D | Value.java | 221 public static Value variableValue(String name, DataContext dataContext) { in variableValue() method in Value
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | BaseCompiledTemplate.java | 198 return Value.variableValue(variableName, context); in asVariableValue()
|