Lines Matching refs:variableName
51 String CSSVariablesDeclaration::getVariableValue(const String& variableName)
53 CSSValue* val = m_variablesMap.get(variableName).get();
59 String CSSVariablesDeclaration::removeVariable(const String& variableName, ExceptionCode&)
63 RefPtr<CSSValue> val = m_variablesMap.take(variableName);
68 if (m_variableNames[i] == variableName) {
82 void CSSVariablesDeclaration::setVariable(const String& variableName, const String& variableValue, ExceptionCode& excCode)
86 if (!parser.parseVariable(this, variableName, variableValue)) // If the parse succeeds, it will call addParsedVariable (our internal method for doing the add) with the parsed Value*.
92 void CSSVariablesDeclaration::addParsedVariable(const String& variableName, PassRefPtr<CSSValue> variableValue, bool updateNamesList)
101 CSSValue* current = m_variablesMap.take(variableName).get();
103 m_variableNames.append(variableName);
104 m_variablesMap.set(variableName, variableValue);
109 CSSValueList* CSSVariablesDeclaration::getParsedVariable(const String& variableName)
111 CSSValue* result = m_variablesMap.get(variableName).get();
121 StyleBase* result = m_variablesMap.get(variableName).get();