Home | History | Annotate | Download | only in jni

Lines Matching full:child

58 static bool read_item_recursive(WebCore::HistoryItem* child, const char** pData, int length);
99 * WebKit tries to be smart and not load child frames that have the
101 * current history item stored in the child frame's loader does not
113 // Keep a small list of child frames to traverse.
117 WebCore::Frame* child = pFrame->tree()->firstChild();
118 // Remember the parent history item so we can search for a child item.
120 while (child) {
123 WebCore::HistoryItem* item = parent->childItemWithTarget(child->tree()->name());
124 child->loader()->history()->setCurrentItem(item);
125 // Append the first child to the queue if it exists. If there is no
129 if (item && (firstChild = child->tree()->firstChild()))
131 child = child->tree()->nextSibling();
134 if (!child && !frameQueue.isEmpty()) {
135 child = frameQueue.at(0);
139 parent = child->tree()->parent()->loader()->history()->currentItem();
256 // the parent HistoryItem destroyed before the child HistoryItem. If
658 // Read the child count
660 LOGV("Child count %d", l);
670 WTF::PassRefPtr<WebCore::HistoryItem> child = WebCore::HistoryItem::create();
672 child->setBridge(new WebHistoryItem(static_cast<WebHistoryItem*>(bridge)));
673 // Read the child item.
674 if (!read_item_recursive(child.get(), pData, end - data)) {
675 child.clear();
678 child->bridge()->setActive();
679 newItem->addChildItem(child);
755 // Child count