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

1 23 4 5 6 7 8 9

  /cts/tests/tests/webkit/src/android/webkit/cts/
WebView_HitTestResultTest.java 27 import android.webkit.WebView;
28 import android.webkit.WebView.HitTestResult;
40 private void waitForLoading(final WebView webView, long timeout) throws InterruptedException {
44 return webView.getProgress() == 100;
63 WebView webView = getActivity().getWebView();
66 webView.loadDataWithBaseURL("fake://home", "<html><body>" + anchor
68 waitForLoading(webView, TEST_TIMEOUT);
74 HitTestResult result = webView.getHitTestResult()
    [all...]
WebChromeClientTest.java 33 import android.webkit.WebView;
39 private WebView mWebView;
72 args = {WebView.class, int.class}
94 args = {WebView.class, String.class}
119 args = {WebView.class, Bitmap.class}
148 args = {WebView.class, boolean.class, boolean.class, Message.class}
153 args = {WebView.class}
158 args = {WebView.class}
195 args = {WebView.class, String.class, String.class, JsResult.class}
225 args = {WebView.class, String.class, String.class, JsResult.class
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebFrameViewInternal.h 32 @class WebView;
36 - (WebView *)_webView;
WebDelegateImplementationCaching.mm 33 #import "WebView.h"
37 @implementation WebView (WebDelegateImplementationCaching)
39 WebResourceDelegateImplementationCache* WebViewGetResourceLoadDelegateImplementations(WebView *webView)
42 if (!webView)
44 return &webView->_private->resourceLoadDelegateImplementations;
47 WebFrameLoadDelegateImplementationCache* WebViewGetFrameLoadDelegateImplementations(WebView *webView)
50 if (!webView)
52 return &webView->_private->frameLoadDelegateImplementations
    [all...]
WebDataSourceInternal.h 42 @class WebView;
47 - (WebView *)_webView;
WebDocumentLoaderMac.h 34 @class WebView;
47 void setDataSource(WebDataSource *, WebView*);
WebPolicyDelegatePrivate.h 51 - (BOOL)webView:(WebView *)webView shouldGoToHistoryItem:(WebHistoryItem *)item;
WebFrame.h 40 @class WebView;
54 @method initWithName:webFrameView:webView:
56 @discussion WebFrames are normally created for you by the WebView. You should
60 @param webView The WebView that manages the frame.
63 - (id)initWithName:(NSString *)name webFrameView:(WebFrameView *)view webView:(WebView *)webView;
72 @method webView
73 @result Returns the WebView for the document that includes this frame
    [all...]
WebViewPrivate.h 29 #import <WebKit/WebView.h>
72 // One of the subviews of the WebView entered compositing mode.
91 IBOutlet WebView *webView;
93 - (WebView *)webView;
94 - (void)setWebView:(WebView *)newWebView;
97 @interface WebView (WebViewEditingActionsPendingPublic)
103 @interface WebView (WebPendingPublic)
128 // setHoverFeedbackSuspended: can be called by clients that want to temporarily prevent the webView
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebInspectorClient.h 40 class WebView;
44 WebInspectorClient(WebView*);
91 WebView* m_inspectedWebView;
94 COMPtr<WebView> m_webView;
WebFrameLoaderClient.cpp 51 #include "WebView.h"
94 return m_webFrame->webView();
116 WebView* webView = m_webFrame->webView();
118 if (FAILED(webView->resourceLoadDelegate(&resourceLoadDelegate)))
122 resourceLoadDelegate->identifierForInitialRequest(webView, webURLRequest.get(), getWebDataSource(loader), identifier);
127 WebView* webView = m_webFrame->webView();
    [all...]
  /external/webkit/WebKit/win/
WebInspector.h 35 class WebView;
39 static WebInspector* createInstance(WebView*);
69 WebInspector(WebView*);
73 WebView* m_webView;
  /packages/apps/Browser/tests/src/com/android/browser/
JNIBindingsTestApp.java 30 import android.webkit.WebView;
33 * Adds a JavaScript interface to the webview and calls functions on it to verify variables
62 private WebView mWebView;
65 GetWebKitDataThread(JNIBindingsTestApp testApp, WebView webView) {
67 mWebView = webView;
109 * and wrapping the WebView's helper clients.
113 WebView webView = tab.getWebView();
114 webView.addJavascriptInterface(new JNIBindingsTest(this), "JNIBindingsTest")
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
EditingDelegate.mm 75 - (BOOL)webView:(WebView *)webView shouldBeginEditingInDOMRange:(DOMRange *)range
82 - (BOOL)webView:(WebView *)webView shouldEndEditingInDOMRange:(DOMRange *)range
89 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action
102 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenActi (…)
    [all...]
ResourceLoadDelegate.mm 114 - webView: (WebView *)wv identifierForInitialRequest: (NSURLRequest *)request fromDataSource: (WebDataSource *)dataSource
124 -(NSURLRequest *)webView: (WebView *)wv resource:identifier willSendRequest: (NSURLRequest *)newRequest redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource
157 - (void)webView:(WebView *)wv resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
175 - (void)webView:(WebView *)wv resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
179 -(void)webView: (WebView *)wv resource:identifier didReceiveResponse: (NSURLResponse *)response fromDataSource:(WebDataSour (…)
    [all...]
DumpRenderTreeWindow.mm 91 - (WebView *)webView
96 if ([firstView isKindOfClass:[WebView class]])
97 return static_cast<WebView *>(firstView);
104 [[self webView] _setPostsAcceleratedCompositingNotifications:YES];
111 // If the WebView has gone into compositing mode, turn on window autodisplay. This is necessary for CA
114 if ([[self webView] _isUsingAcceleratedCompositing])
PolicyDelegate.mm 36 #import <WebKit/WebView.h>
48 - (void)webView:(WebView *)webView decidePolicyForNavigationAction:(NSDictionary *)actionInformation
97 - (void)webView:(WebView *)webView unableToImplementPolicyWithError:(NSError *)error frame:(WebFrame *)frame
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
ReliabilityTestActivity.java 33 import android.webkit.WebView;
52 private WebView webView;
77 webView = new WebView(this);
78 webView.getSettings().setJavaScriptEnabled(true);
79 webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(false);
80 webView.getSettings().setLayoutAlgorithm(LayoutAlgorithm.NORMAL);
84 webView.setWebViewClient(webViewClient);
85 webView.setWebChromeClient(chromeClient)
    [all...]
  /external/webkit/WebKit/chromium/public/
WebDevToolsAgent.h 42 class WebView;
49 WEBKIT_API static WebDevToolsAgent* create(WebView*, WebDevToolsAgentClient*);
  /external/webkit/WebKit/mac/Misc/
WebNSViewExtras.h 35 @class WebView;
42 - (WebView *)_webView;
  /external/webkit/WebKit/mac/Plugins/
WebPluginContainerCheck.h 34 @class WebView;
40 - (WebView *)webView;
WebPluginController.h 35 @class WebView;
62 - (WebView *)webView;
  /external/webkit/WebKit/mac/WebCoreSupport/
WebGeolocationControllerClient.mm 33 WebGeolocationControllerClient::WebGeolocationControllerClient(WebView *webView)
34 : m_webView(webView)
  /packages/apps/HTMLViewer/src/com/android/htmlviewer/
HTMLViewerActivity.java 28 import android.webkit.WebView;
37 * Wraps a WebView widget within an Activity. When launched, it uses the
38 * URI from the intent as the URL to load into the WebView.
39 * It supports all URLs schemes that a standard WebView supports, as well as
41 * The WebView default settings are used with the exception of normal layout
50 * The WebView that is placed in this Activity
52 private WebView mWebView;
69 // BrowserFrame by WebView. As it is called in WebCore thread, it can
76 mWebView = new WebView(this);
82 // Configure the webview
    [all...]
  /packages/apps/Settings/src/com/android/settings/
SettingsSafetyLegalActivity.java 28 import android.webkit.WebView;
41 private WebView mWebView;
57 mWebView = new WebView(this);
68 public void onPageFinished(WebView view, String url) {
74 public void onReceivedError(WebView view, int errorCode,

Completed in 1053 milliseconds

1 23 4 5 6 7 8 9