HomeSort by relevance Sort by last modified time
    Searched refs:Page (Results 276 - 300 of 377) sorted by null

<<111213141516

  /external/chromium_org/v8/src/
heap-inl.h 59 Page::FromAllocationTop(reinterpret_cast<Address>(limit_)));
146 { MaybeObject* maybe_result = (size > Page::kMaxNonCodeHeapObjectSize)
180 { MaybeObject* maybe_result = (size > Page::kMaxNonCodeHeapObjectSize)
382 NewSpacePage* page = NewSpacePage::FromAddress(old_address); local
384 bool below_mark = page->IsFlagSet(MemoryChunk::NEW_SPACE_BELOW_AGE_MARK) &&
385 (!page->ContainsLimit(age_mark) || old_address < age_mark);
heap.h 82 /* view. This means they are never in new space and never on a page that */ \
322 void Callback(MemoryChunk* page, StoreBufferEvent event);
328 // iterating over the current page, finding pointers to new space. If the
329 // store buffer overflows again we can exempt the page from the store buffer
332 // The current page we are scanning in the store buffer iterator.
359 Page* GetHeadPage() {
360 return Page::FromAllocationTop(reinterpret_cast<Address>(rear_));
368 ASSERT(GetHeadPage() == Page::FromAllocationTop(limit));
409 // The front of the queue is higher in the memory page chain than the rear.
    [all...]
objects-visiting.h 144 ASSERT(object_size <= Page::kMaxNonCodeHeapObjectSize);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerBacking.cpp 38 #include "core/page/Chrome.h"
39 #include "core/page/FrameView.h"
40 #include "core/page/Settings.h"
41 #include "core/page/animation/AnimationController.h"
42 #include "core/page/scrolling/ScrollingCoordinator.h"
145 Page* page = layer->renderer()->frame()->page(); local
146 if (!page)
149 return page->scrollingCoordinator()
163 Page* page = frame ? frame->page() : 0; local
    [all...]
RenderImage.cpp 38 #include "core/page/Frame.h"
39 #include "core/page/Page.h"
287 Page* page = 0; local
289 page = frame->page();
295 if (page && paintInfo.phase == PaintPhaseForeground)
296 page->addRelevantUnpaintedObject(this, visualOverflowRect());
361 if (page && paintInfo.phase == PaintPhaseForeground
    [all...]
  /external/chromium_org/v8/src/ia32/
macro-assembler-ia32.cc 119 and_(scratch, Immediate(~Page::kPageAlignmentMask));
121 mov(scratch, Immediate(~Page::kPageAlignmentMask));
129 // If non-zero, the page belongs to new-space.
348 // the from object's page's interesting flag is also set. This optimization
2983 Page* page = Page::FromAddress(map->address()); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.cpp 47 #include "core/page/EventHandler.h"
48 #include "core/page/Frame.h"
49 #include "core/page/Page.h"
50 #include "core/page/SpatialNavigation.h"
192 const Page* page = document()->page(); local
193 RefPtr<RenderTheme> renderTheme = page ? page->theme() : RenderTheme::defaultTheme()
1066 const Page* page = document()->page(); local
1099 const Page* page = document()->page(); local
    [all...]
HTMLAnchorElement.cpp 41 #include "core/page/Chrome.h"
42 #include "core/page/ChromeClient.h"
43 #include "core/page/Frame.h"
44 #include "core/page/Page.h"
45 #include "core/page/Settings.h"
171 Page* page = document()->page();
172 if (!page)
    [all...]
InputType.cpp 71 #include "core/page/Page.h"
141 RefPtr<RenderTheme> theme = document->page() ? document->page()->theme() : RenderTheme::defaultTheme();
509 if (Page* page = element()->document()->page())
510 return &page->chrome();
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleSheetContents.cpp 451 case StyleRuleBase::Page:
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameView.h 28 #include "core/page/AdjustViewSizeOrNot.h"
29 #include "core/page/Frame.h"
47 class Page;
320 // Page and FrameView both store a Pagination value. Page::pagination() is set only by API,
321 // and FrameView::pagination() is set only by CSS. Page::pagination() will affect all
322 // FrameViews in the page cache, but FrameView::pagination() only affects the current
324 // it will return Page::pagination() since currently there are no callers that need to
538 // The first few hundred characters rarely contain the interesting content of the page.
PageSerializer.cpp 32 #include "core/page/PageSerializer.h"
52 #include "core/page/Frame.h"
53 #include "core/page/Page.h"
179 void PageSerializer::serialize(Page* page)
181 serializeFrame(page->mainFrame());
DragController.cpp 28 #include "core/page/DragController.h"
55 #include "core/page/DragActions.h"
56 #include "core/page/DragClient.h"
57 #include "core/page/DragSession.h"
58 #include "core/page/DragState.h"
59 #include "core/page/EventHandler.h"
60 #include "core/page/Frame.h"
61 #include "core/page/FrameView.h"
62 #include "core/page/Page.h
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 28 #include "core/page/Chrome.h"
29 #include "core/page/ChromeClient.h"
30 #include "core/page/Frame.h"
31 #include "core/page/Page.h"
121 if (!frame->page())
124 ChromeClient* chromeClient = frame->page()->chrome().client();
274 Page* page = 0;
276 page = frame->page()
    [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.
132 Page* page = m_webViewImpl->mainFrameImpl()->frame()->page(); local
133 ASSERT_TRUE(page->scrollingCoordinator());
134 ASSERT_TRUE(page->scrollingCoordinator()->coordinatesScrollingForFrameView(frameView));
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedViewCellLayout.java 31 public class PagedViewCellLayout extends ViewGroup implements Page {
326 // The space for a page is the height - top padding (current page) - bottom padding (current
327 // page)
  /external/chromium_org/chrome/test/functional/
perf_endure.py 27 ENDURE_NO_WPR: Run tests without Web Page Replay if it's set.
305 # The Web Page Replay environment variables must be parsed before
359 """Return the Web Page Replay archive name that corresponds to a test.
370 """Parse Web Page Replay related envrionment variables."""
373 logging.info('Skipping Web Page Replay since ENDURE_NO_WPR is set.')
397 'Skipping Web Page Replay since archive file %sdoes not exist.',
727 logging.info('Web Page Replay server has started in %s mode.', mode)
730 """Stop the Web Page Replay server if necessary.
733 through Web Page Replay server have shut down. Otherwise the
734 Web Page Replay server will hang to wait for them. A goo
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.cpp 64 #include "core/page/Chrome.h"
65 #include "core/page/ChromeClient.h"
66 #include "core/page/FocusController.h"
67 #include "core/page/Frame.h"
68 #include "core/page/Page.h"
152 AccessibilityObject* AXObjectCache::focusedUIElementForPage(const Page* page)
157 // get the focused node in the page
158 Document* focusedDocument = page->focusController().focusedOrMainFrame()->document()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp 131 #include "core/page/Chrome.h"
132 #include "core/page/ChromeClient.h"
133 #include "core/page/ContentSecurityPolicy.h"
134 #include "core/page/DOMSecurityPolicy.h"
135 #include "core/page/DOMWindow.h"
136 #include "core/page/EventHandler.h"
137 #include "core/page/Frame.h"
138 #include "core/page/FrameTree.h"
139 #include "core/page/FrameView.h"
140 #include "core/page/History.h
1434 Page* Document::page() const function in class:WebCore::Document
4692 Page* page = document->page(); local
4756 Page* page = this->page(); local
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
spaceanal.tcl 61 gap_cnt int -- Number of gaps in the page layout
314 # pages and the page size used by the database (in bytes).
321 # of one page only then there is no overhead for auto-vacuum. Return zero.
326 # The number of entries on each pointer map page. The layout of the
327 # database file is one pointer-map page, followed by $ptrsPerPage other
328 # pages, followed by a pointer-map page etc. The first pointer-map page
329 # is the second page of the file overall.
340 # pageSize: Size of each page in bytes.
395 statline {Page size in bytes} $pageSiz
    [all...]
  /external/chromium_org/tools/measure_page_load_time/ff_ext/content/
measure_page_load_time.js 7 * for measuring how long a page takes to load. It waits on TCP port
84 // If we're waiting for a page to finish loading, wait
115 * Page load completion handler
159 * Time the page load started. If null, we're waiting for the
160 * initial page load, or otherwise don't care about the page
183 // Register for page load events
186 // Set a timeout to wait for the initial page to load
  /external/chromium_org/v8/tools/
codemap.js 63 * The number of alignment bits in a page address.
69 * Page size in bytes.
  /external/oprofile/events/i386/atom/
events 17 event:0x0C counters:0,1 um:page_walks minimum:6000 name:PAGE_WALKS : Page walks
  /external/v8/tools/
codemap.js 63 * The number of alignment bits in a page address.
69 * Page size in bytes.
  /external/v8/src/ia32/
macro-assembler-ia32.cc 64 and_(scratch, Immediate(~Page::kPageAlignmentMask));
66 mov(scratch, Immediate(~Page::kPageAlignmentMask));
74 // If non-zero, the page belongs to new-space.
    [all...]

Completed in 2166 milliseconds

<<111213141516