Searched refs:nextSibling (Results 1 - 25 of 319) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/
H A Dabout_credits.js8 var licence = o.nextSibling;
12 licence = licence.nextSibling;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DChildNode.h22 return ElementTraversal::nextSibling(node);
H A DNodeTraversal.h91 if (current.nextSibling())
92 return current.nextSibling();
103 if (current.nextSibling())
104 return current.nextSibling();
110 if (current.nextSibling())
111 return current.nextSibling();
119 if (current.nextSibling())
120 return current.nextSibling();
137 child = child->nextSibling();
H A DChildNodeList.cpp52 for (Node* next = currentNode.nextSibling(); next; next = next->nextSibling()) { function
H A DMutationRecord.idl40 readonly attribute Node nextSibling;
H A DNodeTraversal.cpp78 ASSERT(!current.nextSibling());
80 if (parent->nextSibling())
81 return parent->nextSibling();
88 ASSERT(!current.nextSibling());
93 if (parent->nextSibling())
94 return parent->nextSibling();
145 if (!current.nextSibling())
147 Node* next = current.nextSibling();
H A DText.cpp68 while (Node* nextSibling = this->nextSibling()) {
69 if (nextSibling->nodeType() != TEXT_NODE)
72 RefPtrWillBeRawPtr<Text> nextText = toText(nextSibling);
122 parentNode()->insertBefore(newText.get(), nextSibling(), exceptionState);
151 for (const Node* n = t->nextSibling(); n; n = n->nextSibling()) {
168 Node* onePastEndText = endText->nextSibling();
170 for (const Node* n = startText; n != onePastEndText; n = n->nextSibling()) {
180 for (const Node* n = startText; n != onePastEndText; n = n->nextSibling()) {
[all...]
H A DChildFrameDisconnector.cpp31 for (Node* child = root().firstChild(); child; child = child->nextSibling())
46 for (Node* child = root.firstChild(); child; child = child->nextSibling())
90 for (Node* child = node.firstChild(); child; child = child->nextSibling())
H A DMutationRecord.h50 static PassRefPtrWillBeRawPtr<MutationRecord> createChildList(PassRefPtrWillBeRawPtr<Node> target, PassRefPtrWillBeRawPtr<StaticNodeList> added, PassRefPtrWillBeRawPtr<StaticNodeList> removed, PassRefPtrWillBeRawPtr<Node> previousSibling, PassRefPtrWillBeRawPtr<Node> nextSibling);
65 virtual Node* nextSibling() { return 0; } function in class:blink::MutationRecord
H A DTreeWalker.idl36 [RaisesException] Node nextSibling();
H A DMutationRecord.cpp47 ChildListRecord(PassRefPtrWillBeRawPtr<Node> target, PassRefPtrWillBeRawPtr<StaticNodeList> added, PassRefPtrWillBeRawPtr<StaticNodeList> removed, PassRefPtrWillBeRawPtr<Node> previousSibling, PassRefPtrWillBeRawPtr<Node> nextSibling) argument
52 , m_nextSibling(nextSibling)
72 virtual Node* nextSibling() OVERRIDE { return m_nextSibling.get(); }
164 virtual Node* nextSibling() OVERRIDE { return m_record->nextSibling(); }
193 PassRefPtrWillBeRawPtr<MutationRecord> MutationRecord::createChildList(PassRefPtrWillBeRawPtr<Node> target, PassRefPtrWillBeRawPtr<StaticNodeList> added, PassRefPtrWillBeRawPtr<StaticNodeList> removed, PassRefPtrWillBeRawPtr<Node> previousSibling, PassRefPtrWillBeRawPtr<Node> nextSibling) argument
195 return adoptRefWillBeNoop(new ChildListRecord(target, added, removed, previousSibling, nextSibling));
H A DTreeWalker.cpp93 if (node->nextSibling()) {
94 node = node->nextSibling();
176 Node* TreeWalker::nextSibling(ExceptionState& exceptionState) function in class:blink::TreeWalker
182 for (RefPtrWillBeRawPtr<Node> sibling = node->nextSibling(); sibling; ) {
200 sibling = sibling->nextSibling();
266 while (Node* nextSibling = NodeTraversal::nextSkippingChildren(*node, root())) {
267 node = nextSibling;
H A DChildListMutationScope.cpp89 return isEmpty() || (m_lastAdded == child->previousSibling() && m_nextSibling == child->nextSibling());
103 m_nextSibling = child->nextSibling();
126 m_nextSibling = child->nextSibling();
129 m_nextSibling = child->nextSibling();
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableRowsCollection.cpp53 if (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::nextSibling(*previous))
62 child = Traversal<HTMLElement>::nextSibling(*previous->parentNode());
63 for (; child; child = Traversal<HTMLElement>::nextSibling(*child)) {
74 child = Traversal<HTMLElement>::nextSibling(*previous);
76 child = Traversal<HTMLElement>::nextSibling(*previous->parentNode());
77 for (; child; child = Traversal<HTMLElement>::nextSibling(*child)) {
90 child = Traversal<HTMLElement>::nextSibling(*previous->parentNode());
91 for (; child; child = Traversal<HTMLElement>::nextSibling(*child)) {
H A DHTMLPictureElement.cpp27 for (HTMLImageElement* imageElement = Traversal<HTMLImageElement>::firstChild(*this); imageElement; imageElement = Traversal<HTMLImageElement>::nextSibling(*imageElement)) {
H A DHTMLTableRowElement.cpp76 for (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*head); row; row = Traversal<HTMLTableRowElement>::nextSibling(*row)) {
83 for (HTMLElement* tbody = Traversal<HTMLElement>::firstChild(*table, HasHTMLTagName(tbodyTag)); tbody; tbody = Traversal<HTMLElement>::nextSibling(*tbody, HasHTMLTagName(tbodyTag))) {
84 for (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*tbody); row; row = Traversal<HTMLTableRowElement>::nextSibling(*row)) {
92 for (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*foot); row; row = Traversal<HTMLTableRowElement>::nextSibling(*row)) {
/external/chromium_org/third_party/WebKit/Source/web/
H A DRemoteFrameClient.cpp44 Frame* RemoteFrameClient::nextSibling() const function in class:blink::RemoteFrameClient
46 return toCoreFrame(m_webFrame->nextSibling());
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAltGlyphItemElement.cpp47 for (SVGGlyphRefElement* glyph = Traversal<SVGGlyphRefElement>::firstChild(*this); glyph; glyph = Traversal<SVGGlyphRefElement>::nextSibling(*glyph)) {
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMergeIdenticalElementsCommand.cpp42 ASSERT(m_element1->nextSibling() == m_element2);
47 if (m_element1->nextSibling() != m_element2 || !m_element1->hasEditableStyle() || !m_element2->hasEditableStyle())
80 for (Node* child = m_element2->firstChild(); child && child != atChild; child = child->nextSibling())
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameClient.h23 virtual Frame* nextSibling() const = 0;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFrameTree.cpp55 for (Frame* child = firstChild(); child; child = child->tree().nextSibling()) {
100 Frame* FrameTree::nextSibling() const function in class:blink::FrameTree
104 return m_thisFrame->client()->nextSibling();
182 for (Frame* result = firstChild(); result; result = result->tree().nextSibling()) {
202 for (Frame* child = firstChild(); child; child = child->tree().nextSibling())
214 for (Frame* result = firstChild(); result; result = result->tree().nextSibling()) {
237 for (Frame* result = firstChild(); result; result = result->tree().nextSibling())
244 for (Frame* child = firstChild(); child; child = child->tree().nextSibling())
323 Frame* sibling = nextSibling();
334 sibling = frame->tree().nextSibling();
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNestedMapData.java70 private NestedMapData nextSibling = null; field in class:NestedMapData
105 curr = curr.nextSibling;
116 sym.lastChild.nextSibling = data;
136 prevSibling.nextSibling = nextSibling;
138 parent.firstChild = nextSibling;
140 if (nextSibling != null) {
141 nextSibling.prevSibling = prevSibling;
272 return nextSibling == null;
276 return nextSibling;
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A Dtreeoutline.js112 previousChild.nextSibling = child;
121 child.nextSibling = nextChild;
123 child.nextSibling = null;
168 else if (child.nextSibling)
169 child.nextSibling.select();
175 child.previousSibling.nextSibling = child.nextSibling;
176 if (child.nextSibling)
177 child.nextSibling.previousSibling = child.previousSibling;
187 child.nextSibling
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_filename_controller/
H A Doptions.js41 var sib = rule.node.nextSibling.nextSibling;
63 this.getElement('move-down').disabled = !this.node.nextSibling;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DSection.js147 childElement = childElement.nextSibling;
169 get nextSibling()
173 curElement = curElement.nextSibling;

Completed in 427 milliseconds

1234567891011>>