HomeSort by relevance Sort by last modified time
    Searched defs:variableValue (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/wml/
WMLVariables.cpp 239 String variableValue = pageState->getVariable(variableName);
240 if (variableValue.isEmpty())
243 if (containsVariableReference(variableValue, isValid)) {
247 variableValue = substituteVariableReferences(variableValue, document, escapeMode);
265 variableValue = encodeWithURLEscapeSequences(variableValue);
268 variableValue = decodeURLEscapeSequences(variableValue);
272 result += variableValue;
    [all...]
WMLInputElement.cpp 352 String variableValue;
356 variableValue = pageSate->getVariable(nameVariable);
358 if (variableValue.isEmpty() || !isConformedToInputMask(variableValue)) {
361 variableValue = val;
363 variableValue = "";
365 pageSate->storeVariable(nameVariable, variableValue);
367 setValue(variableValue);

Completed in 123 milliseconds