Searched defs:currentNode (Results 1 - 7 of 7) sorted by relevance

/external/webkit/WebCore/dom/
H A DTreeWalker.h44 Node* currentNode() const { return m_current.get(); } function in class:WebCore::TreeWalker
H A DPosition.cpp486 Node* currentNode = currentPos.node(); local
490 if (currentNode != lastNode) {
492 bool currentEditable = currentNode->isContentEditable();
498 lastNode = currentNode;
503 if (endsOfNodeAreVisuallyDistinctPositions(currentNode) && currentNode != boundary)
507 RenderObject* renderer = currentNode->renderer();
522 if (endsOfNodeAreVisuallyDistinctPositions(currentNode) && currentPos.atStartOfNode())
526 if (editingIgnoresContent(currentNode) || isTableElement(currentNode)) {
607 Node* currentNode = currentPos.node(); local
[all...]
/external/webkit/JavaScriptCore/profiler/
H A DProfile.cpp54 ProfileNode* currentNode = m_head->firstChild(); local
55 for (ProfileNode* nextNode = currentNode; nextNode; nextNode = nextNode->firstChild())
56 currentNode = nextNode;
58 if (!currentNode)
59 currentNode = m_head.get();
62 while (currentNode && currentNode != endNode) {
63 (currentNode->*function)();
64 currentNode = currentNode
[all...]
H A DProfileGenerator.cpp141 ProfileNode* currentNode = 0; local
143 currentNode = next;
145 if (currentNode->callIdentifier().m_name != "profile")
149 currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime());
150 currentNode->parent()->removeChild(currentNode);
156 ProfileNode* currentNode = 0; local
158 currentNode
[all...]
/external/webkit/WebCore/page/
H A DFocusController.cpp160 Node* currentNode = document->focusedNode(); local
164 if (caretBrowsing && !currentNode)
165 currentNode = frame->selection()->start().node();
170 ? document->nextFocusableNode(currentNode, event)
171 : document->previousFocusableNode(currentNode, event);
/external/webkit/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h1205 @property(retain) DOMNode *currentNode; variable
/external/libxml2/
H A DHTMLparser.c3830 xmlChar *currentNode; local
3834 currentNode = xmlStrdup(ctxt->name);
3845 ((currentNode != NULL) || (ctxt->nameNr == 0))) {
3846 if (currentNode != NULL)
3847 xmlFree(currentNode);
3865 if (currentNode != NULL)
3866 xmlFree(currentNode);
3883 (!xmlStrEqual(currentNode, ctxt->name)))
3885 if (currentNode != NULL) xmlFree(currentNode);
3996 xmlChar *currentNode = NULL; local
[all...]

Completed in 334 milliseconds