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

  /frameworks/base/include/media/stagefright/
CachingDataSource.h 44 struct Page {
45 Page *mPrev, *mNext;
54 Page *mFirst, *mLast;
56 Page *allocate_page();
  /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 (…)
655 Page* page = *it; local
673 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/
OggExtractor.cpp 82 struct Page {
93 Page mCurrentPage;
104 ssize_t readPage(off_t offset, Page *page);
247 // XXX what if new page continues packet from last???
252 ssize_t MyVorbisExtractor::readPage(off_t offset, Page *page) {
271 page->mFlags = header[5];
273 if (page->mFlags & ~7) {
278 page->mGranulePosition = U64LE_AT(&header[6])
    [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 359 milliseconds