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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/html/
LabelsNodeList.cpp 46 bool LabelsNodeList::nodeMatches(Element* testNode) const
48 return isHTMLLabelElement(testNode) && toHTMLLabelElement(testNode)->control() == ownerNode();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ClassNodeList.h 60 inline bool ClassNodeList::nodeMatchesInlined(Element* testNode) const
62 if (!testNode->hasClass())
68 if (!testNode->isStyledElement())
70 return testNode->classNames().containsAll(m_classNames);
ChildNodeList.cpp 41 bool ChildNodeList::nodeMatches(Element* testNode) const
45 return testNode->parentNode() == rootNode();
ClassNodeList.cpp 50 bool ClassNodeList::nodeMatches(Element* testNode) const
52 return nodeMatchesInlined(testNode);
NameNodeList.cpp 45 bool NameNodeList::nodeMatches(Element* testNode) const
47 return testNode->getNameAttribute() == m_name;
TagNodeList.cpp 49 bool TagNodeList::nodeMatches(Element* testNode) const
52 if (m_localName != starAtom && m_localName != testNode->localName())
55 return m_namespaceURI == starAtom || m_namespaceURI == testNode->namespaceURI();
64 bool HTMLTagNodeList::nodeMatches(Element* testNode) const
66 return nodeMatchesInlined(testNode);
  /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();
  /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);

Completed in 214 milliseconds

1 2 3 4