Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/wml/
DWMLVariables.cpp239 String variableValue = pageState->getVariable(variableName); in substituteVariableReferences() local
240 if (variableValue.isEmpty()) in substituteVariableReferences()
243 if (containsVariableReference(variableValue, isValid)) { in substituteVariableReferences()
247 variableValue = substituteVariableReferences(variableValue, document, escapeMode); in substituteVariableReferences()
265 variableValue = encodeWithURLEscapeSequences(variableValue); in substituteVariableReferences()
268 variableValue = decodeURLEscapeSequences(variableValue); in substituteVariableReferences()
272 result += variableValue; in substituteVariableReferences()
DWMLInputElement.cpp363 String variableValue; in initialize() local
367 variableValue = pageSate->getVariable(nameVariable); in initialize()
369 if (variableValue.isEmpty() || !isConformedToInputMask(variableValue)) { in initialize()
372 variableValue = val; in initialize()
374 variableValue = ""; in initialize()
376 pageSate->storeVariable(nameVariable, variableValue); in initialize()
378 setValue(variableValue); in initialize()
/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/webkit/Source/WebCore/platform/win/
DLoggingWin.cpp45 String variableValue(buffer.get()); in initializeWithUserDefault() local
48 if (variableValue.length() < 3 || !variableValue.startsWith(hexadecimalPrefix, false)) { in initializeWithUserDefault()
53 String unprefixedValue = variableValue.substring(2); in initializeWithUserDefault()
/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()