HomeSort by relevance Sort by last modified time
    Searched refs:page (Results 1 - 25 of 3849) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/kernel/arch-sh/asm/
hugetlb.h 15 #include <asm/page.h>
fb.h 17 #include <asm/page.h>
tlbflush.h 17 #define flush_tlb_page(vma, page) local_flush_tlb_page(vma, page)
18 #define flush_tlb_one(asid, page) local_flush_tlb_one(asid, page)
  /external/webkit/Source/WebKit/qt/tests/qwebinspector/
tst_qwebinspector.cpp 36 { // External inspector + manual destruction of page first
37 QWebPage* page = new QWebPage(); local
38 page->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);
40 inspector->setPage(page);
41 page->updatePositionDependentActions(QPoint(0, 0));
42 page->triggerAction(QWebPage::InspectElement);
44 delete page;
48 QWebPage* page = new QWebPage(); local
49 page->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);
51 inspector->setPage(page);
59 QWebPage page; local
    [all...]
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/
qtwebkit_qwebinspector_snippet.cpp 7 QWebPage *page = new QWebPage; local
11 inspector->setPage(page);
qtwebkit_qwebview_snippet.cpp 6 view->page()->history();
11 view->page()->settings();
21 view->page()->triggerPageAction(QWebPage::Stop);
26 view->page()->triggerPageAction(QWebPage::GoBack);
31 view->page()->triggerPageAction(QWebPage::GoForward);
  /external/kernel-headers/original/linux/
pagemap.h 16 * Bits in mapping->flags. The lower __GFP_BITS_SHIFT bits are the page
38 * The page cache can done in larger chunks than
39 * one page, because it allows for more efficient
50 #define page_cache_get(page) get_page(page)
51 #define page_cache_release(page) put_page(page)
52 void release_pages(struct page **pages, int nr, int cold);
55 extern struct page *page_cache_alloc(struct address_space *x);
56 extern struct page *page_cache_alloc_cold(struct address_space *x)
    [all...]
highmem.h 10 static inline void flush_anon_page(struct page *page, unsigned long vmaddr)
16 static inline void flush_kernel_dcache_page(struct page *page)
32 static inline void *kmap(struct page *page)
35 return page_address(page);
38 #define kunmap(page) do { (void) (page); } while (0)
40 #define kmap_atomic(page, idx) page_address(page
61 struct page *page = alloc_page_vma(GFP_HIGHUSER, vma, vaddr); local
    [all...]
  /external/doclava/res/assets/templates/
lists.cs 2 <?cs each:page = docs.pages
3 ?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>" }<?cs if:!last(page) ?>,<?cs /if ?>
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardList.cpp 33 #include <WebCore/Page.h>
43 Page* page = m_page->corePage();
44 if (!page)
46 return InjectedBundleBackForwardListItem::create(page->backForward()->itemAtIndex(index));
53 Page* page = m_page->corePage();
54 if (!page)
56 return page->backForward()->backCount();
63 Page* page = m_page->corePage()
    [all...]
  /external/flac/libFLAC/
ogg_helper.c 77 void simple_ogg_page__init(ogg_page *page)
79 page->header = 0;
80 page->header_len = 0;
81 page->body = 0;
82 page->body_len = 0;
85 void simple_ogg_page__clear(ogg_page *page)
87 if(page->header)
88 free(page->header);
89 if(page->body)
90 free(page->body)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePagePrivate.h 35 WK_EXPORT void WKBundlePageStopLoading(WKBundlePageRef page);
36 WK_EXPORT void WKBundlePageSetDefersLoading(WKBundlePageRef page, bool defersLoading);
37 WK_EXPORT bool WKBundlePageIsEditingCommandEnabled(WKBundlePageRef page, WKStringRef commandName);
38 WK_EXPORT void WKBundlePageClearMainFrameName(WKBundlePageRef page);
39 WK_EXPORT void WKBundlePageClose(WKBundlePageRef page);
40 WK_EXPORT WKStringRef WKBundlePageCopyRenderTreeExternalRepresentation(WKBundlePageRef page);
41 WK_EXPORT void WKBundlePageExecuteEditingCommand(WKBundlePageRef page, WKStringRef commandName, WKStringRef argument);
43 WK_EXPORT double WKBundlePageGetTextZoomFactor(WKBundlePageRef page);
44 WK_EXPORT void WKBundlePageSetTextZoomFactor(WKBundlePageRef page, double zoomFactor);
45 WK_EXPORT double WKBundlePageGetPageZoomFactor(WKBundlePageRef page);
    [all...]
  /external/webkit/Source/WebCore/page/
BarInfo.cpp 34 #include "Page.h"
63 Page* page = m_frame->page();
64 if (!page)
71 return page->chrome()->toolbarsVisible();
73 return page->chrome()->menubarVisible();
75 return page->chrome()->scrollbarsVisible();
77 return page->chrome()->statusbarVisible();
  /external/kernel-headers/original/asm-x86/
highmem.h 66 extern void * FASTCALL(kmap_high(struct page *page));
67 extern void FASTCALL(kunmap_high(struct page *page));
69 void *kmap(struct page *page);
70 void kunmap(struct page *page);
71 void *kmap_atomic_prot(struct page *page, enum km_type type, pgprot_t prot)
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebinspector.cpp 37 The inspector can display a page's hierarchy, its loading statistics and
53 \o page() is null
105 \o Calling this method with a null \a page will break the current association, if any.
106 \o If \a page is already associated to another QWebInspector, the association
110 \sa page()
112 void QWebInspector::setPage(QWebPage* page)
114 if (d->page) {
116 d->page->d->setInspector(0);
118 if (page && page->d->inspector && page->d->inspector != this)
135 QWebPage* QWebInspector::page() const function in class:QWebInspector
    [all...]
qgraphicswebview.cpp 57 , page(0)
76 QWebPage* page; member in class:QGraphicsWebViewPrivate
82 if (!page || !page->d->client)
89 return static_cast<WebCore::PageClientQGraphicsWidget*> (page->d->client.get());
107 // If the page had no title, still make sure it gets the signal
116 page = 0;
122 ASSERT(page);
126 if (!page->preferredContentsSize().isValid())
127 page->setPreferredContentsSize(QSize(960, 800))
262 QWebPage* QGraphicsWebView::page() const function in class:QGraphicsWebView
266 QWebPage* page = new QWebPage(that); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
QueuedOperation.h 36 QueuedOperation(OperationType type, TiledPage* page)
38 , m_page(page) {}
44 TiledPage* page() const { return m_page; } function in class:WebCore::QueuedOperation
58 PageFilter(TiledPage* page) : m_page(page) {}
61 if (operation->page() == m_page)
71 PagePaintFilter(TiledPage* page) : m_page(page) {}
75 && operation->page() == m_page)
  /external/webkit/Source/WebCore/platform/qt/
ScreenQt.cpp 36 #include "Page.h"
44 static QWidget* qwidgetForPage(const Page* page)
46 Frame* frame = (page ? page->mainFrame() : 0);
55 FloatRect screenRect(const Page* page)
57 QWidget* qw = qwidgetForPage(page);
69 int screenDepth(const Page* page)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.h 50 typedef void (*WKPageCallback)(WKPageRef page, const void* clientInfo);
53 typedef void (*WKPageDidStartProvisionalLoadForFrameCallback)(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo);
54 typedef void (*WKPageDidReceiveServerRedirectForProvisionalLoadForFrameCallback)(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo);
55 typedef void (*WKPageDidFailProvisionalLoadWithErrorForFrameCallback)(WKPageRef page, WKFrameRef frame, WKErrorRef error, WKTypeRef userData, const void *clientInfo);
56 typedef void (*WKPageDidCommitLoadForFrameCallback)(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo);
57 typedef void (*WKPageDidFinishDocumentLoadForFrameCallback)(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo);
58 typedef void (*WKPageDidFinishLoadForFrameCallback)(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo);
59 typedef void (*WKPageDidFailLoadWithErrorForFrameCallback)(WKPageRef page, WKFrameRef frame, WKErrorRef error, WKTypeRef userData, const void *clientInfo);
60 typedef void (*WKPageDidSameDocumentNavigationForFrameCallback)(WKPageRef page, WKFrameRef frame, WKSameDocumentNavigationType type, WKTypeRef userData, const void *clientInfo);
61 typedef void (*WKPageDidReceiveTitleForFrameCallback)(WKPageRef page, WKStringRef title, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
    [all...]
  /external/webkit/Source/WebKit/mac/WebInspector/
WebInspector.mm 38 #include <WebCore/Page.h>
64 if (Page* page = core(_webView))
65 page->inspectorController()->show();
70 if (Page* page = core(_webView))
71 page->inspectorController()->showConsole();
81 if (Page* page = core(_webView))
82 return page->inspectorController()->debuggerEnabled()
    [all...]
  /external/webkit/Tools/DumpRenderTree/qt/
WorkQueueItemQt.h 40 WorkQueueItem(QWebPage *page) : m_webPage(page) {}
50 LoadItem(const QString &url, const QString &target, QWebPage *page)
51 : WorkQueueItem(page)
69 LoadHTMLStringItem(const QString& content, const QString &baseURL, QWebPage *page)
70 : WorkQueueItem(page)
85 LoadAlternateHTMLStringItem(const QString& content, const QString& baseURL, const QString &failingURL, QWebPage *page)
86 : WorkQueueItem(page)
103 ReloadItem(QWebPage *page)
104 : WorkQueueItem(page)
    [all...]
  /bionic/libc/kernel/common/linux/
highmem.h 24 #define kunmap(page) do { (void) (page); } while (0)
25 #define kmap_atomic(page, idx) page_address(page)
  /development/ndk/platforms/android-3/include/linux/
highmem.h 24 #define kunmap(page) do { (void) (page); } while (0)
25 #define kmap_atomic(page, idx) page_address(page)
  /external/flac/libFLAC/include/private/
ogg_helper.h 38 void simple_ogg_page__init(ogg_page *page);
39 void simple_ogg_page__clear(ogg_page *page);
40 FLAC__bool simple_ogg_page__get_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderReadCallback read_callback, void *client_data);
41 FLAC__bool simple_ogg_page__set_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderWriteCallback write_callback, void *client_data);
  /external/webkit/Source/WebKit2/WebProcess/FullScreen/gtk/
WebFullScreenManagerGtk.cpp 29 WebFullScreenManagerGtk::WebFullScreenManagerGtk(WebPage* page)
30 : WebFullScreenManager(page)
34 PassRefPtr<WebFullScreenManager> WebFullScreenManager::create(WebPage* page)
36 return adoptRef(new WebFullScreenManagerGtk(page));

Completed in 1599 milliseconds

1 2 3 4 5 6 7 8 91011>>