Searched defs:nextSibling (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMutationRecord.h47 static PassRefPtr<MutationRecord> createChildList(PassRefPtr<Node> target, PassRefPtr<NodeList> added, PassRefPtr<NodeList> removed, PassRefPtr<Node> previousSibling, PassRefPtr<Node> nextSibling);
65 virtual Node* nextSibling() { return 0; } function in class:WebCore::MutationRecord
H A DNodeRenderingTraversal.cpp58 Node* nextSibling(const Node* node) function in namespace:WebCore::NodeRenderingTraversal
65 walker.nextSibling();
H A DTreeWalker.cpp96 if (node->nextSibling()) {
97 node = node->nextSibling();
179 Node* TreeWalker::nextSibling(ScriptState* state) function in class:WebCore::TreeWalker
185 for (RefPtr<Node> sibling = node->nextSibling(); sibling; ) {
203 sibling = sibling->nextSibling();
269 while (Node* nextSibling = NodeTraversal::nextSkippingChildren(node.get(), root())) {
270 node = nextSibling;
H A DMutationRecord.cpp47 ChildListRecord(PassRefPtr<Node> target, PassRefPtr<NodeList> added, PassRefPtr<NodeList> removed, PassRefPtr<Node> previousSibling, PassRefPtr<Node> nextSibling) argument
52 , m_nextSibling(nextSibling)
62 virtual Node* nextSibling() OVERRIDE { return m_nextSibling.get(); }
140 virtual Node* nextSibling() OVERRIDE { return m_record->nextSibling(); }
169 PassRefPtr<MutationRecord> MutationRecord::createChildList(PassRefPtr<Node> target, PassRefPtr<NodeList> added, PassRefPtr<NodeList> removed, PassRefPtr<Node> previousSibling, PassRefPtr<Node> nextSibling) argument
171 return adoptRef(static_cast<MutationRecord*>(new ChildListRecord(target, added, removed, previousSibling, nextSibling)));
H A DNode.h185 Node* nextSibling() const { return m_next; } function in class:WebCore::Node
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFrameTree.h53 Frame* nextSibling() const { return m_nextSibling.get(); } function in class:WebCore::FrameTree
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DCounterNode.h60 CounterNode* nextSibling() const { return m_nextSibling; } function in class:WebCore::CounterNode
H A DCounterNode.cpp75 CounterNode* nextSibling = 0; local
78 nextSibling = oldPreviousSibling->m_nextSibling;
81 child->m_nextSibling = nextSibling;
82 nextSibling->m_previousSibling = child;
367 current->nextSibling(), current->owner());
H A DRenderTable.cpp443 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
579 for (RenderObject* section = firstChild(); section; section = section->nextSibling()) {
582 for (RenderObject* row = section->firstChild(); row; row = row->nextSibling()) {
585 for (RenderObject* cell = row->firstChild(); cell; cell = cell->nextSibling()) {
669 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
807 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
828 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
844 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
906 RenderObject* nextSibling; local
907 for (RenderObject* child = firstChild(); child; child = nextSibling) {
[all...]
H A DRenderLayer.h328 RenderLayer* nextSibling() const { return m_next; } function in class:WebCore::RenderLayer
H A DRenderBoxModelObject.cpp2756 RenderObject* nextSibling = child->nextSibling(); local
2758 child = nextSibling;
H A DRenderObject.h160 RenderObject* nextSibling() const { return m_next; } function in class:WebCore::RenderObject
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DComposedShadowTreeWalker.h62 void nextSibling();
147 inline void ComposedShadowTreeWalker::nextSibling() function in class:WebCore::ComposedShadowTreeWalker
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DOctnode.java197 public void generateFastOctnodeLinks(Octnode parent, Octnode nextSibling, int side){ argument
199 fastNode.next = nextSibling != null ? nextSibling.fastNode : null;
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMBuilder.java143 * @param nextSibling the next sibling node.
145 public void setNextSibling(Node nextSibling) argument
147 m_nextSibling = nextSibling;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebNode.cpp128 WebNode WebNode::nextSibling() const function in class:WebKit::WebNode
130 return WebNode(m_private->nextSibling());
H A DWebFrameImpl.cpp247 for (Frame* curChild = frameTree->firstChild(); curChild; curChild = curChild->tree()->nextSibling()) {
671 WebFrame* WebFrameImpl::nextSibling() const function in class:WebKit::WebFrameImpl
675 return fromFrame(frame()->tree()->nextSibling());
1884 for (WebFrame* child = firstChild(); child; child = child->nextSibling())
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElementInstance.h70 SVGElementInstance* nextSibling() const { return m_nextSibling; } function in class:WebCore::SVGElementInstance
/external/guava/guava/src/com/google/common/collect/
H A DLinkedListMultimap.java116 Node<K, V> nextSibling; // the next node with the same key field in class:LinkedListMultimap.Node
185 * {@code nextSibling} element, or at the end of the list if {@code
186 * nextSibling} is null. Note: if {@code nextSibling} is specified, it MUST be
190 @Nullable K key, @Nullable V value, @Nullable Node<K, V> nextSibling) {
196 } else if (nextSibling == null) { // non-empty list, add to tail
203 keyTail.nextSibling = node;
208 } else { // non-empty list, insert before nextSibling
209 node.previous = nextSibling.previous;
210 node.previousSibling = nextSibling
189 addNode( @ullable K key, @Nullable V value, @Nullable Node<K, V> nextSibling) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedListMultimap.java112 Node<K, V> nextSibling; // the next node with the same key field in class:LinkedListMultimap.Node
181 * {@code nextSibling} element, or at the end of the list if {@code
182 * nextSibling} is null. Note: if {@code nextSibling} is specified, it MUST be
186 @Nullable K key, @Nullable V value, @Nullable Node<K, V> nextSibling) {
192 } else if (nextSibling == null) { // non-empty list, add to tail
199 keyTail.nextSibling = node;
204 } else { // non-empty list, insert before nextSibling
205 node.previous = nextSibling.previous;
206 node.previousSibling = nextSibling
185 addNode( @ullable K key, @Nullable V value, @Nullable Node<K, V> nextSibling) argument
[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/core/accessibility/
H A DAccessibilityNodeObject.cpp380 for (Node* sibling = parent->firstChild(); sibling; sibling = sibling->nextSibling()) {
754 for (Node* child = node->firstChild(); child; child = child->nextSibling()) {
1043 for (AccessibilityObject* child = firstChild(); child; child = child->nextSibling()) {
1239 AccessibilityObject* AccessibilityNodeObject::nextSibling() const function in class:WebCore::AccessibilityNodeObject
1244 Node* nextSibling = node()->nextSibling();
1245 if (!nextSibling)
1248 return axObjectCache()->getOrCreate(nextSibling);
1266 for (Node* child = m_node->firstChild(); child; child = child->nextSibling())
H A DAccessibilityRenderObject.cpp158 cur = cur->nextSibling();
1368 for (AccessibilityObject* child = firstChild(); child; child = child->nextSibling())
1498 AccessibilityObject* AccessibilityRenderObject::nextSibling() const function in class:WebCore::AccessibilityRenderObject
1503 RenderObject* nextSibling = 0;
1509 nextSibling = firstChildConsideringContinuation(inlineContinuation);
1517 nextSibling = lastParent->nextSibling();
1521 else if (RenderObject* ns = m_renderer->nextSibling())
1522 nextSibling = ns;
1527 nextSibling
[all...]
H A DAccessibilityObject.h460 virtual AccessibilityObject* nextSibling() const { return 0; } function in class:WebCore::AccessibilityObject
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DApplyStyleCommand.cpp434 next = node->nextSibling();
483 if (before ? currentNode->previousSibling() : currentNode->nextSibling())
484 splitElement(parent, before ? currentNode : currentNode->nextSibling());
783 Node* sibling = node->nextSibling();
788 sibling = runEnd->nextSibling();
854 RefPtr<Node> nextSibling = node->nextSibling(); local
860 runStart = previousSibling ? previousSibling->nextSibling() : parent->firstChild();
862 runEnd = nextSibling ? nextSibling
1351 RefPtr<Node> nextSibling = element->nextSibling(); local
[all...]

Completed in 621 milliseconds

12