Searched refs:page (Results 76 - 100 of 847) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/graphics/
H A DGlyphMetricsMap.h65 static const size_t size = 256; // Usually covers Latin-1 in a single page.
91 GlyphMetricsPage m_primaryPage; // We optimize for the page that contains glyph indices 0-255.
107 GlyphMetricsPage* page; local
110 page = &m_primaryPage;
114 if ((page = m_pages->get(pageNumber)))
115 return page;
118 page = new GlyphMetricsPage;
119 m_pages->set(pageNumber, page);
122 // Fill in the whole page with the unknown glyph information.
124 page
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DDebuggerAgentImpl.cpp65 WebCore::Page* DebuggerAgentImpl::page() function in class:WebKit::DebuggerAgentImpl
67 return m_webViewImpl->page();
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebinspector_p.h34 , page(0)
45 QWebPage* page; member in class:QWebInspectorPrivate
/external/webkit/Source/WebKit2/UIProcess/
H A DWebHistoryClient.cpp37 void WebHistoryClient::didNavigateWithNavigationData(WebContext* context, WebPageProxy* page, const WebNavigationDataStore& navigationDataStore, WebFrameProxy* frame) argument
43 m_client.didNavigateWithNavigationData(toAPI(context), toAPI(page), toAPI(navigationData.get()), toAPI(frame), m_client.clientInfo);
46 void WebHistoryClient::didPerformClientRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame) argument
51 m_client.didPerformClientRedirect(toAPI(context), toAPI(page), toURLRef(sourceURL.impl()), toURLRef(destinationURL.impl()), toAPI(frame), m_client.clientInfo);
54 void WebHistoryClient::didPerformServerRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame) argument
59 m_client.didPerformServerRedirect(toAPI(context), toAPI(page), toURLRef(sourceURL.impl()), toURLRef(destinationURL.impl()), toAPI(frame), m_client.clientInfo);
62 void WebHistoryClient::didUpdateHistoryTitle(WebContext* context, WebPageProxy* page, const String& title, const String& url, WebFrameProxy* frame) argument
67 m_client.didUpdateHistoryTitle(toAPI(context), toAPI(page), toAPI(title.impl()), toURLRef(url.impl()), toAPI(frame), m_client.clientInfo);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebContextMenu.h35 static PassRefPtr<WebContextMenu> create(WebPage* page) argument
37 return adoptRef(new WebContextMenu(page));
/external/chromium/chrome/browser/resources/ntp4/
H A Dtile_page.css6 .tile-page {
12 .tile-page-title {
38 .resizing-tile-page .tile {
/external/oprofile/module/
H A Dop_util.c20 /* Given PGD from the address space's page table, return the kernel
60 unsigned long adr, page; local
70 page = kvirt_to_pa(adr);
71 mem_map_reserve(virt_to_page((unsigned long)__va(page)));
80 unsigned long adr, page; local
87 page = kvirt_to_pa(adr);
88 mem_map_unreserve(virt_to_page((unsigned long)__va(page)));
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DGeolocationPermissionClientQt.cpp67 QWebPage* page = webFrame->page(); local
68 emit page->featurePermissionRequested(webFrame, QWebPage::Geolocation);
76 QWebPage* page = webFrame->page(); local
77 emit page->featurePermissionRequestCanceled(webFrame, QWebPage::Geolocation);
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A DClientImpl.h48 WKPageRef qt_wk_createNewPage(WKPageRef page, WKDictionaryRef features, WKEventModifiers modifiers, WKEventMouseButton mouseButton, const void *clientInfo);
49 void qt_wk_showPage(WKPageRef page, const void *clientInfo);
50 void qt_wk_close(WKPageRef page, const void *clientInfo);
51 void qt_wk_takeFocus(WKPageRef page, WKFocusDirection direction, const void *clientInfo);
52 void qt_wk_runJavaScriptAlert(WKPageRef page, WKStringRef alertText, WKFrameRef frame, const void* clientInfo);
53 void qt_wk_setStatusText(WKPageRef page, WKStringRef text, const void *clientInfo);
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
H A DFind.cpp38 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
43 static void didCountStringMatches(WKPageRef page, WKStringRef string, unsigned numMatches, const void* clientInfo) argument
61 WKPageSetPageLoaderClient(webView.page(), &loaderClient);
68 WKPageSetPageFindClient(webView.page(), &findClient);
71 WKPageLoadURL(webView.page(), url.get());
76 WKPageCountStringMatches(webView.page(), findString.get(), true, 100);
H A DFrameMIMETypeHTML.cpp37 static void didStartProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
43 static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
49 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
70 WKPageSetPageLoaderClient(webView.page(), &loaderClient);
73 WKPageLoadURL(webView.page(), url.get());
H A DFrameMIMETypePNG.cpp37 static void didStartProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
43 static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
49 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
70 WKPageSetPageLoaderClient(webView.page(), &loaderClient);
73 WKPageLoadURL(webView.page(), url.get());
H A DPageLoadDidChangeLocationWithinPageForFrame.cpp69 WKPageSetPageLoaderClient(webView.page(), &loaderClient);
72 WKPageLoadURL(webView.page(), url.get());
75 WKRetainPtr<WKURLRef> initialURL = adoptWK(WKFrameCopyURL(WKPageGetMainFrame(webView.page())));
77 WKPageRunJavaScriptInMainFrame(webView.page(), Util::toWK("clickLink()").get(), 0, nullJavaScriptCallback);
80 WKRetainPtr<WKURLRef> urlAfterAnchorClick = adoptWK(WKFrameCopyURL(WKPageGetMainFrame(webView.page())));
/external/kernel-headers/original/linux/
H A Dgfp.h39 #define __GFP_COLD ((__force gfp_t)0x100u) /* Cache-cold page required */
40 #define __GFP_NOWARN ((__force gfp_t)0x200u) /* Suppress page allocation failure warning */
45 #define __GFP_COMP ((__force gfp_t)0x4000u)/* Add compound page metadata */
46 #define __GFP_ZERO ((__force gfp_t)0x8000u)/* Return zeroed page on success */
87 * There is only one page-allocator function, and two main namespaces to
88 * it. The alloc_page*() variants return 'struct page *' and as such
89 * can allocate highmem pages, the *get*page*() variants return
90 * virtual kernel addresses to the allocated page(s).
102 static inline void arch_free_page(struct page *page, in argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DGlyphPageTreeNodeChromiumWin.cpp44 // Fills one page of font data pointers with 0 to indicate that there
46 static void fillEmptyGlyphs(GlyphPage* page) argument
49 page->setGlyphDataForIndex(i, 0, 0);
63 // Fills |length| glyphs starting at |offset| in a |page| in the Basic
70 GlyphPage* page,
84 return fillBMPGlyphs(offset, length, buffer, page, fontData, false);
86 fillEmptyGlyphs(page);
92 fillEmptyGlyphs(page);
160 page->setGlyphDataForCharacter(offset + i, glyph, glyphFontData);
187 GlyphPage* page,
67 fillBMPGlyphs(unsigned offset, unsigned length, UChar* buffer, GlyphPage* page, const SimpleFontData* fontData, bool recurse) argument
184 fillNonBMPGlyphs(unsigned offset, unsigned length, UChar* buffer, GlyphPage* page, const SimpleFontData* fontData) argument
[all...]
/external/webkit/Tools/MiniBrowser/win/
H A DBrowserView.cpp42 static WKPageRef createNewPage(WKPageRef page, WKDictionaryRef features, WKEventModifiers modifiers, WKEventMouseButton mouseButton, const void* clientInfo) argument
50 static void showPage(WKPageRef page, const void *clientInfo) argument
55 static void closePage(WKPageRef page, const void *clientInfo) argument
59 static void runJavaScriptAlert(WKPageRef page, WKStringRef alertText, WKFrameRef frame, const void* clientInfo) argument
63 static bool runJavaScriptConfirm(WKPageRef page, WKStringRef message, WKFrameRef frame, const void* clientInfo) argument
68 static WKStringRef runJavaScriptPrompt(WKPageRef page, WKStringRef message, WKStringRef defaultValue, WKFrameRef frame, const void* clientInfo) argument
73 static void setStatusText(WKPageRef page, WKStringRef text, const void* clientInfo) argument
77 static void mouseDidMoveOverElement(WKPageRef page, WKEventModifiers modifiers, WKTypeRef userData, const void *clientInfo) argument
148 WKPageRef page = WKViewGetPage(m_webView); local
149 WKPageLoadURL(page, ur
[all...]
/external/chromium/chrome/browser/resources/options/chromeos/
H A Dinternet_options.js12 * Encapsulated handling of ChromeOS internet options page.
27 * Initializes InternetOptions page.
34 var page = $('internetPage');
35 page.setAttribute('accesslocked', true);
231 var page = $('internetPage');
233 page.setAttribute('accesslocked', true);
236 page.removeAttribute('accesslocked');
255 var page = $('detailsInternetPage');
256 page.removeAttribute('cellplanloading');
258 page
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dsearch_page.js60 * Clear the interval timer and remove the element from the page.
102 * Encapsulated handling of the search page.
118 * Initialize the page.
153 // Don't push the same page onto the history stack more than once (if
188 * Called after this page has shown.
191 // This method is called by the Options page after all pages have
198 * Called before this page will be hidden.
201 // This method is called by the Options page before all pages have
210 * @param {boolean} active True if we are on the search page.
232 var page
[all...]
/external/webkit/Source/WebCore/page/
H A DDOMWindow.cpp234 Page* page = frame->page();
235 if (!page)
237 return frame == page->mainFrame();
379 Page* page = frame->page();
380 if (!page)
382 return page->chrome()->canRunModal();
389 Page* page = frame->page();
643 Page* page = document->page(); local
668 Page* page = document->page(); local
980 Page* page = m_frame->page(); local
994 Page* page = m_frame->page(); local
1008 Page* page = m_frame->page(); local
1857 Page* page = m_frame->page(); local
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMWindowBase.cpp103 Page* page = frame->page();
104 if (!page)
107 return page->inspectorController()->profilerEnabled();
122 Page* page = frame->page();
123 if (!page)
126 bool enabled = page->inspectorController()->enabled();
136 Page* page = impl()->frame()->page(); local
[all...]
/external/libffi/testsuite/libffi.call/
H A Dffitest.h50 void *page; local
69 page = mmap (NULL, size, PROT_READ | PROT_WRITE | PROT_EXEC,
73 page = mmap (NULL, size, PROT_READ | PROT_WRITE | PROT_EXEC,
77 if (page == (void *) MAP_FAILED)
83 return page;
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPagePrivate.h37 WK_EXPORT void WKPageRenderTreeExternalRepresentation(WKPageRef page, void *context, WKPageRenderTreeExternalRepresentationFunction function);
41 WK_EXPORT void WKPageRenderTreeExternalRepresentation_b(WKPageRef page, WKPageRenderTreeExternalRepresentationBlock block);
61 WK_EXPORT void WKPageComputePagesForPrinting(WKPageRef page, WKFrameRef frame, WKPrintInfo, WKPageComputePagesForPrintingFunction, void* context);
64 WK_EXPORT void WKPageBeginPrinting(WKPageRef page, WKFrameRef frame, WKPrintInfo);
65 WK_EXPORT void WKPageDrawPagesToPDF(WKPageRef page, WKFrameRef frame, uint32_t first, uint32_t count, WKPageDrawToPDFFunction callback, void* context);
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
H A DHideFindIndicator.cpp37 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
55 WKPageSetPageLoaderClient(webView.page(), &loaderClient);
67 WKPageLoadURL(webView.page(), url.get());
71 WKPageFindString(webView.page(), Util::toWK("Hello").get(), kWKFindOptionsShowFindIndicator, 100);
79 WKPageHideFindUI(webView.page());
/external/chromium/chrome/browser/policy/
H A Dmanaged_prefs_banner_base.h25 // options |page|. Subclasses may change that set by calling AddPref() and
29 OptionsPage page);
33 ManagedPrefsBannerBase(PrefService* user_prefs, OptionsPage page);
60 OptionsPage page);
/external/kernel-headers/original/asm-arm/arch/
H A Dmemory.h75 #define __arch_page_to_dma(dev, page) ({is_lbus_device(dev) ? \
76 (dma_addr_t)virt_to_lbus(page_address(page)) : \
77 (dma_addr_t)__virt_to_bus(page_address(page));})

Completed in 545 milliseconds

1234567891011>>