HomeSort by relevance Sort by last modified time
    Searched defs:page (Results 126 - 150 of 381) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/frame/
Frame.h 34 #include "core/page/FrameTree.h"
79 static PassRefPtr<FrameInit> create(int64_t frameID, Page* page, FrameLoaderClient* client)
81 return adoptRef(new FrameInit(frameID, page, client));
89 void setPage(Page* page) { m_page = page; }
90 Page* page() const { return m_page; } function in class:WebCore::FrameInit
96 FrameInit(int64_t frameID, Page* page = 0, FrameLoaderClient* client = 0
325 inline Page* Frame::page() const function in class:WebCore::Frame
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDocument.cpp 62 #include "core/page/FocusController.h"
63 #include "core/page/FrameTree.h"
64 #include "core/page/Page.h"
123 Page* page = this->page(); local
124 if (!page)
126 if (!page->focusController().isActive() || !page->focusController().isFocused()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.cpp 21 #include "core/page/Page.h"
41 #include "core/page/AutoscrollController.h"
42 #include "core/page/Chrome.h"
43 #include "core/page/ChromeClient.h"
44 #include "core/page/ContextMenuController.h"
45 #include "core/page/DragController.h"
46 #include "core/page/FocusController.h"
47 #include "core/page/FrameTree.h"
48 #include "core/page/PageConsole.h
281 Page* page = *it; local
392 Page* page = *it; local
408 Page* page = *it; local
    [all...]
PrintContext.cpp 22 #include "core/page/PrintContext.h"
38 // This number determines how small we are willing to reduce the page content
39 // in order to accommodate the widest line. If the page would have to be
76 outPageHeight = pageHeight; // this is the height of the page adjusted by margins
259 const IntRect& page = printContext.pageRect(pageNumber); local
260 if (page.x() <= left && left < page.maxX() && page.y() <= top && top < page.maxY())
389 // Draw a line for a page boundary if this isn't the first page
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.cpp 35 #include "core/page/Chrome.h"
64 OwnPtr<Page> currentPage = m_page.release();
68 // Verify that page teardown destroyed the Chrome
76 Page* page = element->document().page(); local
77 if (!page)
80 return page->chrome().client().isSVGImageChromeClient();
375 Page::PageClients pageClients;
386 m_page = adoptPtr(new Page(pageClients))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollingCoordinatorChromiumTest.cpp 27 #include "core/page/scrolling/ScrollingCoordinator.h"
78 // settings need to be set before the page is loaded.
142 Page* page = m_webViewImpl->mainFrameImpl()->frame()->page(); local
143 ASSERT_TRUE(page->scrollingCoordinator());
144 ASSERT_TRUE(page->scrollingCoordinator()->coordinatesScrollingForFrameView(frameView));
  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.cpp 40 // Two partition pages are used as guard / metadata page so make sure the super
41 // page size is bigger.
45 // of metadata in the middle of a guard partition page.
62 // Leave a page unfaulted is not free; the page will occupy an empty page table entry.
75 static ALWAYS_INLINE void partitionPageMarkFree(PartitionPage* page)
77 ASSERT(!partitionPageIsFree(page));
78 page->numAllocatedSlots = -1;
112 // We mark the seed page as free to make sure it is skipped by our logic t
126 PartitionPage* page = bucket->activePagesHead; local
349 PartitionPage* page = bucket->activePagesHead; local
    [all...]
PartitionAllocTest.cpp 104 static void FreeFullPage(WTF::PartitionPage* page)
106 size_t size = partitionBucketSize(page->bucket);
107 size_t numSlots = page->bucket->pageSize / size;
108 EXPECT_EQ(numSlots, static_cast<size_t>(abs(page->numAllocatedSlots)));
109 char* ptr = reinterpret_cast<char*>(partitionPageToPointer(page));
130 // Check that the offset appears to include a guard page.
134 // Expect that the last active page does not get tossed to the freelist.
191 WTF::PartitionPage* page = GetFullPage(kTestAllocSize); local
192 FreeFullPage(page);
194 EXPECT_EQ(page, bucket->activePagesHead)
475 WTF::PartitionPage* page = WTF::partitionPointerToPage(WTF::partitionCookieFreePointerAdjust(ptr)); local
584 WTF::PartitionPage* page = WTF::partitionPointerToPage(WTF::partitionCookieFreePointerAdjust(ptr)); local
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
PoolAlloc.h 107 // Page stacks are linked together with a simple header at the beginning
108 // of each allocation obtained from the underlying OS. Multi-page allocations
109 // are returned to the OS. Individual page allocations are kept for future
112 // The "page size" used is not, nor must it match, the underlying OS
113 // page size. But, having it be about that size or equal to a set of
183 tHeader* page; member in struct:TPoolAllocator::tAllocState
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-unicode-private.hh 143 * Last updated to the page with the following versions:
175 hb_codepoint_t page = ch >> 8; local
176 switch (page) {
  /external/chromium_org/third_party/mach_override/
mach_override.c 165 uintptr_t page = (uintptr_t)address & ~(uintptr_t)(pageSize-1); local
167 e |= mprotect((void *)page, pageSize, PROT_EXEC | PROT_READ);
168 e |= msync((void *)page, pageSize, MS_INVALIDATE );
401 vm_address_t page = 0; local
402 mach_error_t err = vm_allocate( mach_task_self(), &page, pageSize, VM_FLAGS_ANYWHERE );
404 *island = (BranchIsland*) page;
414 vm_address_t first = ((uint64_t)originalFunctionAddress & ~(uint64_t)(((uint64_t)1 << 31) - 1)) | ((uint64_t)1 << 31); // start in the middle of the page?
418 vm_address_t page = first;
422 while( !err && !allocated && page != last ) {
424 err = vm_allocate( task_self, &page, pageSize, 0 )
    [all...]
  /external/chromium_org/ui/app_list/views/
apps_grid_view.h 69 // the contents for the launcher start page. It could be NULL if the start
70 // page is not available.
92 // Ensures the view is visible. Note that if there is a running page
138 // Stops the timer that triggers a page flip during a drag.
165 Index() : page(-1), slot(-1) {}
166 Index(int page, int slot) : page(page), slot(slot) {}
169 return page == other.page && slot == other.slot
175 int page; \/\/ Which page an item view is on. member in struct:app_list::AppsGridView::Index
    [all...]
page_switcher.cc 151 int page = GetPageForPoint(point); local
154 if (page >= 0 && page < button_count) {
156 static_cast<PageSwitcherButton*>(buttons_->child_at(page));
  /external/chromium_org/v8/src/
spaces-inl.h 65 Page* PageIterator::next() {
146 void MemoryAllocator::ProtectChunkFromPage(Page* page) {
147 int id = GetChunkId(page);
152 void MemoryAllocator::UnprotectChunkFromPage(Page* page) {
153 int id = GetChunkId(page);
163 Page* Page::Initialize(Heap* heap,
167 Page* page = reinterpret_cast<Page*>(chunk) local
    [all...]
  /external/chromium_org/win8/metro_driver/
print_document_source.cc 155 // Use the first page's description for the whole document. Page numbers
157 // TODO(mad): Check if it would be useful to use per page descriptions.
159 hr = print_task_options->GetPageDescription(1 /* page */, &page_desc);
194 for (size_t page = 0; page < page_count; ++page) {
196 hr = WaitAndGetPage(page, gdi_metafile.GetAddressOf());
197 LOG_IF(ERROR, FAILED(hr)) << "Failed to get page's metafile " << std::hex
214 STDMETHODIMP PrintDocumentSource::Paginate(uint32 page,
216 DVLOG(1) << __FUNCTION__ << ", page = " << page; local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 192 uptr page = internal_mmap(0, kPageSize, PROT_READ | PROT_WRITE, local
194 if (internal_iserror(page)) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
searchcvs.php 7 $pagesize = 25; //results per page
10 $page = (preg_match("/^\d+$/", $_GET["p"]) ? $_GET["p"] : 1); variable
11 $offset = ($page - 1) * $pagesize;
84 dopager($rows, $page, $pagesize);
103 dopager($rows, $page, $pagesize);
220 function pagelink($page, $selected, $linktext = "")
222 $innertext = ($linktext ? $linktext : $page);
223 $text = (!$selected ? "<a href=\"?q=" . sanitize($_GET["q"]) . "&amp;p=$page\">$innertext</a>" : $innertext);
227 function dopager($rows, $page, $pagesize)
229 $startpage = ($page - 5 < 1 ? 1 : $page - 5)
    [all...]
  /external/harfbuzz_ng/src/
hb-unicode-private.hh 143 * Last updated to the page with the following versions:
175 hb_codepoint_t page = ch >> 8; local
176 switch (page) {
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapCharacter.java 53 private int page; field in class:BitmapCharacter
128 public void setPage(int page) {
129 this.page = page;
133 return page;
BitmapTextPage.java 47 * One page per BitmapText Font Texture.
56 private final int page; field in class:BitmapTextPage
60 BitmapTextPage(BitmapFont font, boolean arrayBased, int page) {
67 this.page = page;
69 Material mat = font.getPage(page);
127 if (quads.getCharacterSetPage() == page) {
  /external/kernel-headers/original/linux/
binfmts.h 25 struct page *page[MAX_ARG_PAGES]; member in struct:linux_binprm
  /external/qemu/distrib/sdl-1.2.15/src/video/svga/
SDL_svgavideo.c 414 /* length of one screen page in bytes */
463 /* We need to wait for vertical retrace on page flipped displays */
494 int page, vp; local
511 page = vp >> 16;
513 vga_setpage(page);
517 page++;
518 vga_setpage(page);
522 page++;
523 vga_setpage(page);
  /external/v8/src/
spaces-inl.h 64 Page* PageIterator::next() {
145 void MemoryAllocator::ProtectChunkFromPage(Page* page) {
146 int id = GetChunkId(page);
151 void MemoryAllocator::UnprotectChunkFromPage(Page* page) {
152 int id = GetChunkId(page);
162 Page* Page::Initialize(Heap* heap,
166 Page* page = reinterpret_cast<Page*>(chunk) local
    [all...]
  /external/yaffs2/yaffs2/direct/
yaffs_fileem2k.c 44 yflash_Page page[PAGES_PER_BLOCK]; // The pages in the block member in struct:__anon28963
yaffs_ramem2k.c 63 nandemul_Page *page[PAGES_PER_BLOCK]; member in struct:__anon28972
104 memset(blk->page[i],0xff,sizeof(nandemul_Page));
105 blk->page[i]->empty = 1;
159 if((blk->page[j] = YMALLOC(sizeof(nandemul_Page))) == 0)
207 x = ned.block[blk]->page[pg]->data;
214 ned.block[blk]->page[pg]->empty = 0;
220 x = &ned.block[blk]->page[pg]->data[PAGE_DATA_SIZE];
250 memcpy(data,ned.block[blk]->page[pg]->data,PAGE_DATA_SIZE);
256 x = &ned.block[blk]->page[pg]->data[PAGE_DATA_SIZE];
279 if(ned.block[blk]->page[pg]->data[i] != 0xFF
    [all...]

Completed in 208 milliseconds

1 2 3 4 56 7 8 91011>>