/external/webkit/WebKit/qt/Api/ |
qwebinspector.cpp | 36 The inspector allows you to see a page current hierarchy and loading 47 \o page() is null 97 Calling with \a page as null will break the current association, if any. 99 If \a page is already associated to another QWebInspector, the association 100 will be replaced and the previous QWebInspector will have no page 103 \sa page() 105 void QWebInspector::setPage(QWebPage* page) 107 if (d->page) { 109 d->page->d->setInspector(0); 111 if (page && page->d->inspector && page->d->inspector != this) 128 QWebPage* QWebInspector::page() const function in class:QWebInspector [all...] |
/external/webkit/WebCore/storage/ |
StorageEventDispatcher.cpp | 34 #include "Page.h" 43 Page* page = sourceFrame->page(); local 44 if (!page) 47 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree 48 // of any given page in the group or mutate the page group itself. 51 // Send events only to our page. 52 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext()) [all...] |
/external/kernel-headers/original/linux/ |
gfp.h | 39 #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, int order) { [all...] |
/external/webkit/WebCore/page/ |
PageGroup.cpp | 33 #include "Page.h" 63 PageGroup::PageGroup(Page* page) 67 ASSERT(page); 68 addPage(page); 112 void PageGroup::addPage(Page* page) 114 ASSERT(page); 115 ASSERT(!m_pages.contains(page)); 116 m_pages.add(page); 194 Page* page = *m_pages.begin(); local [all...] |
Page.cpp | 22 #include "Page.h" 90 static HashSet<Page*>* allPages; 93 static WTF::RefCountedLeakCounter pageCounter("Page"); 100 // Get all the frames of all the pages in all the page groups 101 HashSet<Page*>::iterator end = allPages->end(); 102 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) { 115 HashSet<Page*>::iterator end = allPages->end(); 116 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) { 123 Page::Page(ChromeClient* chromeClient, ContextMenuClient* contextMenuClient, EditorClient* editorClient, Drag (…) 655 Page* page = *it; local 673 Page* page = *it; local [all...] |
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/v8/src/ |
spaces-inl.h | 46 Page* PageIterator::next() { 56 // Page 58 Page* Page::next_page() { 63 Address Page::AllocationTop() { 69 void Page::ClearRSet() { 76 // | page address | words (6) | bit offset (5) | pointer alignment (2) | 80 // | page address | words(5) | bit offset(5) | pointer alignment (3) | 86 Address Page::ComputeRSetBitPosition(Address address, int offset, 88 ASSERT(Page::is_rset_in_use()) 90 Page* page = Page::FromAddress(address); local 304 Page* page = Page::FromAddress(RoundUp(address(), Page::kPageSize)); local [all...] |
/system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/ |
proc_stat.c | 48 int proc_stat_res_read_proc(char *page, char **start, off_t off, int count, int *eof, void *data); 59 int proc_stat_res_read_proc(char *page, char **start, off_t off, int count, int *eof, void *data) 68 len += (len<count)?sprintf(page+len,"-------------- STA Health Configuration ---------------\n"):0; 69 len += (len<count)?sprintf(page+len,"Full recovery enabled = %d\n",pHealthMonitor->bFullRecoveryEnable):0; 70 len += (len<count)?sprintf(page+len,"Timer interval = %d msec\n",pHealthMonitor->timerInterval):0; 71 len += (len<count)?sprintf(page+len,"\n"):0; 74 len += (len<count)?sprintf(page+len,"-------------- STA Health Failure Statistics ---------------\n"):0; 75 len += (len<count)?sprintf(page+len,"Health test perfomred = %d\n",pHealthMonitor->numOfHealthTests):0; 76 len += (len<count)?sprintf(page+len,"Full recovery performed = %d\n",pHealthMonitor->numOfRecoveryPerformed):0; 77 len += (len<count)?sprintf(page+len,"No scan complete failure = %d\n",pHealthMonitor->recoveryTriggersNumber[ NO_SCAN_COMPLETE_F (…) [all...] |
/development/simulator/app/ |
Resource.h | 56 IDC_SPREFS_CONFIG_NAME, // sim prefs page - textctrl 57 IDC_SPREFS_DEBUGGER, // sim prefs page - textctrl 58 IDC_SPREFS_VALGRINDER, // sim prefs page - textctrl 59 IDC_SPREFS_AUTO_POWER_ON, // sim prefs page - checkbox 61 IDC_RPREFS_GAMMA, // runtime prefs page - textctrl 62 IDC_RPREFS_ENABLE_SOUND, // runtime prefs page - checkbox 63 IDC_RPREFS_ENABLE_FAKE_CAMERA,// runtime prefs page - checkbox
|
/external/webkit/WebKit/qt/docs/webkitsnippets/webpage/ |
main.cpp | 39 QWebPage page; member in class:Thumbnailer 59 page.mainFrame()->load(url); 60 connect(&page, SIGNAL(loadFinished(bool)), 68 page.setViewportSize(page.mainFrame()->contentsSize()); 69 QImage image(page.viewportSize(), QImage::Format_ARGB32); 72 page.mainFrame()->render(&painter);
|
/packages/apps/Browser/src/com/android/browser/ |
LogTag.java | 35 * Log when a page has finished loading with how much 36 * time the browser used to load the page. 39 * always how long it takes for the user to load a page. 41 * @param url the url of that page that finished loading. 42 * @param duration the time the browser spent loading the page. 52 * @param url the url of the page that is being logged (old page).
|
/external/webkit/WebKitTools/QtLauncher/ |
mainwindow.cpp | 56 bar->addAction(page()->action(QWebPage::Back)); 57 bar->addAction(page()->action(QWebPage::Forward)); 58 bar->addAction(page()->action(QWebPage::Reload)); 59 bar->addAction(page()->action(QWebPage::Stop)); 74 connect(page()->mainFrame(), SIGNAL(titleChanged(const QString&)), 76 connect(page(), SIGNAL(loadProgress(int)), urlEdit, SLOT(setProgress(int))); 77 connect(page(), SIGNAL(windowCloseRequested()), this, SLOT(close())); 80 page()->action(QWebPage::Back)->setShortcut(QKeySequence::Back); 81 page()->action(QWebPage::Stop)->setShortcut(Qt::Key_Escape); 82 page()->action(QWebPage::Forward)->setShortcut(QKeySequence::Forward) 95 WebPage* MainWindow::page() function in class:MainWindow [all...] |
/external/webkit/WebCore/accessibility/win/ |
AXObjectCacheWin.cpp | 33 #include "Page.h" 71 Page* page = document->page(); 72 if (!page || !page->chrome()->platformPageClient()) 103 NotifyWinEvent(msaaEvent, page->chrome()->platformPageClient(), OBJID_CLIENT, -static_cast<LONG>(obj->axObjectID())); 130 Page* page = newFocusedRenderer->document()->page(); [all...] |
/external/webkit/WebKit/qt/tests/qgraphicswebview/ |
tst_qgraphicswebview.cpp | 45 item.page(); 47 item.page(); 83 WebPage* page = new WebPage; local 84 webView->setPage(page); 85 page->webView = webView; 86 connect(page->mainFrame(), SIGNAL(initialLayoutCompleted()), page, SLOT(aborting())); 96 page->mainFrame()->setHtml(QString("data:text/html," 102 QVERIFY(waitForSignal(page, SIGNAL(loadFinished(bool))));
|
/external/libffi/testsuite/libffi.call/ |
ffitest.h | 50 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/libffi/testsuite/libffi.special/ |
ffitestcxx.h | 50 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 == MAP_FAILED) 83 return page;
|
/external/webkit/WebCore/manual-tests/ |
tabbing-input-google.html | 7 <p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=8181">8181</a> REGRESSION: After tabbing in page's field, attempting to tab from Google toolbar search to page fails on first try</p> 11 2) Hit tab until focus cycles through the text fields in the page, and comes back to the Google field.<br> 16 The first text field in the page should have focus. 20 The first text field in the page does not have focus.
|
/frameworks/base/core/res/res/raw-fr/ |
nodomain.html | 3 <title>Page Web non disponible</title> 12 <h2>Page Web non disponible</h2> 13 <p>La page Web à l'adresse <a href="%s">%s</a> est peut-être temporairement inaccessible ou a été déplacée définitivement vers une nouvelle adresse Web.</p> 18 <li>rechargez cette page Web ultérieurement ;</li> 19 <li>affichez une copie en cache de la page Web à partir de Google.</li>
|
/external/skia/src/images/ |
fpdfemb.h | 23 // by ever-growing cache. For example, when user browses a 1000-page 24 // document, let's say OOM happen at page #300. In this case, the 26 // it), reopen the document, then go directly to page #300. It's likely 40 // FPDFEMB SDK allows progressive page parsing and rendering, the most time- 49 // * Page Basic Operations 50 // * Page Parsing 51 // * Page Rendering 493 // Function: Get page count 516 **** Page Basic Operations 523 // Load a page [all...] |
/cts/tests/assets/webkit/ |
test_firstPage.html | 17 <title>First page</title> 19 <h1>First page</h1> 20 <a herf="webView_goBackAndForward_test_secondPage.html">Go to second page</a>
|
test_secondPage.html | 17 <title>Second page</title> 19 <h1>Second page</h1> 20 <a herf="webView_goBackAndForward_test_thirdPage.html">Go to third page</a>
|
/frameworks/base/core/res/res/raw/ |
loaderror.html | 4 <title>Web page not available</title> 13 <h2>Web page not available</h2> 14 <p>The Web page at <a href="%s">%s</a> could not be loaded as:</p>
|
/bionic/libc/kernel/arch-arm/asm/ |
memory.h | 80 #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT) 82 #define page_to_dma(dev, page) ((dma_addr_t)__virt_to_bus((unsigned long)page_address(page))) 86 #define page_to_dma(dev, page) (__arch_page_to_dma(dev, page))
|
/ndk/build/platforms/android-3/arch-arm/usr/include/asm/ |
memory.h | 80 #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT) 82 #define page_to_dma(dev, page) ((dma_addr_t)__virt_to_bus((unsigned long)page_address(page))) 86 #define page_to_dma(dev, page) (__arch_page_to_dma(dev, page))
|
/ndk/build/platforms/android-4/arch-arm/usr/include/asm/ |
memory.h | 80 #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT) 82 #define page_to_dma(dev, page) ((dma_addr_t)__virt_to_bus((unsigned long)page_address(page))) 86 #define page_to_dma(dev, page) (__arch_page_to_dma(dev, page))
|