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

  /external/webkit/WebCore/page/
Page.cpp 22 #include "Page.h"
90 static HashSet<Page*>* allPages;
93 static WTF::RefCountedLeakCounter pageCounter("Page");
100 // Get all the frames of all the pages in all the page groups
101 HashSet<Page*>::iterator end = allPages->end();
102 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) {
115 HashSet<Page*>::iterator end = allPages->end();
116 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) {
123 Page::Page(ChromeClient* chromeClient, ContextMenuClient* contextMenuClient, EditorClient* editorClient, Drag (…)
396 Page* page = *it; local
664 Page* page = *it; local
682 Page* page = *it; local
    [all...]
Page.h 87 class Page : public Noncopyable {
91 Page(ChromeClient*, ContextMenuClient*, EditorClient*, DragClient*, InspectorClient*, PluginHalterClient*, GeolocationControllerClient*);
92 ~Page();
114 // FIXME: The following three methods don't fall under the responsibilities of the Page object
115 // They seem to fit a hypothetical Page-controller object that would be akin to the
192 // Notifications when the Page starts and stops being presented via a native window.
  /frameworks/base/media/libstagefright/
NuCachedSource2.cpp 32 struct Page {
37 Page *acquirePage();
38 void releasePage(Page *page);
40 void appendPage(Page *page);
53 List<Page *> mActivePages;
54 List<Page *> mFreePages;
56 void freePages(List<Page *> *list);
71 void PageCache::freePages(List<Page *> *list)
74 Page *page = *it; local
87 Page *page = *it; local
93 Page *page = new Page; local
116 Page *page = *it; local
242 PageCache::Page *page = mCache->acquirePage(); local
    [all...]
OggExtractor.cpp 84 struct Page {
95 Page mCurrentPage;
110 ssize_t readPage(off_t offset, Page *page);
249 // Given the offset of the "current" page, find the page immediately preceding
251 // To do this we back up from the "current" page's offset until we find any
252 // page preceding it and then scan forward to just before the current page.
273 // We did not find a page preceding this one
    [all...]
  /external/v8/src/
spaces.h 48 // spaces consists of a list of pages. A page has a page header, a remembered
49 // set area, and an object area. A page size is deliberately chosen as 8K
50 // bytes. The first word of a page is an opaque page header that has the
51 // address of the next page and its ownership information. The second word may
52 // have the allocation top address of this page. The next 248 bytes are
57 // Page::kMaxHeapObjectSize, so that they do not have to move during
69 ASSERT((OffsetFrom(address) & Page::kPageAlignmentMask) == 0)
78 ASSERT((0 < size) && (size <= Page::kMaxHeapObjectSize)
    [all...]

Completed in 132 milliseconds