HomeSort by relevance Sort by last modified time
    Searched refs:variableName (Results 1 - 11 of 11) sorted by null

  /libcore/luni/src/main/java/javax/xml/xpath/
XPathVariableResolver.java 41 * <p>If <code>variableName</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
43 * @param variableName The <code>QName</code> of the variable name.
45 * @return The variables value, or <code>null</code> if no variable named <code>variableName</code>
48 * @throws NullPointerException If <code>variableName</code> is <code>null</code>.
50 public Object resolveVariable(QName variableName);
  /external/webkit/WebCore/css/
CSSVariablesDeclaration.cpp 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);
    [all...]
CSSVariablesDeclaration.idl 33 DOMString getVariableValue(in DOMString variableName);
34 DOMString removeVariable(in DOMString variableName)
36 void setVariable(in DOMString variableName,
CSSVariablesDeclaration.h 65 void addParsedVariable(const String& variableName, PassRefPtr<CSSValue> variableValue, bool updateNamesList = true);
67 CSSValueList* getParsedVariable(const String& variableName);
68 CSSMutableStyleDeclaration* getParsedVariableDeclarationBlock(const String& variableName);
CSSParser.h 155 bool parseVariable(CSSVariablesDeclaration*, const String& variableName, const String& variableValue);
CSSParser.cpp     [all...]
  /external/webkit/WebCore/wml/
WMLVariables.cpp 130 String variableName = text.substring(nameStartPosition, nameEndPosition - nameStartPosition);
132 int conversionStringStart = variableName.find(':');
134 conversionString = variableName.substring(conversionStringStart + 1, variableName.length() - (conversionStringStart + 1));
135 variableName = variableName.left(conversionStringStart);
138 isValid = isValidVariableName(variableName);
201 String variableName;
211 variableName = remainingInput.substring(2, referenceEndPosition - 2);
215 int pos = variableName.find(':')
    [all...]
  /frameworks/base/core/java/android/os/
Environment.java 408 static File getDirectory(String variableName, String defaultPath) {
409 String path = System.getenv(variableName);
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 328 * @param variableName
335 String variableName, IClassDefinition declaration) {
336 assert variableName != null;
346 if (variableName.equals(typeVariable.getName())) {
350 return getDeclarationOfTypeVariable(variableName, declaration
  /libcore/luni/src/test/java/org/apache/harmony/xml/
JaxenXPathTestSuite.java 291 public Object resolveVariable(QName variableName) {
292 return element.getAttribute("var:" + variableName.getLocalPart());
  /prebuilt/common/ecj/
ecj.jar 

Completed in 299 milliseconds