HomeSort by relevance Sort by last modified time
    Searched defs:Page (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/dom/
WheelEvent.h 34 enum Granularity { Pixel, Line, Page };
  /external/webkit/Source/WebCore/page/
Page.cpp 21 #include "Page.h"
100 static HashSet<Page*>* allPages;
103 static WTF::RefCountedLeakCounter pageCounter("Page");
110 // Get all the frames of all the pages in all the page groups
111 HashSet<Page*>::iterator end = allPages->end();
112 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) {
126 HashSet<Page*>::iterator end = allPages->end();
127 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) {
134 Page::Page(const PageClients& pageClients
438 Page* page = *it; local
722 Page* page = *it; local
740 Page* page = *it; local
    [all...]
Page.h 97 class Page {
98 WTF_MAKE_NONCOPYABLE(Page);
123 Page(const PageClients&);
124 ~Page();
241 // Notifications when the Page starts and stops being presented via a native window.
295 // Don't allow more than a certain number of frames in a page.
  /frameworks/base/media/libstagefright/
NuCachedSource2.cpp 35 struct Page {
40 Page *acquirePage();
41 void releasePage(Page *page);
43 void appendPage(Page *page);
56 List<Page *> mActivePages;
57 List<Page *> mFreePages;
59 void freePages(List<Page *> *list);
74 void PageCache::freePages(List<Page *> *list)
77 Page *page = *it; local
90 Page *page = *it; local
96 Page *page = new Page; local
119 Page *page = *it; local
312 PageCache::Page *page = mCache->acquirePage(); local
    [all...]
OggExtractor.cpp 85 struct Page {
101 Page mCurrentPage;
118 ssize_t readPage(off64_t offset, Page *page);
258 // Given the offset of the "current" page, find the page immediately preceding
260 // To do this we back up from the "current" page's offset until we find any
261 // page preceding it and then scan forward to just before the current page.
288 // We did not find a page preceding this one
648 Page page; local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayout.java 34 public class PagedViewCellLayout extends ViewGroup implements Page {
95 // called when a page is no longer visible (triggered by loadAssociatedPages ->
101 // called when a page is visible (triggered by loadAssociatedPages -> syncPageItems)
348 // The space for a page is the height - top padding (current page) - bottom padding (current
349 // page)
515 interface Page {
  /external/v8/src/
spaces.h 50 // spaces consists of a list of pages. A page has a page header and an object
51 // area. A page size is deliberately chosen as 8K bytes.
52 // The first word of a page is an opaque page header that has the
53 // address of the next page and its ownership information. The second word may
54 // have the allocation top address of this page. Heap objects are aligned to the
58 // Page::kMaxHeapObjectSize, so that they do not have to move during
63 // references. Old space pages are divided into regions of Page::kRegionSize
64 // size. Each region has a corresponding dirty bit in the page header which i
    [all...]

Completed in 71 milliseconds