HomeSort by relevance Sort by last modified time
    Searched refs:currentItem (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/webkit/Source/WebKit/gtk/tests/
testwebbackforwardlist.c 30 WebKitWebHistoryItem* currentItem;
71 currentItem = webkit_web_back_forward_list_get_current_item(backForwardList);
72 g_object_ref(currentItem);
73 g_assert_cmpint(G_OBJECT(currentItem)->ref_count, ==, 2);
74 g_object_unref(currentItem);
75 g_assert_cmpint(G_OBJECT(currentItem)->ref_count, ==, 1);
116 WebKitWebHistoryItem* currentItem;
160 currentItem = WEBKIT_WEB_HISTORY_ITEM(backList->data);
161 g_assert_cmpstr(webkit_web_history_item_get_uri(currentItem), ==, "http://example.com/3/");
162 g_assert_cmpstr(webkit_web_history_item_get_title(currentItem), ==, "Site 3")
    [all...]
  /external/webkit/Source/WebCore/history/
BackForwardList.h 69 HistoryItem* currentItem() { return itemAtIndex(0); }
BackForwardController.h 67 HistoryItem* currentItem() { return itemAtIndex(0); }
BackForwardListImpl.cpp 93 m_page->mainFrame()->loader()->client()->dispatchDidAddBackForwardItem(currentItem());
139 HistoryItem* BackForwardListImpl::currentItem()
291 RefPtr<HistoryItem> currentItem = this->currentItem();
302 addItem(currentItem);
BackForwardListImpl.h 57 HistoryItem* currentItem();
  /external/webkit/Source/WebKit/mac/History/
WebBackForwardList.h 92 @method currentItem
96 - (WebHistoryItem *)currentItem;
WebBackForwardList.mm 192 - (WebHistoryItem *)currentItem
194 return [[kit(core(self)->currentItem()) retain] autorelease];
275 if (entries[i] == backForwardList->currentItem()) {
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKBackForwardList.cpp 41 return toAPI(toImpl(listRef)->currentItem());
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkhistory.h 66 QWKHistoryItem currentItem() const;
qwkhistory.cpp 127 QWKHistoryItem QWKHistory::currentItem() const
  /frameworks/support/v4/java/android/support/v4/view/
PagerTitleStrip.java 270 void updateText(int currentItem, PagerAdapter adapter) {
275 if (currentItem >= 1 && adapter != null) {
276 text = adapter.getPageTitle(currentItem - 1);
280 mCurrText.setText(adapter != null && currentItem < itemCount ?
281 adapter.getPageTitle(currentItem) : null);
284 if (currentItem + 1 < itemCount && adapter != null) {
285 text = adapter.getPageTitle(currentItem + 1);
299 mLastKnownCurrentPage = currentItem;
302 updateTextPositions(currentItem, mLastKnownPositionOffset, false);
  /external/webkit/Source/WebKit2/UIProcess/
WebBackForwardList.cpp 119 WebBackForwardListItem* WebBackForwardList::currentItem()
220 RefPtr<WebBackForwardListItem> currentItem = this->currentItem();
224 if (m_entries[i] != currentItem)
237 m_entries[0] = currentItem.release();
WebBackForwardList.h 66 WebBackForwardListItem* currentItem();
  /external/webkit/Source/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 106 QCOMPARE(hist->currentItem().title(), QString("page5"));
172 QWebHistoryItem current = hist->currentItem();
177 QVERIFY(hist->currentItem().title() != current.title());
180 QCOMPARE(hist->currentItem().title(), current.title());
268 QWebHistoryItem a = hist->currentItem();
285 QWebHistoryItem b = hist->currentItem();
  /external/webkit/Source/WebKit/win/Interfaces/
IWebBackForwardList.idl 94 @method currentItem
97 - (WebHistoryItem *)currentItem;
99 HRESULT currentItem([out, retval] IWebHistoryItem** item);
  /external/webkit/Source/WebCore/loader/
HistoryController.h 73 HistoryItem* currentItem() const { return m_currentItem.get(); }
HistoryController.cpp 111 // FIXME: As the ASSERT attests, it seems we should always have a currentItem here.
150 // Because of previousItem's "masking" of currentItem for this purpose, it's important
173 frame->loader()->history()->saveScrollPositionAndViewStateToItem(frame->loader()->history()->currentItem());
207 // When we are pre-commit, the currentItem is where the pageCache data resides
208 CachedPage* cachedPage = pageCache()->get(currentItem());
221 pageCache()->remove(currentItem());
255 RefPtr<HistoryItem> currentItem = page->backForward()->currentItem();
263 recursiveSetProvisionalItem(targetItem, currentItem.get(), type);
265 recursiveGoToItem(targetItem, currentItem.get(), type)
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLPageState.cpp 129 HistoryItem* currentItem = page->backForward()->currentItem();
130 if (!currentItem)
134 currentURL = urlForHistoryItem(frame, currentItem);
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory.h 88 QWebHistoryItem currentItem() const;
qwebhistory.cpp 225 currentItem(), and an arbitrary item in the history can be made the current
274 RefPtr<WebCore::HistoryItem> current = lst->currentItem();
413 QWebHistoryItem QWebHistory::currentItem() const
415 WebCore::HistoryItem *i = d->lst->currentItem();
537 WebCore::HistoryItem* nullItem = d->lst->currentItem();
  /external/webkit/Source/WebKit/win/
WebBackForwardList.h 68 virtual HRESULT STDMETHODCALLTYPE currentItem(
WebBackForwardList.cpp 171 HRESULT STDMETHODCALLTYPE WebBackForwardList::currentItem(
177 HistoryItem* historyItem = m_backForwardList->currentItem();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
TimeClustering.java 192 private void compute(SmallItem currentItem) {
193 if (currentItem != null) {
202 mCurrCluster.addItem(currentItem);
205 if (isGeographicallySeparated(prevItem, currentItem)) {
210 } else if (timeDistance(prevItem, currentItem) < mClusterSplitTime) {
211 mCurrCluster.addItem(currentItem);
226 mCurrCluster.addItem(currentItem);
  /frameworks/ex/photoviewer/src/com/android/ex/photo/
PhotoViewActivity.java 155 int currentItem = -1;
157 currentItem = savedInstanceState.getInt(STATE_ITEM_KEY, -1);
176 if (mIntent.hasExtra(Intents.EXTRA_PHOTO_INDEX) && currentItem < 0) {
177 currentItem = mIntent.getIntExtra(Intents.EXTRA_PHOTO_INDEX, -1);
179 mPhotoIndex = currentItem;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewActivity.java 158 int currentItem = -1;
160 currentItem = savedInstanceState.getInt(STATE_ITEM_KEY, -1);
179 if (mIntent.hasExtra(Intents.EXTRA_PHOTO_INDEX) && currentItem < 0) {
180 currentItem = mIntent.getIntExtra(Intents.EXTRA_PHOTO_INDEX, -1);
186 mPhotoIndex = currentItem;

Completed in 399 milliseconds

1 2 3 4