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

<<21222324252627282930>>

  /packages/apps/Browser/res/values-fr/
strings.xml 42 <string name="page_info" msgid="4048529256302257195">"Infos sur la page"</string>
43 <string name="page_info_view" msgid="5303490449842635158">"Afficher les infos sur la page"</string>
75 <string name="create_shortcut_bookmark" msgid="9202323987633899835">"Raccourci (page d\'accueil)"</string>
80 <string name="set_as_homepage" msgid="4752937379414905560">"Définir comme page d\'accueil"</string>
83 <string name="homepage_set" msgid="8768087280310966395">"La page d\'accueil a été définie."</string>
89 <string name="bookmark_page" msgid="6845189305130307274">"Ajouter la dernière page consultée"</string>
96 <string name="find_dot" msgid="6259312434696611957">"Rechercher sur la page"</string>
104 <string name="copy_page_url" msgid="7635062169011319208">"Copier l\'URL de la page"</string>
105 <string name="share_page" msgid="593756995297268343">"Partager la page"</string>
125 <string name="pref_content_title" msgid="722227111894838633">"Paramètres du contenu de la page"</string
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java 101 * Page number of the page displayed in this view.
106 * Active candidate position in this page.
118 * The page which is just calculated.
195 * be some extra space after the last candidate in the current page. In
207 * Rectangles for the candidates in this page.
312 * Show a page in the decoding result set previously.
314 * @param pageNo Which page to show.
404 // When the size is changed, the first page will be displayed.
419 // If the size of page exists, only calculate the extra margin
    [all...]
  /external/yaffs2/yaffs2/
yaffs_fs.c 58 #define Page_Uptodate(page) test_bit(PG_uptodate, &(page)->flags)
165 static int yaffs_readpage(struct file *file, struct page *page);
167 static int yaffs_writepage(struct page *page, struct writeback_control *wbc);
169 static int yaffs_writepage(struct page *page);
171 static int yaffs_prepare_write(struct file *f, struct page *pg,
173 static int yaffs_commit_write(struct file *f, struct page *pg, unsigned offset
    [all...]
  /external/webkit/WebCore/page/
Frame.cpp 63 #include "Page.h"
132 Frame::Frame(Page* page, HTMLFrameOwnerElement* ownerElement, FrameLoaderClient* frameLoaderClient)
133 : m_page(page)
179 page->setMainFrame(this);
181 page->incrementFrameCount();
623 page()->focusController()->setFocusedNode(anchor, this);
639 page()->focusController()->setFocusedNode(target, this);
650 page()->focusController()->setFocusedNode(0, this);
715 // Update the scroll position when doing a full page zoom, so the content stays in relatively the same position
1590 Page* Frame::page() const function in class:WebCore::Frame
    [all...]
Chrome.cpp 37 #include "Page.h"
58 Chrome::Chrome(Page* page, ChromeClient* client)
59 : m_page(page)
162 Page* Chrome::createWindow(Frame* frame, const FrameLoadRequest& request, const WindowFeatures& features) const
164 Page* newPage = m_client->createWindow(frame, request, features);
  /external/tremolo/Tremolo/
vorbisfile.c 117 /* from the head of the stream, get the next page. boundary specifies
123 n) search for a new page beginning for n bytes
125 return: <0) did not find a page (OV_FALSE, OV_EOF, OV_EREAD)
126 n) found a page at absolute offset n
128 produces a refcounted page */
152 /* got a page. Return the offset at the page beginning,
153 advance the internal offset past the page end */
163 /* find the latest page beginning before the current stream cursor
167 /* returns offset or OV_EREAD, OV_FAULT and produces a refcounted page */
    [all...]
  /external/webkit/WebKit/chromium/src/
WebViewImpl.cpp 68 #include "Page.h"
129 // The group name identifies a namespace of pages. Page group is used on OSX
132 // one page group.
135 // Used to defer all page activity in cases where the embedder wishes to run
153 // activated. We need the page to still have focus so the user can keep typing
176 Page::visitedStateChanged(PageGroup::pageGroup(pageGroupName), linkHash);
181 Page::allVisitedStateChanged(PageGroup::pageGroup(pageGroupName));
193 // Pick any page in the page group since we are deferring all pages.
257 // the page will take ownership of the various client
    [all...]
ChromeClientImpl.cpp 50 #include "Page.h"
121 // We hide the details of the window's border thickness from the web page by
123 // the web page, the window has no border.
129 // This is supposed to return the scale factor of the web page. It looks like
133 // so that things drawn in it are scaled just like the web page is.
210 Page* ChromeClientImpl::createWindow(
228 return newView->page();
380 // Make sure this Page can no longer be found by JS.
381 m_webView->page()->setGroupName(String());
WebPluginContainerImpl.cpp 61 #include "Page.h"
349 if (Page* currentPage = containingFrame->page())
377 Page* page = parentView->frame()->page(); local
378 if (!page)
381 static_cast<ChromeClientImpl*>(page->chrome()->client());
505 // page. In a nutshell, iframe elements should occlude plugins when
WebViewImpl.h 58 class Page;
197 static WebViewImpl* fromPage(WebCore::Page*);
204 // Returns the page object associated with this view. This may be null when
205 // the page is shutting down, but will be valid at all other times.
206 WebCore::Page* page() const function in class:WebKit::WebViewImpl
214 // the page is shutting down, but will be valid at all other times.
261 // Determines whether a page should e.g. be opened in a background tab.
336 OwnPtr<WebCore::Page> m_page;
DebuggerAgentManager.cpp 89 s_pageDeferrers.set(agent->webView(), new WebCore::PageGroupLoadDeferrer(agent->page(), true));
296 WebCore::Page* page = frame->page();
298 if (it->second->page() == page)
  /external/qemu/distrib/sdl-1.2.12/src/video/svga/
SDL_svgavideo.c 414 /* length of one screen page in bytes */
463 /* We need to wait for vertical retrace on page flipped displays */
494 int page, vp; local
511 page = vp >> 16;
513 vga_setpage(page);
517 page++;
518 vga_setpage(page);
522 page++;
523 vga_setpage(page);
  /external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 49 #include "Page.h"
50 #include "Page.h"
218 // const Selection &selection = m_page->d->page->selection();
225 Frame* frame = m_page->d->page->focusController()->focusedOrMainFrame();
259 Frame* frame = m_page->d->page->focusController()->focusedOrMainFrame();
358 Frame* frame = m_page->d->page->focusController()->focusedOrMainFrame();
520 EditorClientQt::EditorClientQt(QWebPage* page)
521 : m_page(page), m_editing(false), m_inUndoRedo(false)
619 Frame* frame = m_page->d->page->focusController()->focusedOrMainFrame();
  /external/webkit/WebCore/plugins/
PluginView.cpp 47 #include "Page.h"
218 if (!m_parentFrame->page())
224 if (!m_loadManually && !m_parentFrame->page()->canStartPlugins()) {
225 m_parentFrame->page()->addUnstartedPlugin(this);
288 if (parentFrame()->page())
289 parentFrame()->page()->didStartPlugin(this);
329 if (!m_parentFrame->page())
332 m_parentFrame->page()->removeUnstartedPlugin(this);
340 if (parentFrame()->page())
341 parentFrame()->page()->didStopPlugin(this)
    [all...]
  /external/webkit/WebCore/rendering/
RenderLayerCompositor.cpp 40 #include "Page.h"
115 // We never go out of compositing mode for a given page,
154 Page* page = frame ? frame->page() : 0; local
155 if (!page)
158 page->chrome()->client()->scheduleCompositingLayerSync();
927 Page* page = frame ? frame->page() : 0; local
941 Page* page = frame ? frame->page() : 0; local
    [all...]
  /external/webkit/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp 675 m_page = m_view->page();
2083 QWebPage page; local
2259 QWebPage page; local
2308 QWebPage page; local
2320 QWebPage page; local
2343 QWebPage page; local
2384 QWebPage page; local
2519 QWebPage page; local
2550 QWebPage page; local
2561 QWebPage page; local
2571 QWebPage page; local
2584 QWebPage page; local
2596 QWebPage page; local
2690 QWebPage page; local
2725 QWebPage page; local
    [all...]
  /external/v8/src/
mark-compact.cc 127 Page::set_rset_state(Page::NOT_IN_USE);
854 // Any valid map page offset must lie in the object area of the page, so map
855 // page offsets less than Page::kObjectStartOffset are invalid. We use a
857 // words) to indicate free regions in the page found during computation of
    [all...]
  /external/webkit/WebKit/android/jni/
WebCoreFrameBridge.cpp 63 #include "Page.h"
205 WebFrame::WebFrame(JNIEnv* env, jobject obj, jobject historyList, WebCore::Page* page)
206 : mPage(page)
549 // send it along with the page started notification.
879 WebCore::Page* page = new WebCore::Page(chromeC, local
963 WebCore::Page* page = pFrame->page(); local
1146 WebCore::Page* page = pFrame->page(); local
    [all...]
  /external/bluetooth/bluez/src/
hcid.conf.5.in 51 \fInoscan\fP means that page and inquiry scans are disabled when you call
180 Bluetooth devices discover and connect to each other through the use of two special Bluetooth channels, the Inquiry and Page channels (described in the Bluetooth Spec Volume 1, Part A, Section 3.3.3, page 35). These two options enable the channels on the bluetooth device.
184 \fBpscan enable\fP: makes the bluetooth device "connectable to" by enabling the use of the "page scan" channel.
214 Page Timeout measured in number of baseband slots. Interval length = N * 0.625 msec (1 baseband slot)
227 This manual page was written by Edouard Lafargue, Fredrik Noring, Maxim Krasnyansky and Marcel Holtmann.
  /external/oprofile/daemon/
opd_ibs_macro.h 202 * the fetch latency, which is a 16-bit cycle count, and the fetch page size
218 /** Bits 54:53 IbsL1TlbPgSz: instruction cache L1TLB page size. */
304 /** 4 IbsDcL1tlbHit2M: Data cache L1TLB hit in 2M page */
307 /** 5 ibs_dc_l1_tlb_hit_1gb: Data cache L1TLB hit in 1G page */
310 /** 6 ibs_dc_l2_tlb_hit_2mb: Data cache L2TLB hit in 2M page */
349 /** 19 ibs_dc_l2_tlb_hit_1gb: Data cache L2TLB hit in 1G page */
  /frameworks/base/core/java/android/webkit/
WebViewClient.java 44 * Notify the host application that a page has started loading. This method
45 * is called once for each main frame load so a page with iframes or
52 * @param favicon The favicon for this page if it already exists in the
59 * Notify the host application that a page has finished loading. This method
65 * @param url The url of the page.
144 * requested page was a result of a POST. The default is to not resend the
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditor.java 55 * Multi-page form editor for AndroidManifest.xml.
65 /** The Application Page tab */
67 /** The Overview Manifest Page tab */
69 /** The Permission Page tab */
71 /** The Instrumentation Page tab */
138 AdtPlugin.log(e, "Error creating nested page"); //$NON-NLS-1$
  /external/v8/test/cctest/
test-serialize.cc 597 int old_page_fullness = i % Page::kPageSize;
598 int page_fullness = (i + kSmallFixedArraySize) % Page::kPageSize;
600 page_fullness > Page::kObjectAreaSize) {
601 i = RoundUp(i, Page::kPageSize);
614 int old_page_fullness = i % Page::kPageSize;
615 int page_fullness = (i + kSmallStringSize) % Page::kPageSize;
617 page_fullness > Page::kObjectAreaSize) {
618 i = RoundUp(i, Page::kPageSize);
631 int old_page_fullness = i % Page::kPageSize;
632 int page_fullness = (i + kMapSize) % Page::kPageSize
    [all...]
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginView.mm 56 #import <WebCore/Page.h>
426 Page* page = frame->page();
427 if (!page)
430 bool wasDeferring = page->defersLoading();
432 page->setDefersLoading(true);
437 page->setDefersLoading(false);
445 page->didStartPlugin(_haltable.get());
476 if (Page* page = frame->page()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiClassAttributeNode.java 517 // create the wizard page for the class creation, and configure it
518 NewClassWizardPage page = new NewClassWizardPage();
521 page.setSuperClass(mReferenceClass, true /* canBeModified */);
573 page.setPackageFragmentRoot(currentRoot, true /* canBeModified*/);
574 page.setPackageFragment(currentFragment, true /* canBeModified */);
605 // set the root and fragment in the Wizard page
606 page.setPackageFragmentRoot(currentRoot, true /* canBeModified*/);
607 page.setPackageFragment(createdFragments.get(createdFragments.size()-1),
618 page.setPackageFragmentRoot(root, true /* canBeModified*/);
619 page.setPackageFragment(fragment, true /* canBeModified */)
    [all...]

Completed in 807 milliseconds

<<21222324252627282930>>