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

  /external/webkit/Source/WebCore/wml/
WMLPageState.h 51 void storeVariable(const String& name, const String& value) { m_variables.set(name, value); }
52 void storeVariables(WMLVariableMap& variables) { m_variables = variables; }
53 String getVariable(const String& name) const { return m_variables.get(name); }
54 bool hasVariables() const { return !m_variables.isEmpty(); }
70 WMLVariableMap m_variables; member in class:WebCore::WMLPageState
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
StylesheetRoot.java 296 m_variables = new Vector();
310 // eleminateRedundentGlobals will add variables to the m_variables vector, which
820 private Vector m_variables; field in class:StylesheetRoot
833 elemVar.setIndex(m_variables.size());
834 m_variables.addElement(elemVar);
848 if (null != m_variables)
850 int n = m_variables.size();
854 ElemVariable var = (ElemVariable)m_variables.elementAt(i);
871 return m_variables;
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 597 const Identifier& variable(unsigned index) { return m_variables[index]; }
598 unsigned numVariables() { return m_variables.size(); }
601 ASSERT(m_variables.isEmpty());
602 m_variables.swap(variables);
607 Vector<Identifier> m_variables; member in class:JSC::EvalCodeBlock

Completed in 1594 milliseconds