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/chrome/common/extensions/
manifest_url_handler.cc 234 // Validate path to the options page. Don't check the URL for hosted apps,
275 std::string page = iter.key(); local
278 bool is_override = (page != chrome::kChromeUINewTabHost &&
279 page != chrome::kChromeUIBookmarksHost &&
280 page != chrome::kChromeUIHistoryHost);
283 page != chrome::kChromeUIActivationMessageHost);
288 page == chrome::kChromeUIFileManagerHost));
291 is_override = (is_override && page != keyboard::kKeyboardWebUIHost);
299 url_overrides->chrome_url_overrides_[page] = extension->GetResourceURL(val);
306 page.c_str())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDocument.cpp 59 #include "core/page/FocusController.h"
60 #include "core/page/Frame.h"
61 #include "core/page/FrameTree.h"
62 #include "core/page/FrameView.h"
63 #include "core/page/Page.h"
135 Page* page = this->page(); local
136 if (!page)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
HistoryController.cpp 41 #include "core/page/Frame.h"
42 #include "core/page/FrameTree.h"
43 #include "core/page/FrameView.h"
44 #include "core/page/Page.h"
45 #include "core/page/scrolling/ScrollingCoordinator.h"
68 Page* page = m_frame->page(); local
69 if (page && page->mainFrame() == m_frame
109 Page* page = m_frame->page(); local
217 Page* page = m_frame->page(); local
337 Page* page = m_frame->page(); local
651 Page* page = m_frame->page(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Console.cpp 30 #include "core/page/Console.h"
39 #include "core/page/Chrome.h"
40 #include "core/page/ChromeClient.h"
41 #include "core/page/ConsoleTypes.h"
42 #include "core/page/Frame.h"
43 #include "core/page/MemoryInfo.h"
44 #include "core/page/Page.h"
62 static void internalAddMessage(Page* page, MessageType type, MessageLevel level, ScriptState* state, PassRefPtr<ScriptArguments> prpArgument (…)
155 Page* page = this->page(); local
176 Page* page = this->page(); local
232 Page* Console::page() const function in class:WebCore::Console
    [all...]
PrintContext.cpp 22 #include "core/page/PrintContext.h"
24 #include "core/page/Frame.h"
25 #include "core/page/FrameView.h"
39 // This number determines how small we are willing to reduce the page content
40 // in order to accommodate the widest line. If the page would have to be
77 outPageHeight = pageHeight; // this is the height of the page adjusted by margins
260 const IntRect& page = printContext.pageRect(pageNumber); local
261 if (page.x() <= left && left < page.maxX() && page.y() <= top && top < page.maxY()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FontFastPath.cpp 129 static inline std::pair<GlyphData, GlyphPage*> glyphDataAndPageForNonCJKCharacterWithGlyphOrientation(UChar32 character, NonCJKGlyphOrientation orientation, GlyphData& data, GlyphPage* page, unsigned pageNumber)
134 GlyphPage* uprightPage = uprightNode->page();
139 return make_pair(data, page);
148 GlyphPage* verticalRightPage = verticalRightNode->page();
154 return make_pair(data, page);
160 return make_pair(data, page);
193 GlyphPage* page = 0; local
197 page = node->page();
198 if (page) {
315 GlyphPage* page = node->page(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderEmbeddedObject.cpp 30 #include "core/page/Frame.h"
31 #include "core/page/Page.h"
32 #include "core/page/Settings.h"
125 Page* page = 0; local
127 page = frame->page();
130 if (page && paintInfo.phase == PaintPhaseForeground)
131 page->addRelevantUnpaintedObject(this, visualOverflowRect())
    [all...]
RenderVideo.cpp 33 #include "core/page/Frame.h"
34 #include "core/page/FrameView.h"
35 #include "core/page/Page.h"
184 Page* page = 0; local
186 page = frame->page();
189 if (page && paintInfo.phase == PaintPhaseForeground)
190 page->addRelevantUnpaintedObject(this, visualOverflowRect())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.h 58 // - Each partition page (which is usually multiple physical pages) has a header
80 // - No specific protection against corruption of page header metadata.
109 // for a partition page to be based on multiple system pages. We rarely deal
110 // with system pages. Most references to "page" refer to partition pages. We
118 // Special bucket id for free page metadata.
137 PartitionPageHeader* page; member in struct:WTF::PartitionFreepagelistEntry
192 PartitionPageHeader* page = bucket->currPage; local
193 PartitionFreelistEntry* ret = page->freelistHead;
195 page->freelistHead = partitionFreelistMask(ret->next);
196 page->numAllocatedSlots++
229 PartitionPageHeader* page = reinterpret_cast<PartitionPageHeader*>(pointerAsUint & kPartitionPageBaseMask); local
    [all...]
PartitionAllocTest.cpp 99 static void FreeFullPage(WTF::PartitionPageHeader* page, size_t size)
102 EXPECT_EQ(numSlots, static_cast<size_t>(abs(page->numAllocatedSlots)));
103 char* ptr = reinterpret_cast<char*>(page);
110 EXPECT_EQ(0, page->numAllocatedSlots);
128 // Check that the offset appears to include a guard page.
132 // Expect that a just-freed page doesn't get tossed to the freelist.
189 WTF::PartitionPageHeader* page = GetFullPage(kTestAllocSize); local
190 FreeFullPage(page, kTestAllocSize);
192 EXPECT_EQ(page, bucket->currPage);
193 EXPECT_EQ(page, page->next)
    [all...]
  /external/chromium_org/third_party/angle_dx11/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 158 uintptr_t page = (uintptr_t)address & ~(uintptr_t)(kPageSize-1); local
160 e |= mprotect((void *)page, kPageSize, PROT_EXEC | PROT_READ);
161 e |= msync((void *)page, kPageSize, MS_INVALIDATE );
384 vm_address_t page = 0; local
385 mach_error_t err = vm_allocate( mach_task_self(), &page, kPageSize, VM_FLAGS_ANYWHERE );
387 *island = (BranchIsland*) page;
397 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?
401 vm_address_t page = first;
404 while( page != last ) {
405 mach_error_t err = vm_allocate( task_self, &page, kPageSize, 0 )
    [all...]
  /external/chromium_org/ui/app_list/views/
apps_grid_view.h 74 // Ensures the view is visible. Note that if there is a running page
120 // Stops the timer that triggers a page flip during a drag.
142 Index() : page(-1), slot(-1) {}
143 Index(int page, int slot) : page(page), slot(slot) {}
146 return page == other.page && slot == other.slot;
149 return page != other.page || slot != other.slot
152 int page; \/\/ Which page an item view is on. member in struct:app_list::AppsGridView::Index
    [all...]
page_switcher.cc 152 int page = GetPageForPoint(point); local
155 if (page >= 0 && page < button_count) {
157 static_cast<PageSwitcherButton*>(buttons_->child_at(page));
  /external/chromium_org/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/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...]

Completed in 1624 milliseconds

1 2 3 4 56 7 8 91011>>