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

1 2 3 4 5 6 7 891011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
DetailsPage.java 39 import org.eclipse.ui.part.Page;
44 public class DetailsPage extends Page implements ISelectionListener {
  /external/chromium_org/v8/src/
incremental-marking.cc 393 chunk->size() > static_cast<size_t>(Page::kPageSize) &&
425 Page* p = it.next();
461 Page* p = it.next();
838 Page* p = Page::FromAddress(obj->address());
839 if (p->IsFlagSet(Page::RESCAN_ON_EVACUATION)) {
840 p->ClearFlag(Page::RESCAN_ON_EVACUATION);
    [all...]
  /external/v8/src/
incremental-marking.cc 301 chunk->size() > static_cast<size_t>(Page::kPageSize) &&
332 Page* p = it.next();
367 Page* p = it.next();
724 Page* p = Page::FromAddress(obj->address());
725 if (p->IsFlagSet(Page::RESCAN_ON_EVACUATION)) {
726 p->ClearFlag(Page::RESCAN_ON_EVACUATION);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorController.cpp 70 #include "core/page/Page.h"
75 InspectorController::InspectorController(Page* page, InspectorClient* inspectorClient)
79 , m_overlay(InspectorOverlay::create(page, inspectorClient))
80 , m_page(page)
84 m_agents.append(InspectorAgent::create(page, m_injectedScriptManager.get(), m_instrumentingAgents.get(), m_state.get()));
86 OwnPtr<InspectorPageAgent> pageAgentPtr(InspectorPageAgent::create(m_instrumentingAgents.get(), page, m_state.get(), m_injectedScriptManager.get(), inspectorClient, m_overlay.get()));
118 m_agents.append(PageRuntimeAgent::create(m_instrumentingAgents.get(), m_state.get(), m_injectedScriptManager.get(), pageScriptDebugServer, page, pageAgent));
139 m_agents.append(InspectorInputAgent::create(m_instrumentingAgents.get(), m_state.get(), page, inspectorClient))
    [all...]
InspectorAgent.cpp 44 #include "core/page/Frame.h"
45 #include "core/page/Page.h"
56 InspectorAgent::InspectorAgent(Page* page, InjectedScriptManager* injectedScriptManager, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state)
58 , m_inspectedPage(page)
62 ASSERT_ARG(page, page);
108 if (loader->frame() != frame->page()->mainFrame())
138 if (frame->page()->mainFrame() != frame
    [all...]
PageRuntimeAgent.cpp 41 #include "core/page/Frame.h"
42 #include "core/page/Page.h"
43 #include "core/page/PageConsole.h"
54 PageRuntimeAgent::PageRuntimeAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
56 , m_inspectedPage(page)
96 // Only report existing contexts if the page did commit load, otherwise we may
InspectorCanvasAgent.cpp 48 #include "core/page/DOMWindow.h"
49 #include "core/page/Frame.h"
267 NodeVisitor(Page* page, FramesWithUninstrumentedCanvases& result)
268 : m_page(page)
279 if (frame->page() != m_page)
287 Page* m_page;
289 } nodeVisitor(m_pageAgent->page(), m_framesWithUninstrumentedCanvases);
  /frameworks/support/v4/kitkat/android/support/v4/print/
PrintHelperKitkat.java 24 import android.graphics.pdf.PdfDocument.Page;
130 * @param orientation The page orientation which is one of
138 * Gets the page orientation with which the image will be printed.
206 Page page = pdfDocument.startPage(1);
208 RectF content = new RectF(page.getInfo().getContentRect());
214 page.getCanvas().drawBitmap(bitmap, matrix, null);
216 // Finish the page.
217 pdfDocument.finishPage(page);
248 * Calculates the transform the print an Image to fill the page
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameElementBase.cpp 35 #include "core/page/FocusController.h"
36 #include "core/page/Frame.h"
37 #include "core/page/FrameView.h"
38 #include "core/page/Page.h"
209 if (Page* page = document()->page()) {
211 page->focusController().setFocusedFrame(contentFrame());
212 else if (page->focusController().focusedFrame() == contentFrame()) // Focus may have already been given to anoth (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoaderClient.h 36 #include "core/page/LayoutMilestones.h"
72 class Page;
135 // Another page has accessed the initial empty document of this frame.
EmptyClients.h 36 #include "core/page/ChromeClient.h"
37 #include "core/page/ContextMenuClient.h"
38 #include "core/page/DragClient.h"
39 #include "core/page/EditorClient.h"
40 #include "core/page/FocusDirection.h"
41 #include "core/page/Page.h"
53 Viewless element needs to create a dummy Page->Frame->FrameView tree for use in parsing or executing JavaScript.
56 This file was first created for SVGImage as it had no way to access the current Page (nor should it,
57 since Images are not tied to a page)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Frame.cpp 31 #include "core/page/Frame.h"
46 #include "core/page/Chrome.h"
47 #include "core/page/ChromeClient.h"
48 #include "core/page/DOMWindow.h"
49 #include "core/page/EventHandler.h"
50 #include "core/page/FocusController.h"
51 #include "core/page/FrameDestructionObserver.h"
52 #include "core/page/FrameView.h"
53 #include "core/page/Page.h
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAElement.cpp 42 #include "core/page/Chrome.h"
43 #include "core/page/ChromeClient.h"
44 #include "core/page/Frame.h"
45 #include "core/page/Page.h"
225 Page* page = document()->page();
226 if (!page)
229 return page->chrome().client()->tabsToLinks()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognition.cpp 33 #include "core/page/Page.h"
179 Page* page = document->page(); local
180 ASSERT(page);
182 m_controller = SpeechRecognitionController::from(page);
185 // FIXME: Need to hook up with Page to get notified when the visibility changes.
  /external/chromium_org/third_party/WebKit/Source/web/
PinchViewports.cpp 36 #include "core/page/FrameView.h"
72 m_pageScaleLayer->setName("page scale layer");
126 WebCore::Page* page = m_owner->page(); local
127 if (!page)
135 scrollbar->setDrawsContent(!page->mainFrame()->view()->hasOverlayScrollbars());
137 scrollbar->setDrawsContent(!page->mainFrame()->view()->hasOverlayScrollbars());
WebViewImpl.h 49 #include "core/page/PagePopupDriver.h"
50 #include "core/page/PageScaleConstraintsSet.h"
79 class Page;
348 static WebViewImpl* fromPage(WebCore::Page*);
375 // Returns the page object associated with this view. This may be null when
376 // the page is shutting down, but will be valid at all other times.
377 WebCore::Page* page() const function in class:WebKit::WebViewImpl
385 // the page is shutting down, but will be valid at all other times.
415 // not take the user away from the current page
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdfprotect.asm 115 idesc32 isrP, 0x0008, 0 ; 0x0E, 14, #PF, Page Fault
153 dw isrR, 0 ; 0x0E, 14, #PF, Page Fault
  /external/chromium_org/tools/telemetry/telemetry/page/
page_set.py 8 from telemetry.page import cloud_storage
9 from telemetry.page import page as page_module
10 from telemetry.page import page_set_archive_info
47 page = page_module.Page(url, page_set, attributes=page_attributes,
49 page_set.pages.append(page)
52 for page in page_set:
53 if page.is_file:
54 serving_dirs, _ = page.serving_dirs_and_fil
    [all...]
page_test_unittest.py 7 from telemetry.page import page as page_module
8 from telemetry.page import page_test
9 from telemetry.page.actions import all_page_actions
10 from telemetry.page.actions import page_action
15 page = page_module.Page(url, None, base_dir=base_dir)
16 return page
22 def DoNothing(self, page, tab, results):
26 def RunAction(self, page, tab, previous_action)
    [all...]
  /external/oprofile/events/x86-64/family10/
unit_masks 79 0x01 DCT0 Page hit
80 0x02 DCT0 Page miss
81 0x04 DCT0 Page conflict
82 0x08 DCT1 Page hit
83 0x10 DCT1 Page miss
84 0x20 DCT1 Page Conflict
86 0x01 DCT0 Page Table Overflow
87 0x02 DCT1 Page Table Overflow
122 0x04 TLB fill (page table walks)
129 0x04 TLB page table wal
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
tabbedpages.py 6 TabbedPageSet -- A Tkinter implementation of a tabbed-page widget.
209 selecting a tab changes the page.
271 # rightmost edge of the page set, the right mask should be one
292 page is displayed. Only one page will be displayed at a time.
295 of pages, using the name given as the key. A page is an instance of a
298 The page widgets will be created (and destroyed when required) by the
299 TabbedPageSet. Do not call the page's pack/place/grid/destroy methods.
305 class Page(object):
322 class PageRemove(Page)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
tabbedpages.py 6 TabbedPageSet -- A Tkinter implementation of a tabbed-page widget.
209 selecting a tab changes the page.
271 # rightmost edge of the page set, the right mask should be one
292 page is displayed. Only one page will be displayed at a time.
295 of pages, using the name given as the key. A page is an instance of a
298 The page widgets will be created (and destroyed when required) by the
299 TabbedPageSet. Do not call the page's pack/place/grid/destroy methods.
305 class Page(object):
322 class PageRemove(Page)
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/tutorial/debugging/
example.js 12 updateStatus('Page Loaded');
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityObject.h 53 class Page;
279 // Lays out the page so that the accessibility tree is based on up-to-date information.
472 // Properties of the object's owning document or page.
484 Page* page() const;
  /external/chromium_org/v8/test/cctest/
test-weakmaps.cc 189 // Start second old-space page so that values land on evacuation candidate.
190 Page* first_page = heap->old_pointer_space()->anchor()->next_page();
226 // Start second old-space page so that keys land on evacuation candidate.
227 Page* first_page = heap->old_pointer_space()->anchor()->next_page();

Completed in 1407 milliseconds

1 2 3 4 5 6 7 891011>>