HomeSort by relevance Sort by last modified time
    Searched refs:WebView (Results 51 - 75 of 352) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/mac/WebCoreSupport/
CorrectionPanel.h 34 @class WebView;
41 void show(WebView*, WebCore::CorrectionPanelInfo::PanelType, const WebCore::FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings);
44 static void recordAutocorrectionResponse(WebView*, NSCorrectionResponse, const String& replacedString, const String& replacementString);
53 RetainPtr<WebView> m_view;
WebDragClient.h 28 @class WebView;
32 WebDragClient(WebView*);
41 WebView* m_webView;
WebInspectorClient.h 41 @class WebView;
45 class WebView;
56 WebInspectorClient(WebView *);
78 WebView *m_webView;
88 WebInspectorFrontendClient(WebView*, WebInspectorWindowController*, WebCore::InspectorController*, WebCore::Page*, WTF::PassOwnPtr<Settings>);
111 WebView* m_inspectedWebView;
  /external/webkit/Source/WebKit2/UIProcess/win/
WebUndoClient.cpp 31 #include "WebView.h"
35 void WebUndoClient::registerEditCommand(WebView* view, PassRefPtr<WebEditCommandProxy> prpCommand, WebPageProxy::UndoOrRedo undoOrRedo)
44 void WebUndoClient::clearAllEditCommands(WebView* view)
52 bool WebUndoClient::canUndoRedo(WebView* view, WebPageProxy::UndoOrRedo undoOrRedo)
60 void WebUndoClient::executeUndoRedo(WebView* view, WebPageProxy::UndoOrRedo undoOrRedo)
  /frameworks/base/core/java/android/webkit/
WebViewFragment.java 24 import android.webkit.WebView;
27 * A fragment that displays a WebView.
29 * The WebView is automically paused or resumed when the Fragment is paused or resumed.
32 private WebView mWebView;
39 * Called to instantiate the view. Creates and returns the WebView.
47 mWebView = new WebView(getActivity());
53 * Called when the fragment is visible to the user and actively running. Resumes the WebView.
62 * Called when the fragment is no longer resumed. Pauses the WebView.
71 * Called when the WebView has been detached from the fragment.
72 * The WebView is no longer available after this time
    [all...]
WebChromeClient.java 29 * @param view The WebView that initiated the callback.
33 public void onProgressChanged(WebView view, int newProgress) {}
37 * @param view The WebView that initiated the callback.
40 public void onReceivedTitle(WebView view, String title) {}
44 * @param view The WebView that initiated the callback.
47 public void onReceivedIcon(WebView view, Bitmap icon) {}
51 * @param view The WebView that initiated the callback.
55 public void onReceivedTouchIconUrl(WebView view, String url,
74 * {@link WebView}.
105 * this method, create a new WebView to host the window, insert it into th
    [all...]
WebViewFactoryProvider.java 22 * This is the main entry-point into the WebView back end implementations, which the WebView
24 * implementation of this interface, and make it available to the WebView via mechanism TBD.
29 * This Interface provides glue for implementing the backend of WebView static methods which
35 * {@link android.webkit.WebView#findAddress(String)}
41 * {@link android.webkit.WebView#enablePlatformNotifications()}
42 * {@link android.webkit.WebView#disablePlatformNotifications()}
57 * @param webView the WebView instance bound to this implementation instance. Note it will not
60 * @param privateAccess provides access into WebView internal methods
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/win/
WKAPICastWin.h 38 class WebView;
42 WK_ADD_API_MAPPING(WKViewRef, WebView)
  /external/chromium/webkit/glue/
dom_operations.h 17 class WebView;
48 // Get all savable resource links from current webview, include main frame
52 bool GetAllSavableResourceLinksForCurrentPage(WebKit::WebView* view,
59 bool PauseAnimationAtTimeOnElementWithId(WebKit::WebView* view,
67 bool PauseTransitionAtTimeOnElementWithId(WebKit::WebView* view,
74 bool ElementDoesAutoCompleteForElementWithId(WebKit::WebView* view,
78 int NumberOfActiveAnimations(WebKit::WebView* view);
  /external/webkit/Tools/WebKitTestRunner/qt/
PlatformWebViewQt.cpp 36 class WebView : public QGraphicsView {
38 WebView(WKContextRef);
42 virtual ~WebView() { delete m_item; }
48 WebView::WebView(WKContextRef contextRef)
57 : m_view(new WebView(contextRef))
  /packages/apps/Browser/src/com/android/browser/
BrowserWebViewFactory.java 22 import android.webkit.WebView;
35 protected WebView instantiateWebView(AttributeSet attrs, int defStyle,
41 public WebView createSubWebView(boolean privateBrowsing) {
46 public WebView createWebView(boolean privateBrowsing) {
47 WebView w = instantiateWebView(null, android.R.attr.webViewStyle, privateBrowsing);
52 protected void initWebViewSettings(WebView w) {
64 // Add this WebView to the settings observer list and update the
  /external/webkit/Source/WebKit/mac/WebView/
WebScriptDebugDelegate.h 43 @class WebView;
63 - (void)webView:(WebView *)webView didParseSource:(NSString *)source
69 - (void)webView:(WebView *)webView didParseSource:(NSString *)source
76 - (void)webView:(WebView *)webView failedToParseSource:(NSString *)sourc
    [all...]
WebPolicyDelegate.h 34 @class WebView;
139 @method webView:decidePolicyForNavigationAction:request:frame:decisionListener:
148 - (void)webView:(WebView *)webView decidePolicyForNavigationAction:(NSDictionary *)actionInformation
154 @method webView:decidePolicyForNewWindowAction:request:newFrameName:decisionListener:
169 - (void)webView:(WebView *)webView decidePolicyForNewWindowAction:(NSDictionary *)actionInformation
175 @method webView:decidePolicyForMIMEType:request:frame
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
UIDelegate.mm 42 #import <WebKit/WebView.h>
50 - (void)webView:(WebView *)sender setFrame:(NSRect)frame
55 - (NSRect)webViewFrame:(WebView *)sender
60 - (void)webView:(WebView *)sender addMessageToConsole:(NSDictionary *)dictionary withSource:(NSString *)source
78 - (void)webViewRunModal:(WebView *)sender
86 - (void)webView:(WebView *)sender runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame
92 - (BOOL)webView:(WebView *)sender runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WebFr (…)
    [all...]
HistoryDelegate.mm 32 #import <WebKit/WebView.h>
40 - (void)webView:(WebView *)webView didNavigateWithNavigationData:(WebNavigationData *)navigationData inFrame:(WebFrame *)webFrame
47 printf("WebView navigated to url \"%s\" with title \"%s\" with HTTP equivalent method \"%s\". The navigation was %s and was %s%s.\n",
56 - (void)webView:(WebView *)webView didPerformClientRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame
60 printf("WebView performed a client redirect from \"%s\" to \"%s\".\n", [[source _drt_descriptionSuitableForTestResult] UTF8String], [[dest _drt_descriptionSuitableForTestResult] UTF8String]);
63 - (void)webView:(WebView *)webView didPerformServerRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destina (…)
    [all...]
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test6DetailFragment.java 24 import android.webkit.WebView;
29 + "This is test <b>6</b> for WebView text traversal test."
46 WebView wv = (WebView) rootView.findViewById(R.id.test6WebView);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Focus1.java 23 import android.webkit.WebView;
37 WebView webView = (WebView) findViewById(R.id.rssWebView);
38 webView.loadData(
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
ArticleFragment.java 24 import android.webkit.WebView;
30 // The webview where we display the article (our only view)
31 WebView mWebView;
42 * Sets up the UI. It consists if a single WebView.
46 mWebView = new WebView(getActivity());
62 * Loads article data into the webview.
64 * This method is called internally to update the webview's contents to the appropriate
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultPolicyDelegate.m 54 - (void)webView: (WebView *)wv unableToImplementPolicyWithError:(NSError *)error frame:(WebFrame *)frame
60 - (void)webView: (WebView *)wv decidePolicyForMIMEType:(NSString *)type
79 - (void)webView: (WebView *)wv decidePolicyForNavigationAction:(NSDictionary *)actionInformation
86 if ([WebView _canHandleRequest:request forMainFrame:frame == [wv mainFrame]]) {
100 - (void)webView: (WebView *)wv decidePolicyForNewWindowAction:(NSDictionary *)actionInformation
109 - (BOOL)webView:(WebView *)webView shouldGoToHistoryItem:(WebHistoryItem *)ite
    [all...]
  /external/webkit/Source/WebKit/mac/WebInspector/
WebInspector.h 31 @class WebView;
36 WebView *_webView;
39 - (id)initWithWebView:(WebView *)webView;
  /external/webkit/Tools/DumpRenderTree/chromium/
DRTDevToolsClient.h 43 class WebView;
52 DRTDevToolsClient(DRTDevToolsAgent*, WebKit::WebView*);
83 WebKit::WebView* m_webView;
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebChromeClient.java 30 import android.webkit.WebView;
48 public void onProgressChanged(WebView view, int newProgress) {
54 public void onReceivedTitle(WebView view, String title) {
60 public void onReceivedIcon(WebView view, Bitmap icon) {
66 public void onReceivedTouchIconUrl(WebView view, String url,
85 public boolean onCreateWindow(WebView view, boolean dialog,
94 public void onRequestFocus(WebView view) {
100 public void onCloseWindow(WebView window) {
106 public boolean onJsAlert(WebView view, String url, String message,
113 public boolean onJsConfirm(WebView view, String url, String message
    [all...]
  /external/webkit/Source/WebKit/win/
WebView.cpp 27 #include "WebView.h"
186 static HashSet<WebView*> pendingDeleteBackingStoreSet;
190 WebView* kit(Page* page)
192 return page ? static_cast<WebChromeClient*>(page->chrome()->client())->webView() : 0;
262 if (!WebView::didSetCacheModel() || cacheModel > WebView::cacheModel())
263 WebView::setCacheModel(cacheModel);
264 else if (cacheModel < WebView::cacheModel()) {
269 WebView::setCacheModel(max(sharedPreferencesCacheModel, WebView::maxCacheModelInAnyInstance()))
    [all...]
  /external/webkit/Tools/WinCELauncher/
main.cpp 26 #include "WebView.h"
53 WebView::initialize(hInstance);
111 WTF::OwnPtr<WebView> webView = WTF::adoptPtr(new WebView(hMainWindow, enableDoubleBuffer ? WebView::EnableDoubleBuffering : WebView::NoFeature));
112 webView->load(homeUrl);
126 webView.clear();
129 WebView::cleanup()
    [all...]
  /packages/apps/Browser/src/com/android/browser/preferences/
WebViewPreview.java 27 import android.webkit.WebView;
34 protected WebView mWebView;
58 protected void setupWebView(WebView view) {}
63 WebView webView = (WebView) root.findViewById(R.id.webview);
64 // Tell WebView to really, truly ignore all touch events. No, seriously,
66 webView.setFocusable(false);
67 webView.setFocusableInTouchMode(false)
    [all...]

Completed in 781 milliseconds

1 23 4 5 6 7 8 91011>>