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

<<1112131415161718

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertySheetPage.java 48 import org.eclipse.ui.part.Page;
62 * Property sheet page used when the graphical layout editor is chosen
64 public class PropertySheetPage extends Page
87 * @param editor the editor associated with this property sheet page
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
FrameSummaryViewPage.java 52 import org.eclipse.ui.part.Page;
63 public class FrameSummaryViewPage extends Page {
  /external/v8/src/
objects-visiting.h 138 ASSERT(object_size < Page::kMaxNonCodeHeapObjectSize);
heap.h 82 /* view. This means they are never in new space and never on a page that */ \
264 void Callback(MemoryChunk* page, StoreBufferEvent event);
270 // iterating over the current page, finding pointers to new space. If the
271 // store buffer overflows again we can exempt the page from the store buffer
274 // The current page we are scanning in the store buffer iterator.
309 Page* GetHeadPage() {
310 return Page::FromAllocationTop(reinterpret_cast<Address>(rear_));
318 ASSERT(GetHeadPage() == Page::FromAllocationTop(limit));
359 // The front of the queue is higher in the memory page chain than the rear.
    [all...]
  /external/v8/test/cctest/
test-alloc.cc 180 // distributed between 2 * Page::kPageSize and 2^5 + 1 * Page::kPageSize.
218 // Page::kMaxNonCodeHeapObjectSize (which is greater than code page area).
222 (Page::kMaxNonCodeHeapObjectSize << (Pseudorandom() % 3)) +
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.cpp 44 #include "Page.h"
133 static void addMessageToConsole(Page* page, const String& message, const String& sourceID, unsigned lineNumber)
135 ASSERT(page);
136 Console* console = page->mainFrame()->domWindow()->console();
142 Page* page = frame->page(); local
143 if (!page)
145 addMessageToConsole(page, message, url, 0)
597 Page* page = m_frame->page(); local
    [all...]
  /external/webkit/Source/WebCore/history/
BackForwardListImpl.cpp 35 #include "Page.h"
46 BackForwardListImpl::BackForwardListImpl(Page* page)
47 : m_page(page)
  /external/webkit/Source/WebCore/inspector/
InspectorInstrumentation.cpp 69 HashMap<Page*, InspectorAgent*>& InspectorInstrumentation::inspectorAgents()
71 static HashMap<Page*, InspectorAgent*>& agents = *new HashMap<Page*, InspectorAgent*>;
522 if (frame->page()->mainFrame() != frame || url != documentLoader->requestURL())
548 if (frame->page()->mainFrame() != frame || url != documentLoader->requestURL())
567 void InspectorInstrumentation::didCommitLoadImpl(Page* page, InspectorAgent* inspectorAgent, DocumentLoader* loader)
576 Frame* mainFrame = page->mainFrame();
    [all...]
  /external/webkit/Source/WebCore/page/
FrameView.h 30 #include "Page.h"
185 // and adjusting for page scale.
242 // to at least get print stylesheets and printer fonts into play, but since WebKit doesn't know about the page offset or
243 // page size, it can't actually paginate correctly during _layoutForPrinting.
432 Page* m_page;
  /external/webkit/Source/WebCore/plugins/
npapi.cpp 28 #include "Page.h"
64 Page::refreshPlugins(reloadPages);
  /external/webkit/Source/WebCore/rendering/
RenderTheme.h 57 // appropriate platform theme. When the theme is needed in non-page dependent code, a default theme is
58 // used as fallback, which is returned for a nulled page, so the platform code needs to account for this.
59 static PassRefPtr<RenderTheme> themeForPage(Page* page);
61 // When the theme is needed in non-page dependent code, the defaultTheme() is used as fallback.
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
WebAutofill.cpp 39 #include "Page.h"
147 if (frame != frame->page()->mainFrame())
231 Page* page = mWebViewCore->mainFrame()->page(); local
232 return page ? page->settings()->autoFillEnabled() : false;
  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.h 75 virtual WebCore::Page* createWindow(
DebuggerAgentManager.cpp 90 s_pageDeferrers.set(agent->webView(), new WebCore::PageGroupLoadDeferrer(agent->page(), true));
295 WebCore::Page* page = frame->page();
297 if (it->second->page() == page)
WebViewImpl.cpp 76 #include "Page.h"
181 // The group name identifies a namespace of pages. Page group is used on OSX
184 // one page group.
187 // Used to defer all page activity in cases where the embedder wishes to run
232 Page::visitedStateChanged(PageGroup::pageGroup(pageGroupName), linkHash);
237 Page::allVisitedStateChanged(PageGroup::pageGroup(pageGroupName));
248 // Pick any page in the page group since we are deferring all pages.
343 Page::PageClients pageClients;
356 m_page.set(new Page(pageClients))
2348 Page* page = m_webViewImpl->page(); local
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
InspectorClientGtk.cpp 26 #include "Page.h"
194 InspectorFrontendClient::InspectorFrontendClient(WebKitWebView* inspectedWebView, WebKitWebView* inspectorWebView, WebKitWebInspector* webInspector, Page* inspectorPage, InspectorClient* inspectorClient)
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.cpp 41 #include "Page.h"
54 void EditorClientHaiku::setPage(Page* page)
56 m_page = page;
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebChromeClient.h 59 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebDragClient.cpp 39 #include <WebCore/Page.h>
145 DWORD okEffect = draggingSourceOperationMaskToDragCursors(m_webView->page()->dragController()->sourceDragOperation());
WebFrameLoaderClient.cpp 65 #include <WebCore/Page.h>
509 // didReceiveResponse sets up a new stream to the plug-in. on a full-page plug-in, a failure in
628 if (Page* page = webView->page()) {
629 if (!page->settings()->privateBrowsingEnabled())
630 historyItem = page->backForward()->currentItem();
768 void WebFrameLoaderClient::didTransferChildFrameToNewDocument(Page*)
772 WebView* webView = kit(coreFrame->page());
777 void WebFrameLoaderClient::transferLoadingResourceFromPage(unsigned long identifier, DocumentLoader* loader, const ResourceRequest& request, Page* oldPage
    [all...]
  /external/webkit/Source/WebKit/win/
WebNodeHighlight.cpp 37 #include <WebCore/Page.h>
157 m_inspectedWebView->page()->inspectorController()->drawNodeHighlight(context);
WebView.h 64 WebView* kit(WebCore::Page*);
65 WebCore::Page* core(IWebView*);
829 WebCore::Page* page();
    [all...]
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
ChromeClientWinCE.cpp 87 Page* ChromeClientWinCE::createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&)
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.h 41 WebChromeClient(WebPage* page)
44 , m_page(page)
48 WebPage* page() const { return m_page; } function in class:WebKit::WebChromeClient
72 // Frame wants to create the new Page. Also, the newly created window
74 // created Page has its show method called.
75 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 93 #include <WebCore/Page.h>
143 RefPtr<WebPage> page = adoptRef(new WebPage(pageID, parameters)); local
145 if (page->pageGroup()->isVisibleToInjectedBundle() && WebProcess::shared().injectedBundle())
146 WebProcess::shared().injectedBundle()->didCreatePage(page.get());
148 return page.release();
181 Page::PageClients pageClients;
193 m_page = adoptPtr(new Page(pageClients));
755 // We're installing a page overlay when a page overlay is already active.
915 static bool handleMouseEvent(const WebMouseEvent& mouseEvent, Page* page
    [all...]

Completed in 697 milliseconds

<<1112131415161718