Searched refs:listNode (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DInsertListCommand.cpp40 static Node* enclosingListChild(Node* node, Node* listNode) argument
43 while (listChild && enclosingList(listChild) != listNode)
92 Element* listNode = enclosingList(start.deepEquivalent().deprecatedNode()); local
93 if (!listNode || !listNode->hasTagName(listTag))
199 RefPtr<HTMLElement> listNode = enclosingList(listChildNode); local
200 if (!listNode) {
201 listNode = fixOrphanedListChild(listChildNode);
202 listNode = mergeWithNeighboringLists(listNode);
253 unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode) argument
311 Element* listNode = outermostEnclosingList(adjacentPos.deepEquivalent().deprecatedNode()); local
[all...]
H A DModifySelectionListLevel.cpp263 Element* listNode = startListChild->parentElement(); local
267 insertSiblingNodeRangeBefore(startListChild, endListChild, listNode);
270 removeNode(listNode);
273 insertSiblingNodeRangeAfter(startListChild, endListChild, listNode);
274 } else if (listNode) {
276 splitElement(listNode, startListChild);
277 insertSiblingNodeRangeBefore(startListChild, endListChild, listNode);
H A DInsertListCommand.h58 void unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode);
H A DIndentOutdentCommand.cpp63 RefPtr<Element> listNode = enclosingList(lastNodeInSelectedParagraph); local
64 if (!listNode)
78 RefPtr<Element> newList = document()->createElement(listNode->tagQName(), false);
H A DCompositeEditCommand.cpp1047 ContainerNode* listNode = emptyListItem->parentNode(); local
1049 if (!listNode
1050 || (!listNode->hasTagName(ulTag) && !listNode->hasTagName(olTag))
1051 || !listNode->rendererIsEditable()
1052 || listNode == emptyListItem->rootEditableElement())
1056 if (ContainerNode* blockEnclosingList = listNode->parentNode()) {
1057 if (blockEnclosingList->hasTagName(liTag)) { // listNode is inside another list item
1058 if (visiblePositionAfterNode(blockEnclosingList) == visiblePositionAfterNode(listNode)) {
1059 // If listNode appear
1063 splitElement(static_cast<Element*>(blockEnclosingList), listNode); local
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLLIElement.cpp100 Node* listNode = 0; local
102 while (!listNode && (n = n->parentNode())) {
104 listNode = n;
109 if (!listNode)
/external/webkit/Source/WebCore/rendering/
H A DRenderListItem.cpp391 Node* listNode = enclosingList(this); local
393 if (listNode)
394 listRenderer = listNode->renderer();
431 Node* listNode = enclosingList(this); local
432 ASSERT(listNode && listNode->renderer());
433 if (!listNode || !listNode->renderer())
436 RenderObject* list = listNode->renderer();
/external/icu4c/common/
H A Dstringtriebuilder.cpp281 ListBranchNode *listNode=new ListBranchNode(); local
282 if(listNode==NULL) {
293 listNode->add(unit, getElementValue(start));
295 listNode->add(unit, makeNode(start, i, unitIndex+1, errorCode));
302 listNode->add(unit, getElementValue(start));
304 listNode->add(unit, makeNode(start, limit, unitIndex+1, errorCode));
306 Node *node=registerNode(listNode, errorCode);
/external/webkit/Source/WebCore/inspector/front-end/
H A Dtreeoutline.js29 function TreeOutline(listNode)
33 this._childrenListNode = listNode;
335 var listNode = node.enclosingNodeOrSelfWithNodeNameInArray(["ol", "li"]);
336 if (listNode)
337 return listNode.parentTreeElement || listNode.treeElement;
H A DResourcesPanel.js778 var listNode = nodeUnderMouse.enclosingNodeOrSelfWithNodeName("li");
779 if (!listNode)
782 var element = listNode.treeElement;
/external/webkit/Source/JavaScriptCore/parser/
H A DNodeConstructors.h206 inline ArgumentListNode::ArgumentListNode(JSGlobalData* globalData, ArgumentListNode* listNode, ExpressionNode* expr) argument
211 listNode->m_next = this;
219 inline ArgumentsNode::ArgumentsNode(JSGlobalData*, ArgumentListNode* listNode) argument
220 : m_listNode(listNode)
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
H A DParser.java40 private void push(int numstate, ArrayList listNode) throws ParserException, LexerException, IOException argument
42 this.nodeList = listNode;

Completed in 328 milliseconds