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

/macosx-10.10/WebCore-7600.1.25/editing/
H A DInsertListCommand.cpp42 static Node* enclosingListChild(Node* node, Node* listNode) argument
45 while (listChild && enclosingList(listChild) != listNode)
97 Element* listNode = enclosingList(start.deepEquivalent().deprecatedNode()); local
98 if (!listNode || !listNode->hasTagName(listTag))
205 RefPtr<HTMLElement> listNode = enclosingList(listChildNode); local
206 if (!listNode) {
207 listNode = fixOrphanedListChild(listChildNode);
208 listNode = mergeWithNeighboringLists(listNode);
259 unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode) argument
317 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.h59 void unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode);
H A DIndentOutdentCommand.cpp61 RefPtr<Element> listNode = enclosingList(lastNodeInSelectedParagraph); local
62 if (!listNode)
76 RefPtr<Element> newList = document().createElement(listNode->tagQName(), false);
H A DCompositeEditCommand.cpp1346 RefPtr<ContainerNode> listNode = emptyListItem->parentNode(); local
1348 if (!listNode
1349 || (!listNode->hasTagName(ulTag) && !listNode->hasTagName(olTag))
1350 || !listNode->hasEditableStyle()
1351 || listNode == emptyListItem->rootEditableElement())
1355 if (ContainerNode* blockEnclosingList = listNode->parentNode()) {
1356 if (blockEnclosingList->hasTagName(liTag)) { // listNode is inside another list item
1357 if (visiblePositionAfterNode(blockEnclosingList) == visiblePositionAfterNode(listNode.get())) {
1358 // If listNode appear
1362 splitElement(toElement(blockEnclosingList), listNode); local
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderListItem.cpp119 static RenderListItem* nextListItem(const Element* listNode, const RenderListItem* item = 0) argument
121 if (!listNode)
124 const Element* current = item ? &item->element() : listNode;
125 current = ElementTraversal::nextIncludingPseudo(current, listNode);
130 current = ElementTraversal::nextIncludingPseudoSkippingChildren(current, listNode);
139 current = ElementTraversal::nextIncludingPseudo(current, listNode);
146 static RenderListItem* previousListItem(const Element* listNode, const RenderListItem* item) argument
149 for (current = ElementTraversal::previousIncludingPseudo(current, listNode); current; current = ElementTraversal::previousIncludingPseudo(current, listNode)) {
155 if (listNode
167 updateItemValuesForOrderedList(const HTMLOListElement* listNode) argument
175 itemCountForOrderedList(const HTMLOListElement* listNode) argument
467 Element* listNode = enclosingList(this); local
498 Element* listNode = enclosingList(this); local
[all...]
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLLIElement.cpp95 Element* listNode = 0; local
97 while (!listNode) {
102 listNode = current;
107 if (!listNode)
/macosx-10.10/ICU-531.30/icuSources/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);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DTreeOutline.js29 function TreeOutline(listNode)
33 this.element = listNode;
37 this._childrenListNode = listNode;
373 var listNode = node.enclosingNodeOrSelfWithNodeNameInArray(["ol", "li"]);
374 if (listNode)
375 return listNode.parentTreeElement || listNode.treeElement;
/macosx-10.10/JavaScriptCore-7600.1.17/parser/
H A DNodeConstructors.h228 inline ArgumentListNode::ArgumentListNode(const JSTokenLocation& location, ArgumentListNode* listNode, ExpressionNode* expr) argument
233 listNode->m_next = this;
241 inline ArgumentsNode::ArgumentsNode(ArgumentListNode* listNode) argument
242 : m_listNode(listNode)

Completed in 144 milliseconds