HomeSort by relevance Sort by last modified time
    Searched refs:testNode (Results 1 - 25 of 1464) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/dom/
ClassNodeList.cpp 50 bool ClassNodeList::nodeMatches(Element* testNode) const
52 if (!testNode->hasClass())
56 ASSERT(testNode->isStyledElement());
57 return static_cast<StyledElement*>(testNode)->classNames().containsAll(m_classNames);
NameNodeList.cpp 45 bool NameNodeList::nodeMatches(Element* testNode) const
47 return testNode->getAttribute(nameAttr) == m_nodeName;
TagNodeList.cpp 45 bool TagNodeList::nodeMatches(Element* testNode) const
47 if (m_namespaceURI != starAtom && m_namespaceURI != testNode->namespaceURI())
50 return m_localName == starAtom || m_localName == testNode->localName();
  /external/webkit/Source/WebCore/html/
LabelsNodeList.cpp 45 bool LabelsNodeList::nodeMatches(Element* testNode) const
47 return testNode->hasTagName(labelTag) && static_cast<HTMLLabelElement*>(testNode)->control() == m_forNode;
  /external/jmonkeyengine/engine/src/test/jme3test/scene/
TestUserData.java 50 Spatial testNode = scene.getChild("TestNode");
51 System.out.println("TestNode: "+ testNode);
53 for (String key : testNode.getUserDataKeys()){
54 System.out.println("Property " + key + " = " + testNode.getUserData(key));
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttribute.java 52 Element testNode;
56 testNode = (Element) elementList.item(4);
57 state = testNode.hasAttribute("domestic");
65 // Element testNode;
69 // testNode = (Element) elementList.item(0);
70 // state = testNode.hasAttribute("street");
76 Element testNode;
80 testNode = (Element) elementList.item(0);
81 state = testNode.hasAttribute("nomatch");
87 Element testNode;
    [all...]
HasAttributeNS.java 78 Element testNode;
82 testNode = (Element) elementList.item(0);
83 state = testNode.hasAttributeNS(namespaceURI, localName);
91 Element testNode;
95 testNode = (Element) elementList.item(0);
96 state = testNode.hasAttributeNS(namespaceURI, localName);
104 Element testNode;
108 testNode = (Element) elementList.item(0);
109 assertNotNull("empAddrNotNull", testNode);
110 state = testNode.hasAttributeNS(namespaceURI, localName)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrspecifiedvaluechanged.java 68 Node testNode;
74 testNode = addressList.item(2);
75 ((Element) /*Node */testNode).setAttribute("street", "Yes");
76 attributes = testNode.getAttributes();
hc_attrspecifiedvaluechanged.java 67 Node testNode;
73 testNode = addressList.item(2);
74 ((Element) /*Node */testNode).setAttribute("class", "Y\u03b1"); // android-changed: GREEK LOWER CASE ALPHA
75 attributes = testNode.getAttributes();
attreffectivevalue.java 64 Node testNode;
70 testNode = addressList.item(0);
71 attributes = testNode.getAttributes();
attrentityreplacement.java 69 Node testNode;
75 testNode = addressList.item(3);
76 attributes = testNode.getAttributes();
attrname.java 65 Node testNode;
71 testNode = addressList.item(1);
72 attributes = testNode.getAttributes();
attrnextsiblingnull.java 64 Node testNode;
70 testNode = addressList.item(0);
71 attributes = testNode.getAttributes();
attrparentnodenull.java 64 Node testNode;
70 testNode = addressList.item(0);
71 attributes = testNode.getAttributes();
attrprevioussiblingnull.java 64 Node testNode;
70 testNode = addressList.item(0);
71 attributes = testNode.getAttributes();
attrspecifiedvalue.java 67 Node testNode;
73 testNode = addressList.item(0);
74 attributes = testNode.getAttributes();
hc_attreffectivevalue.java 63 Node testNode;
69 testNode = addressList.item(0);
70 attributes = testNode.getAttributes();
hc_attrgetvalue1.java 59 Node testNode;
68 testNode = acronymList.item(3);
69 attributes = testNode.getAttributes();
hc_attrhaschildnodes.java 60 Node testNode;
66 testNode = acronymList.item(3);
67 attributes = testNode.getAttributes();
hc_attrnextsiblingnull.java 63 Node testNode;
69 testNode = addressList.item(0);
70 attributes = testNode.getAttributes();
hc_attrparentnodenull.java 63 Node testNode;
69 testNode = addressList.item(0);
70 attributes = testNode.getAttributes();
hc_attrprevioussiblingnull.java 63 Node testNode;
69 testNode = addressList.item(0);
70 attributes = testNode.getAttributes();
hc_attrspecifiedvalue.java 66 Node testNode;
72 testNode = addressList.item(0);
73 attributes = testNode.getAttributes();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
hasAttributeNS03.java 70 Element testNode;
74 testNode = (Element) elementList.item(0);
75 assertNotNull("empAddrNotNull", testNode);
76 state = testNode.hasAttributeNS(namespaceURI, localName);
hasAttribute01.java 66 Element testNode;
70 testNode = (Element) elementList.item(4);
71 state = testNode.hasAttribute("domestic");

Completed in 1260 milliseconds

1 2 3 4 5 6 7 8 91011>>