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

<<11121314151617181920>>

  /external/webkit/WebCore/manual-tests/
redraw-page-cache-visited-links.html 27 <div><a href="http://bugs.webkit.org/show_bug.cgi?id=8079">Bug 8079 REGRESSION: Redraw from page cache does not show visited links</a></div>
30 <li><a id="mylink" href="./resources/redraw-page-cache-visited-links-2.html">Click This Link Once</a><br><br>
  /external/webkit/WebCore/page/
PageGroupLoadDeferrer.h 29 class Page;
33 PageGroupLoadDeferrer(Page*, bool deferSelf);
  /external/webkit/WebKit/qt/Api/
qwebinspector.h 36 void setPage(QWebPage* page);
37 QWebPage* page() const;
qwebinspector_p.h 34 , page(0)
42 QWebPage* page; member in class:QWebInspectorPrivate
qwebframe_p.h 45 QWebFrameData(WebCore::Page*, WebCore::Frame* parentFrame = 0,
52 WebCore::Page* page; member in class:QWebFrameData
70 , page(0)
95 QWebPage *page; member in class:QWebFramePrivate
  /external/yaffs2/yaffs2/
yaffs_ecc.h 21 * The ECC can correct single bit errors in a 256-byte page of data. Thus, two such ECC
22 * blocks are used on a 512-byte NAND page.
  /frameworks/base/core/java/android/webkit/
ConsoleMessage.java 22 * <code>console.log('...')</code>) or a JavaScript error on the page. To receive notifications
28 // This must be kept in sync with the WebCore enum in WebCore/page/Console.h
  /packages/apps/Email/tests/src/com/android/exchange/
TagsTests.java 32 for (String[] page: allTags) {
33 for (String tag: page) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringWizard.java 23 * A wizard for ExtractString based on a simple dialog with one page.
33 * Create a wizard for ExtractString based on a simple dialog with one page.
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_roboswitch.c 33 #define ROBO_MII_PAGE 0x10 /* MII page register */
37 #define ROBO_MII_PAGE_ENABLE 0x01 /* MII page op code */
43 /* Page numbers */
44 #define ROBO_ARLCTRL_PAGE 0x04 /* ARL control page */
45 #define ROBO_VLAN_PAGE 0x34 /* VLAN page */
47 /* ARL control page registers */
54 /* VLAN page registers */
127 u8 page, u8 reg, u8 op)
131 /* set page number */
133 (page << 8) | ROBO_MII_PAGE_ENABLE)
    [all...]
  /external/kernel-headers/original/linux/
nfs_xdr.h 245 struct page ** pages;
264 struct page ** pages;
336 struct page ** acl_pages;
343 struct page ** acl_pages;
371 struct page ** pages;
377 struct page ** pages;
385 struct page ** pages;
397 struct page ** pages;
474 struct page ** pages;
492 struct page ** pages
713 struct page *page; member in struct:nfs4_fs_locations_arg
    [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptState.cpp 36 #include "Page.h"
62 // Skip proxy object. The proxy object will survive page navigation while we need
108 ScriptState* scriptStateFromPage(DOMWrapperWorld*, Page* page)
111 return mainWorldScriptState(page->mainFrame());
  /external/webkit/WebCore/page/android/
EventHandlerAndroid.cpp 35 #include "Page.h"
49 if (Page* page = m_frame->page())
50 page->focusController()->setFocusedFrame(m_frame);
  /external/webkit/WebCore/page/gtk/
EventHandlerGtk.cpp 37 #include "Page.h"
55 if (Page* page = m_frame->page())
56 page->focusController()->setFocusedFrame(m_frame);
  /external/webkit/WebCore/page/wx/
EventHandlerWx.cpp 36 #include "Page.h"
105 if (Page* page = m_frame->page())
106 page->focusController()->setFocusedFrame(m_frame);
  /external/webkit/WebCore/platform/
PlatformWheelEvent.h 65 // The ScrollByPageWheelEvent indicates that the wheel event should scroll an entire page. In this case WebCore's built in paging behavior is used to page
66 // up and down (you get the same behavior as if the user was clicking in a scrollbar track to page up or page down). Page scrolling only works in the vertical direction.
  /external/webkit/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 30 #include "Page.h"
110 void setPage(Page* page) { m_page = page; }
114 Page* m_page;
  /external/webkit/WebKit/qt/tests/hybridPixmap/
widget.cpp 37 ui->webView->page()->mainFrame()->addToJavaScriptWindowObject("myWidget", this);
42 connect(ui->webView->page()->mainFrame(), SIGNAL(javaScriptWindowObjectCleared()), this, SLOT(refreshJS()));
43 ui->webView->page()->mainFrame()->addToJavaScriptWindowObject("myWidget", this);
50 QCOMPARE(ui->lbl2->size().width(), ui->webView->page()->mainFrame()->findFirstElement("#img1").evaluateJavaScript("this.width").toInt());
51 QCOMPARE(ui->lbl3->size().width(), ui->webView->page()->mainFrame()->findFirstElement("#img2").evaluateJavaScript("this.width").toInt());
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
ISettingsPage.java 23 * Interface that a settings page must implement.
62 /** Loads settings from the given {@link Properties} container and update the page UI. */
70 * Called by the application to give a callback that the page should invoke when
81 * Invoked by the settings page when settings have changed and need to be
85 public abstract void onSettingsChanged(ISettingsPage page);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
SimpleWikiHelper.java 51 * Wiktionary page. Use {@link String#format(String, Object...)} to insert
52 * the desired page title after escaping it as needed.
60 * any templates found on the requested page. This is useful when browsing
126 * Read and return the content for a specific Wiktionary page. This makes a
127 * lightweight API call, and trims out just the page content returned.
131 * @param title The exact title of the Wiktionary page requested.
133 * @return Exact content of page.
139 // Encode page title and expand templates if requested
151 JSONObject page = pages.getJSONObject((String) pages.keys().next()); local
152 JSONArray revisions = page.getJSONArray("revisions")
    [all...]
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
SimpleWikiHelper.java 58 * Wiktionary page. Use {@link String#format(String, Object...)} to insert
59 * the desired page title after escaping it as needed.
67 * any templates found on the requested page. This is useful when browsing
133 * Read and return the content for a specific Wiktionary page. This makes a
134 * lightweight API call, and trims out just the page content returned.
138 * @param title The exact title of the Wiktionary page requested.
140 * @return Exact content of page.
146 // Encode page title and expand templates if requested
158 JSONObject page = pages.getJSONObject((String) pages.keys().next()); local
159 JSONArray revisions = page.getJSONArray("revisions")
    [all...]
  /external/webkit/WebCore/history/
CachedFrame.cpp 48 #include "Page.h"
97 // cached page.
111 m_document->page()->chrome()->client()->needTouchEvents(true);
129 // Custom scrollbar renderers will get reattached when the document comes out of the page cache
144 // 1 - We reuse the main frame, so when it navigates to a new page load it needs to start with a blank FrameTree.
150 frame->page()->decrementFrameCount();
161 m_document->page()->chrome()->client()->needTouchEvents(false);
171 m_view->frame()->page()->incrementFrameCount();
179 // clear() should only be called for Frames representing documents that are no longer in the page cache.
222 // FIXME: Why do we need to call removeAllEventListeners here? When the document is in page cache, this method won't wor
    [all...]
  /external/webkit/WebKit/android/jni/
WebCoreJniOnLoad.cpp 45 #include "Page.h"
186 // Create the page with all the various clients
189 Page* page = new Page(chrome, local
196 editor->setPage(page);
199 MyWebFrame* webFrame = new MyWebFrame(page);
207 RefPtr<Frame> frame = Frame::create(page, NULL, loader);
252 // Layout the page and service the timer
285 delete page;
    [all...]
  /frameworks/base/docs/html/
license.jd 0 page.title=Content License
68 <li>In some cases, a page may include content, such as an image, that is not
71 <li>In addition, content linked from a page on this site is not covered
84 versions of content that appears on a page made available under the
102 of your page that reads:
105 Portions of this page are reproduced from work created and <a
113 Also, please link back to the original source page so that readers can
120 your page that reads:
123 Portions of this page are modifications based on work created and <a
130 Again, please link back to the original source page so that readers ca
    [all...]
  /external/guava/javadoc/
help-doc.html 91 The <A HREF="overview-summary.html">Overview</A> page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.</BLOCKQUOTE>
97 Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL>
105 Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:<UL>
118 Each annotation type has its own separate page with the following sections:<UL>
127 Each enum has its own separate page with the following sections:<UL>
133 Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class (…)
    [all...]

Completed in 66 milliseconds

<<11121314151617181920>>