HomeSort by relevance Sort by last modified time
    Searched refs:listRef (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKBackForwardList.cpp 39 WKBackForwardListItemRef WKBackForwardListGetCurrentItem(WKBackForwardListRef listRef)
41 return toAPI(toImpl(listRef)->currentItem());
44 WKBackForwardListItemRef WKBackForwardListGetBackItem(WKBackForwardListRef listRef)
46 return toAPI(toImpl(listRef)->backItem());
49 WKBackForwardListItemRef WKBackForwardListGetForwardItem(WKBackForwardListRef listRef)
51 return toAPI(toImpl(listRef)->forwardItem());
54 WKBackForwardListItemRef WKBackForwardListGetItemAtIndex(WKBackForwardListRef listRef, int index)
56 return toAPI(toImpl(listRef)->itemAtIndex(index));
59 unsigned WKBackForwardListGetBackListCount(WKBackForwardListRef listRef)
61 return toImpl(listRef)->backListCount()
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleBackForwardList.cpp 40 WKBundleBackForwardListItemRef WKBundleBackForwardListCopyItemAtIndex(WKBundleBackForwardListRef listRef, int index)
42 return toAPI(toImpl(listRef)->itemAtIndex(index).leakRef());
45 unsigned WKBundleBackForwardListGetBackListCount(WKBundleBackForwardListRef listRef)
47 return toImpl(listRef)->backListCount();
50 unsigned WKBundleBackForwardListGetForwardListCount(WKBundleBackForwardListRef listRef)
52 return toImpl(listRef)->forwardListCount();
55 void WKBundleBackForwardListClear(WKBundleBackForwardListRef listRef)
57 return toImpl(listRef)->clear();
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java     [all...]

Completed in 3461 milliseconds