Home
last modified time | relevance | path

Searched refs:childNodesTail (Results 1 – 3 of 3) sorted by relevance

/external/webkit/JavaScriptCore/API/tests/
DNode.c35 node->childNodesTail = NULL; in Node_new()
45 nodeLink->prev = node->childNodesTail; in Node_appendChild()
46 node->childNodesTail = nodeLink; in Node_appendChild()
54 …for (currentHandle = &node->childNodesTail, current = *currentHandle; current; currentHandle = &cu… in Node_removeChild()
68 for (current = node->childNodesTail; current; current = current->prev) { in Node_replaceChild()
DNodeList.c44 NodeLink* n = nodeList->parentNode->childNodesTail; in NodeList_length()
60 NodeLink* n = nodeList->parentNode->childNodesTail; in NodeList_item()
DNode.h40 NodeLink* childNodesTail; member