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

/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DInsertListCommand.cpp41 static Node* enclosingListChild(Node* node, Node* listNode) argument
44 while (listChild && enclosingList(listChild) != listNode)
93 Element* listNode = enclosingList(start.deepEquivalent().deprecatedNode()); local
94 if (!listNode || !listNode->hasTagName(listTag))
200 RefPtr<HTMLElement> listNode = enclosingList(listChildNode); local
201 if (!listNode) {
202 listNode = fixOrphanedListChild(listChildNode);
203 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.cpp1285 RefPtr<ContainerNode> listNode = emptyListItem->parentNode(); local
1287 if (!listNode
1288 || (!listNode->hasTagName(ulTag) && !listNode->hasTagName(olTag))
1289 || !listNode->rendererIsEditable()
1290 || listNode == emptyListItem->rootEditableElement())
1294 if (ContainerNode* blockEnclosingList = listNode->parentNode()) {
1295 if (blockEnclosingList->hasTagName(liTag)) { // listNode is inside another list item
1296 if (visiblePositionAfterNode(blockEnclosingList) == visiblePositionAfterNode(listNode.get())) {
1297 // If listNode appear
1301 splitElement(toElement(blockEnclosingList), listNode); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderListItem.cpp120 static RenderListItem* nextListItem(const Node* listNode, const RenderListItem* item = 0) argument
122 if (!listNode)
125 const Node* current = item ? item->node() : listNode;
126 current = ElementTraversal::nextIncludingPseudo(current, listNode);
131 current = ElementTraversal::nextIncludingPseudoSkippingChildren(current, listNode);
140 current = ElementTraversal::nextIncludingPseudo(current, listNode);
147 static RenderListItem* previousListItem(const Node* listNode, const RenderListItem* item) argument
150 for (current = ElementTraversal::previousIncludingPseudo(current, listNode); current; current = ElementTraversal::previousIncludingPseudo(current, listNode)) {
156 if (listNode
168 updateItemValuesForOrderedList(const HTMLOListElement* listNode) argument
176 itemCountForOrderedList(const HTMLOListElement* listNode) argument
455 Node* listNode = enclosingList(this); local
490 Node* listNode = enclosingList(this); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLLIElement.cpp98 Element* listNode = 0; local
100 while (!listNode) {
105 listNode = current;
110 if (!listNode)
/macosx-10.9.5/ICU-511.35/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.9.5/CF-855.17/
H A DCFBurstTrie.c920 ListNodeRef listNode = (ListNodeRef) NextTrie_GetPtr(next); local
921 code = addCFBurstTrieListNode(trie, listNode, key+1, keylen-1, weight, payload, &listCount);
923 next = (uintptr_t) burstCFBurstTrieLevel(trie, listNode, listCount);
1856 static void serializeCFBurstTrieList(CFBurstTrieRef trie, ListNodeRef listNode, int fd) argument
1863 for (listCount = 0; listNode; listCount++) {
1868 nodes[listCount] = listNode;
1869 listNode = listNode->next;
1884 listNode = nodes[i];
1889 pfxLen < listNode
1937 ListNodeRef listNode = (ListNodeRef)NextTrie_GetPtr(next); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A Dtreeoutline.js31 * @param {Element} listNode
34 function TreeOutline(listNode, nonFocusable)
41 this._childrenListNode = listNode;
276 var listNode = node.enclosingNodeOrSelfWithNodeNameInArray(["ol", "li"]);
277 if (listNode)
278 return listNode.parentTreeElement || listNode.treeElement;
H A DResourcesPanel.js862 var listNode = nodeUnderMouse.enclosingNodeOrSelfWithNodeName("li");
863 if (!listNode)
866 var element = listNode.treeElement;
/macosx-10.9.5/JavaScriptCore-7537.78.1/parser/
H A DNodeConstructors.h217 inline ArgumentListNode::ArgumentListNode(const JSTokenLocation& location, ArgumentListNode* listNode, ExpressionNode* expr) argument
222 listNode->m_next = this;
230 inline ArgumentsNode::ArgumentsNode(ArgumentListNode* listNode) argument
231 : m_listNode(listNode)

Completed in 157 milliseconds