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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTagCollection.cpp 30 HTMLTagCollection::HTMLTagCollection(ContainerNode& rootNode, const AtomicString& localName)
31 : TagCollection(rootNode, HTMLTagCollectionType, starAtom, localName)
34 ASSERT(rootNode.document().isHTMLDocument());
HTMLTagCollection.h 33 // Collection that limits to a particular tag and whose rootNode is in an HTMLDocument.
36 static PassRefPtrWillBeRawPtr<HTMLTagCollection> create(ContainerNode& rootNode, CollectionType type, const AtomicString& localName)
39 return adoptRefWillBeNoop(new HTMLTagCollection(rootNode, localName));
45 HTMLTagCollection(ContainerNode& rootNode, const AtomicString& localName);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
IsSupported.java 59 Node rootNode;
62 rootNode = doc.getDocumentElement();
63 state = rootNode.isSupported("XXX", "1.0");
68 Node rootNode;
71 rootNode = doc.getDocumentElement();
72 state = rootNode.isSupported("XML", "9.0");
77 Node rootNode;
80 rootNode = doc.getDocumentElement();
81 state = rootNode.isSupported("xml", "1.0");
86 Node rootNode;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NameNodeList.h 35 static PassRefPtrWillBeRawPtr<NameNodeList> create(ContainerNode& rootNode, CollectionType type, const AtomicString& name)
38 return adoptRefWillBeNoop(new NameNodeList(rootNode, name));
44 NameNodeList(ContainerNode& rootNode, const AtomicString& name);
EmptyNodeList.h 42 static PassRefPtrWillBeRawPtr<EmptyNodeList> create(Node& rootNode)
44 return adoptRefWillBeNoop(new EmptyNodeList(rootNode));
53 explicit EmptyNodeList(Node& rootNode) : m_owner(rootNode) { }
SelectorQuery.cpp 68 ClassElementList(ContainerNode& rootNode, const AtomicString& className)
70 , m_rootNode(&rootNode)
71 , m_currentElement(nextInternal(ElementTraversal::firstWithin(rootNode))) { }
118 inline bool SelectorDataList::selectorMatches(const CSSSelector& selector, Element& element, const ContainerNode& rootNode) const
122 selectorCheckingContext.scope = !rootNode.isDocumentNode() ? &rootNode : 0;
139 PassRefPtrWillBeRawPtr<StaticElementList> SelectorDataList::queryAll(ContainerNode& rootNode) const
142 execute<AllElementsSelectorQueryTrait>(rootNode, result);
146 PassRefPtrWillBeRawPtr<Element> SelectorDataList::queryFirst(ContainerNode& rootNode) const
149 execute<SingleElementSelectorQueryTrait>(rootNode, matchedElement)
    [all...]
ClassCollection.cpp 38 ClassCollection::ClassCollection(ContainerNode& rootNode, const AtomicString& classNames)
39 : HTMLCollection(rootNode, ClassCollectionType, DoesNotOverrideItemAfter)
NameNodeList.cpp 34 NameNodeList::NameNodeList(ContainerNode& rootNode, const AtomicString& name)
35 : LiveNodeList(rootNode, NameNodeListType, InvalidateOnNameAttrChange)
SelectorQuery.h 50 PassRefPtrWillBeRawPtr<StaticElementList> queryAll(ContainerNode& rootNode) const;
51 PassRefPtrWillBeRawPtr<Element> queryFirst(ContainerNode& rootNode) const;
54 bool canUseFastQuery(const ContainerNode& rootNode) const;
58 void collectElementsByClassName(ContainerNode& rootNode, const AtomicString& className, typename SelectorQueryTrait::OutputType&) const;
60 void collectElementsByTagName(ContainerNode& rootNode, const QualifiedName& tagName, typename SelectorQueryTrait::OutputType&) const;
63 void findTraverseRootsAndExecute(ContainerNode& rootNode, typename SelectorQueryTrait::OutputType&) const;
67 void executeForTraverseRoot(const CSSSelector&, ContainerNode* traverseRoot, MatchTraverseRootState, ContainerNode& rootNode, typename SelectorQueryTrait::OutputType&) const;
69 void executeForTraverseRoots(const CSSSelector&, SimpleElementListType& traverseRoots, MatchTraverseRootState, ContainerNode& rootNode, typename SelectorQueryTrait::OutputType&) const;
72 bool selectorListMatches(ContainerNode& rootNode, Element&, typename SelectorQueryTrait::OutputType&) const;
74 void executeSlow(ContainerNode& rootNode, typename SelectorQueryTrait::OutputType&) const
    [all...]
TagCollection.h 35 static PassRefPtrWillBeRawPtr<TagCollection> create(ContainerNode& rootNode, const AtomicString& namespaceURI, const AtomicString& localName)
38 return adoptRefWillBeNoop(new TagCollection(rootNode, TagCollectionType, namespaceURI, localName));
41 static PassRefPtrWillBeRawPtr<TagCollection> create(ContainerNode& rootNode, CollectionType type, const AtomicString& localName)
44 return adoptRefWillBeNoop(new TagCollection(rootNode, TagCollectionType, starAtom, localName));
52 TagCollection(ContainerNode& rootNode, CollectionType, const AtomicString& namespaceURI, const AtomicString& localName);
ChildNodeList.h 37 static PassRefPtrWillBeRawPtr<ChildNodeList> create(ContainerNode& rootNode)
39 return adoptRefWillBeNoop(new ChildNodeList(rootNode));
52 ContainerNode& rootNode() const { return ownerNode(); }
56 Node* traverseToFirst() const { return rootNode().firstChild(); }
57 Node* traverseToLast() const { return rootNode().lastChild(); }
64 explicit ChildNodeList(ContainerNode& rootNode);
ClassCollection.h 43 static PassRefPtrWillBeRawPtr<ClassCollection> create(ContainerNode& rootNode, CollectionType type, const AtomicString& classNames)
46 return adoptRefWillBeNoop(new ClassCollection(rootNode, classNames));
54 ClassCollection(ContainerNode& rootNode, const AtomicString& classNames);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_noderemovechild.java 66 Element rootNode;
72 rootNode = doc.getDocumentElement();
73 childList = rootNode.getChildNodes();
75 removedChild = rootNode.removeChild(childToRemove);
noderemovechild.java 66 Element rootNode;
72 rootNode = doc.getDocumentElement();
73 childList = rootNode.getChildNodes();
75 removedChild = rootNode.removeChild(childToRemove);
hc_nodeappendchildinvalidnodetype.java 70 Element rootNode;
74 rootNode = doc.getDocumentElement();
80 appendedChild = rootNode.appendChild(newChild);
hc_nodeelementnodetype.java 62 Element rootNode;
65 rootNode = doc.getDocumentElement();
66 nodeType = (int) rootNode.getNodeType();
nodeappendchildinvalidnodetype.java 71 Element rootNode;
75 rootNode = doc.getDocumentElement();
81 appendedChild = rootNode.appendChild(newChild);
nodeelementnodetype.java 63 Element rootNode;
66 rootNode = doc.getDocumentElement();
67 nodeType = (int) rootNode.getNodeType();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
isSupported12.java 91 Node rootNode;
95 rootNode = doc.getDocumentElement();
96 state = rootNode.isSupported("Core", "2.0");
100 state = rootNode.isSupported(featureElement, "1.0");
104 state = rootNode.isSupported(featureElement, "2.0");
isSupported01.java 72 Node rootNode;
75 rootNode = doc.getDocumentElement();
76 state = rootNode.isSupported("XXX", "1.0");
isSupported02.java 72 Node rootNode;
75 rootNode = doc.getDocumentElement();
76 state = rootNode.isSupported("XML", "9.0");
isSupported04.java 74 Node rootNode;
77 rootNode = doc.getDocumentElement();
78 state = rootNode.isSupported("xml", "1.0");
isSupported05.java 74 Node rootNode;
77 rootNode = doc.getDocumentElement();
78 state = rootNode.isSupported("core", "2.0");
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DOMStorageItemsView.js 77 this._dataGrid.rootNode().removeChildren();
92 var rootNode = this._dataGrid.rootNode();
93 var children = rootNode.children;
100 rootNode.removeChild(childNode);
116 var rootNode = this._dataGrid.rootNode();
117 var children = rootNode.children;
127 rootNode.insertChild(childNode, children.length - 1);
139 var rootNode = this._dataGrid.rootNode()
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowUriMatcher.java 27 public MatchNode rootNode;
30 rootNode = new MatchNode(code);
35 MatchNode authNode = rootNode.map.get(authority);
37 authNode = new MatchNode(rootNode.code);
38 rootNode.map.put(authority, authNode);
50 if (!rootNode.map.containsKey(auth)) {
51 return rootNode.code;
54 return matchSegments(rootNode.map.get(auth), segments);
79 return rootNode.code;
89 nextNode = new MatchNode(rootNode.code)
    [all...]

Completed in 546 milliseconds

1 2 3 4 5 6 7 8 910