HomeSort by relevance Sort by last modified time
    Searched full:page (Results 901 - 925 of 3599) sorted by null

<<31323334353637383940>>

  /external/webkit/WebCore/html/
HTMLFormControlElement.cpp 41 #include "Page.h"
348 if (document()->frame() && document()->frame()->page())
349 document()->frame()->page()->chrome()->client()->formDidFocus(this);
356 if (document()->frame() && document()->frame()->page())
357 document()->frame()->page()->chrome()->client()->formDidBlur(this);
  /external/webkit/WebCore/inspector/
InspectorController.h 77 class Page;
116 InspectorController(Page*, InspectorClient*);
128 Page* inspectedPage() const { return m_inspectedPage; }
313 Page* m_inspectedPage;
318 Page* m_page;
  /external/webkit/WebCore/plugins/symbian/
PluginViewSymbian.cpp 41 #include "Page.h"
190 if (Page* page = m_parentFrame->page())
191 page->focusController()->setActive(true);
  /external/webkit/WebKit/win/
WebFrame.h 56 class Page;
323 PassRefPtr<WebCore::Frame> init(IWebView*, WebCore::Page*, WebCore::HTMLFrameOwnerElement*);
359 void spoolPage (PlatformGraphicsContext* pctx, WebCore::GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate*, float headerHeight, float footerHeight, UINT page, UINT pageCount);
361 void drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate*, const WebCore::IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight);
371 int m_pageHeight; // height of the page adjusted by margins
  /external/webkit/WebKitTools/WinLauncher/
WinLauncher.cpp 358 for (size_t page = 1; page <= pageCount; ++page) {
360 framePrivate->spoolPages(printDC, page, page, graphicsContext);
  /hardware/libhardware/modules/gralloc/
framebuffer.cpp 45 // numbers of buffers for page flipping
188 * Request NUM_BUFFERS screens (at lest 2 for page flipping)
197 LOGW("FBIOPUT_VSCREENINFO failed, page flipping not supported");
201 // we need at least 2 for page-flipping
204 LOGW("page flipping not supported (yres_virtual=%d, requested=%d)",
  /external/grub/docs/
texinfo.tex 33 % http://www.gnu.org/software/texinfo/ (the Texinfo home page), or
59 % The GNU Texinfo home page is http://www.gnu.org/software/texinfo.
129 \ifx\putwordpage\undefined \gdef\putwordpage{page}\fi
281 \chardef\PAGE = 255
282 \output = {\onepageout{\pagecontents\PAGE}}
308 % the page break happens to be in the middle of an example.
310 % Do this early so pdf references go to the beginning of the page.
327 \hfil % center the page within the outer (page) hsize.
663 % @group ... @end group forces ... to be all on one page, by enclosin
    [all...]
  /external/v8/src/
mark-compact.h 36 // to the first live object in the page (only used for old and map objects).
67 // page as input, and is updated to contain the offset to be used for the
68 // next live object in the same page. For spaces using a different
269 // eached paged-space page that contains live objects after
272 // The 3rd word of the page (first word of the remembered
275 // the page after compaction.
277 // The 4th word contains the zero-based index of the page in
283 // of the first live object in the page.
335 // page containing live objects still contains bookkeeping
359 // paged-space page containing live objects still contain
    [all...]
serialize.cc 522 size <= Page::kPageSize - Page::kObjectStartOffset);
535 ASSERT(size > Page::kPageSize - Page::kObjectStartOffset);
572 // Large spaces have one object per 'page'.
583 (offset & Page::kPageAlignmentMask);
641 // time we need to use it to mark the space at the end of a page free (by
    [all...]
  /external/bison/build-aux/
texinfo.tex 33 % http://www.gnu.org/software/texinfo/ (the Texinfo home page), or
59 % The GNU Texinfo home page is http://www.gnu.org/software/texinfo.
129 \ifx\putwordpage\undefined \gdef\putwordpage{page}\fi
289 \chardef\PAGE = 255
290 \output = {\onepageout{\pagecontents\PAGE}}
315 % Do this early so pdf references go to the beginning of the page.
332 \hfil % center the page within the outer (page) hsize.
683 % @group ... @end group forces ... to be all on one page, by enclosing
692 % cause the glue on the previous page to be unduly stretched, because i
    [all...]
  /external/qemu/hw/
dma.c 42 uint8_t page; member in struct:dma_regs
91 d->regs[ichan].page = data;
117 return d->regs[ichan].page;
404 target_phys_addr_t addr = ((r->pageh & 0x7f) << 24) | (r->page << 16) | r->now[ADDR];
426 target_phys_addr_t addr = ((r->pageh & 0x7f) << 24) | (r->page << 16) | r->now[ADDR];
521 qemu_put_8s (f, &r->page);
549 qemu_get_8s (f, &r->page);
  /external/webkit/WebCore/page/
Settings.cpp 34 #include "Page.h"
42 static void setNeedsReapplyStylesInAllFrames(Page* page)
44 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext())
56 Settings::Settings(Page* page)
57 : m_page(page)
  /external/webkit/WebKit/chromium/src/
WebDevToolsFrontendImpl.cpp 47 #include "Page.h"
243 // Grant the devtools page the ability to have source view iframes.
244 Page* page = V8Proxy::retrieveFrameForEnteredContext()->page(); local
245 SecurityOrigin* origin = page->mainFrame()->domWindow()->securityOrigin();
389 ContextMenuController* menuController = frontend->m_webViewImpl->page()->contextMenuController();
WebPageSerializerImpl.cpp 42 // c) We comment all base tags when serialzing DOM for the page.
48 // For example. The page "www.yahoo.com" use
50 // of page when loading page. So when saving page as completed-HTML, we assume
52 // completed-HTML page, then the JavaScript will insert a base tag
56 // files can not be loaded correctly. Also the page will be rendered ugly since
73 // they are added by JavaScript, it means when loading saved page, the script(s)
107 // contegious string is found in the page.
502 // Go through all frames for serializing DOM for whole page, includ
    [all...]
  /external/webkit/WebKit/haiku/WebCoreSupport/
FrameLoaderClientHaiku.cpp 42 #include "Page.h"
723 RefPtr<Frame> childFrame = Frame::create(m_frame->page(), ownerElement, this);
830 Page* page = m_frame->page(); local
831 ASSERT(page);
833 bool isMainFrame = m_frame == page->mainFrame();
  /hardware/ti/omap3/dspbridge/inc/
mem.h 49 *! require phys address to be page aligned!
87 * MEM_NONPAGED: Allocate from page locked memory.
157 * MEM_NONPAGED: Allocate from page locked memory.
356 * A pointer to linear page locked memory;
361 * be locked, since the page count is derived from this number.
412 * physical address based on the page frame address.
427 * physical address based on the page frame address.
  /hardware/ti/omap3/dspbridge/libbridge/inc/
mem.h 49 *! require phys address to be page aligned!
87 * MEM_NONPAGED: Allocate from page locked memory.
157 * MEM_NONPAGED: Allocate from page locked memory.
356 * A pointer to linear page locked memory;
361 * be locked, since the page count is derived from this number.
412 * physical address based on the page frame address.
427 * physical address based on the page frame address.
  /external/webkit/WebKit/gtk/webkit/
webkitwebsettings.cpp 404 _("The URI of a stylesheet that is applied to every page."),
680 * Whether the tab key cycles through elements on the page.
693 _("Whether the tab key cycles through elements on the page."),
704 * clicks for other reasons, such as in-page context menus, or
705 * right-clicks that are handled by the page itself.
740 * WebKitWebSettings:enable-page-cache:
742 * Enable or disable the page cache. Disabling the page cache is
    [all...]
webkitwebview.cpp 206 Page* page = core(webView); local
207 page->contextMenuController()->clearContextMenu();
208 Frame* focusedFrame = page->focusController()->focusedOrMainFrame();
220 // wants to consume the event - this happens when the page is
223 ContextMenu* coreMenu = page->contextMenuController()->contextMenu();
274 Page* page = core(WEBKIT_WEB_VIEW(widget)); local
275 FrameView* view = page->mainFrame()->view();
279 Position start = page->mainFrame()->selection()->selection().start()
2617 Page* page = core(webView); local
2709 Page* page = core(webView); local
3070 Page* page = core(webView); local
    [all...]
  /external/webkit/WebCore/dom/
Document.cpp 100 #include "Page.h"
327 static bool disableRangeMutation(Page* page)
332 return page && (page->settings()->needsLeopardMailQuirks() || page->settings()->needsTigerMailQuirks());
720 || (importedNode->isSVGElement() && page() && page()->settings()->usesDashboardBackwardCompatibilityMode())
1273 Page* Document::page() const function in class:WebCore::Document
    [all...]
Element.cpp 49 #include "Page.h"
536 if (Page* page = document()->page()) {
537 if (InspectorController* inspectorController = page->inspectorController()) {
565 if (Page* page = document()->page()) {
566 if (InspectorController* inspectorController = page->inspectorController()) {
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebPDFView.mm 661 PDFPage *page;
662 while ((page = [pages nextObject]) != nil) {
665 if (![visiblePages containsObject:page])
668 NSRect selectionOnPageInPDFViewCoordinates = [PDFSubview convertRect:[match boundsForPage:page] fromPage:page];
763 } // else in continuous modes, scroll position gets us to the right page
782 } // else in continuous modes, scroll position gets us to the right page
828 PDFPage *page;
829 while ((page = [pages nextObject]) != nil) {
830 NSRect selectionOnPageInPDFViewCoordinates = [PDFSubview convertRect:[selection boundsForPage:page] fromPage:page]
    [all...]
  /external/jdiff/src/jdiff/
HTMLFiles.java 135 // Write a customized navigation bar for the help page
181 h_.writeText("This help page describes the different parts of the output from JDiff.");
185 h_.writeText(" See the reference page in the <a href=\"" + JDiff.jDiffLocation + "\">source for JDiff</a> for information about how to generate a report like this one.");
199 h_.writeText("You can always tell when you are reading a JDiff page, rather than a Javadoc page, by the color of the index bar and the color of the background. ");
200 h_.writeText("Links which take you to a Javadoc page are always in a <tt>typewriter</tt> font. ");
206 h_.writeText("This is a link to the <a href=\"" + h_.newDocPrefix + "index.html\" target=\"_top\">top-level</a> Javadoc page for the new version of the product.");
234 h_.writeText("This is a link to a page which shows statistics about the changes between the two APIs.");
240 h_.writeText("A link to this Help page for JDiff.");
282 //h_.writeText("/* Page background color */")
    [all...]
  /external/qemu/memcheck/
memcheck.c 243 * page boundaries, marching into a page that has not been mapped to the
272 // Beginning of the page containing last byte in range.
274 // Adjust beginning of the range to the beginning of the page.
575 * 1 if TLB record for the accessed page should be invalidated in order to
576 * ensure that subsequent attempts to access data in this page will cause
578 * access to this page, this routine returns 0.
610 * 1 if TLB record for the accessed page should be invalidated in order to
611 * ensure that subsequent attempts to access data in this page will cause
613 * access to this page, this routine returns 0
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebsettings.cpp 30 #include "Page.h"
253 settings for that page. If a setting is not configured, then it is looked
263 QWebSettings also configures global properties such as the Web page memory
264 cache and the Web page icon database, local database storage and offline
342 recording visited pages in the history and storing web page icons.
356 are also drawn when the page is printed.
461 Specifies the location of a user stylesheet to load with every web page.
629 as page, object and font cache.
637 // by some Web page though.
657 Sets the maximum number of pages to hold in the memory page cache to \a pages
    [all...]

Completed in 424 milliseconds

<<31323334353637383940>>