/external/chromium/third_party/icu/source/tools/ctestfw/ |
D | ctest.c | 183 TestNode *nextNode, *curNode; in addTestNode() local 195 nextNode = curNode->child; in addTestNode() 203 if( nextNode == NULL ) in addTestNode() 223 while (strncmp_nullcheck ( name, nextNode->name, nameLen) != 0 ) in addTestNode() 225 curNode = nextNode; in addTestNode() 226 nextNode = nextNode -> sibling; in addTestNode() 228 if ( nextNode == NULL ) in addTestNode() 231 nextNode = createTestNode(name, nameLen); in addTestNode() 232 curNode->sibling = nextNode; in addTestNode() 241 return nextNode; in addTestNode() [all …]
|
/external/icu4c/tools/ctestfw/ |
D | ctest.c | 183 TestNode *nextNode, *curNode; in addTestNode() local 195 nextNode = curNode->child; in addTestNode() 203 if( nextNode == NULL ) in addTestNode() 223 while (strncmp_nullcheck ( name, nextNode->name, nameLen) != 0 ) in addTestNode() 225 curNode = nextNode; in addTestNode() 226 nextNode = nextNode -> sibling; in addTestNode() 228 if ( nextNode == NULL ) in addTestNode() 231 nextNode = createTestNode(name, nameLen); in addTestNode() 232 curNode->sibling = nextNode; in addTestNode() 241 return nextNode; in addTestNode() [all …]
|
/external/webkit/JavaScriptCore/profiler/ |
D | Profile.cpp | 55 for (ProfileNode* nextNode = currentNode; nextNode; nextNode = nextNode->firstChild()) in forEach() local 56 currentNode = nextNode; in forEach()
|
/external/webkit/WebCore/dom/ |
D | NodeIterator.h | 45 PassRefPtr<Node> nextNode(ScriptState*, ExceptionCode&); 57 …PassRefPtr<Node> nextNode(ExceptionCode& ec) { return nextNode(scriptStateFromNode(mainThreadNorma… in nextNode() function
|
D | TreeWalker.h | 53 Node* nextNode(ScriptState*); 63 …Node* nextNode() { return nextNode(scriptStateFromNode(mainThreadNormalWorld(), m_current.get()));… in nextNode() function
|
D | NodeIterator.idl | 34 [Custom] Node nextNode()
|
D | TreeWalker.idl | 40 [Custom] Node nextNode();
|
D | NodeIterator.cpp | 87 PassRefPtr<Node> NodeIterator::nextNode(ScriptState* state, ExceptionCode& ec) in nextNode() function in WebCore::NodeIterator
|
D | TreeWalker.cpp | 250 Node* TreeWalker::nextNode(ScriptState* state) in nextNode() function in WebCore::TreeWalker
|
/external/webkit/WebCore/bindings/js/ |
D | JSNodeIteratorCustom.cpp | 40 JSValue JSNodeIterator::nextNode(ExecState* exec, const ArgList&) in nextNode() function in WebCore::JSNodeIterator 43 RefPtr<Node> node = impl()->nextNode(exec, ec); in nextNode()
|
D | JSTreeWalkerCustom.cpp | 88 JSValue JSTreeWalker::nextNode(ExecState* exec, const ArgList&) in nextNode() function in WebCore::JSTreeWalker 90 Node* node = impl()->nextNode(exec); in nextNode()
|
/external/webkit/WebCore/editing/ |
D | VisiblePosition.cpp | 478 Node* nextNode = next.node(); in canonicalPosition() local 494 bool nextIsInSameEditableElement = nextNode && editableRootForPosition(next) == editingRoot; in canonicalPosition() 506 …bool nextIsOutsideOriginalBlock = !nextNode->isDescendantOf(originalBlock) && nextNode != original… in canonicalPosition()
|
D | DeleteSelectionCommand.cpp | 465 RefPtr<Node> nextNode = node->traverseNextSibling(); in handleGeneralDelete() local 473 node = nextNode.get(); in handleGeneralDelete()
|
/external/webkit/WebCore/bindings/v8/custom/ |
D | V8NodeIteratorCustom.cpp | 67 RefPtr<Node> result = nodeIterator->nextNode(&state, ec); in nextNodeCallback()
|
D | V8TreeWalkerCustom.cpp | 94 RefPtr<Node> result = treeWalker->nextNode(&state); in nextNodeCallback()
|
/external/webkit/WebCore/inspector/front-end/ |
D | DataGrid.js | 1214 var nextNode = null; 1217 var nextNode = previousNode.element.nextSibling; 1218 if (!nextNode) 1219 nextNode = this.dataGrid.dataTableBody.lastChild; 1220 this.dataGrid.dataTableBody.insertBefore(this.element, nextNode);
|
/external/webkit/WebCore/html/ |
D | HTMLElement.cpp | 302 RefPtr<Node> nextNode; in createContextualFragment() local 303 for (RefPtr<Node> node = fragment->firstChild(); node; node = nextNode) { in createContextualFragment() 304 nextNode = node->nextSibling(); in createContextualFragment() 308 nextNode = firstChild; in createContextualFragment()
|
D | HTMLParser.cpp | 1265 Node* nextNode = currNode->nextSibling(); in handleResidualStyleCloseTagAcrossBlocks() local 1267 currNode = nextNode; in handleResidualStyleCloseTagAcrossBlocks()
|
/external/webkit/WebKit/android/nav/ |
D | CacheBuilder.cpp | 2679 Text* nextNode; in isFocusableText() local 2700 nextNode = static_cast<Text*>(node); in isFocusableText() 2701 renderer = (RenderText*) nextNode->renderer(); in isFocusableText() 2705 string = nextNode->dataImpl(); in isFocusableText()
|
/external/webkit/WebCore/bindings/objc/ |
D | PublicDOMInterfaces.h | 1187 - (DOMNode *)nextNode; 1212 - (DOMNode *)nextNode;
|
/external/webkit/SunSpider/tests/parse-only/ |
D | prototype-1.6.0.3.js | 1866 var nextNode = node.nextSibling; 1869 node = nextNode;
|
D | concat-jquery-mootools-prototype.js | 10245 var nextNode = node.nextSibling; 10248 node = nextNode;
|
/external/webkit/WebCore/ |
D | WebCore.order | 8030 -[DOMNodeIterator nextNode]
|
D | ChangeLog-2008-08-10 | 5240 (WebCore::NodeIterator::nextNode): 5249 (WebCore::TreeWalker::nextNode): 12144 (WebCore::JSNodeIterator::nextNode): 12199 (WebCore::JSTreeWalker::nextNode): 37931 (WebCore::JSNodeIterator::nextNode): Update since result is PassRefPtr. 37934 (WebCore::NodeIterator::nextNode): Changed result to PassRefPtr. Added code to 51812 (WebCore::JSNodeIterator::nextNode): Wrote a custom binding for this that raises 51824 (WebCore::JSTreeWalker::nextNode): Ditto. 51859 (WebCore::NodeIterator::nextNode): Rewrote to use a RefPtr since the 51873 nextNode and previousNode to have an out parameter with a JavaScript exception. [all …]
|
D | ChangeLog-2005-08-23 | 40828 (DOM::NodeIteratorImpl::nextNode): 40837 (DOM::TreeWalkerImpl::nextNode): 44893 (DOM::TreeWalkerImpl::nextNode): 45273 (DOM::NodeIteratorImpl::nextNode): Change to make NodeIterators behave like the spec in that 45563 (-[DOMNodeIterator nextNode]): 45578 (-[DOMTreeWalker nextNode]):
|