HomeSort by relevance Sort by last modified time
    Searched refs:wv (Results 1 - 23 of 23) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/view/
WebView1.java 39 WebView wv; local
41 wv = (WebView) findViewById(R.id.wv1);
42 wv.loadData("<a href='x'>Hello World! - 1</a>", mimeType, null);
44 wv = (WebView) findViewById(R.id.wv2);
45 wv.loadData("<a href='x'>Hello World! - 2</a>", mimeType, null);
47 wv = (WebView) findViewById(R.id.wv3);
48 wv.loadData("<a href='x'>Hello World! - 3</a>", mimeType, null);
50 wv = (WebView) findViewById(R.id.wv4);
51 wv.loadData("<a href='x'>Hello World! - 4</a>", mimeType, null);
53 wv = (WebView) findViewById(R.id.wv5)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
WebViewTimersControl.java 53 private void resumeTimers(WebView wv) {
54 if (LOGD_ENABLED) Log.d(LOGTAG, "Resuming webview timers, view=" + wv);
55 if (wv != null) {
56 wv.resumeTimers();
60 private void maybePauseTimers(WebView wv) {
61 if (!mBrowserActive && !mPrerenderActive && wv != null) {
62 if (LOGD_ENABLED) Log.d(LOGTAG, "Pausing webview timers, view=" + wv);
63 wv.pauseTimers();
67 public void onBrowserActivityResume(WebView wv) {
70 resumeTimers(wv);
    [all...]
Controller.java 2225 WebView wv = getCurrentTopWebView(); local
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/
tst_qdeclarativewebview.cpp 100 QObject* wv = component.create(); local
101 QVERIFY(wv);
102 QTRY_COMPARE(wv->property("progress").toDouble(), 1.0);
103 QCOMPARE(wv->property("title").toString(), QLatin1String("Basic"));
104 QTRY_COMPARE(qvariant_cast<QPixmap>(wv->property("icon")).width(), 48);
106 QCOMPARE(qvariant_cast<QPixmap>(wv->property("icon")), QPixmap("qrc:///resources/basic.png"));
107 QCOMPARE(wv->property("statusText").toString(), QLatin1String("status here"));
108 QCOMPARE(strippedHtml(fileContents(":/resources/basic.html")), strippedHtml(wv->property("html").toString()));
110 QCOMPARE(wv->property("preferredWidth").toInt(), 0);
112 QCOMPARE(wv->property("preferredHeight").toInt(), 0)
141 QDeclarativeWebView* wv = qobject_cast<QDeclarativeWebView*>(component.create()); local
165 QObject* wv = component.create(); local
238 QObject* wv = component.create(); local
254 QObject* wv = component.create(); local
291 QObject* wv = rootItem->findChild<QObject*>("webView"); local
317 QObject* wv = rootItem->findChild<QObject*>("webView"); local
345 QObject* wv = component.create(); local
356 QObject* wv = component.create(); local
370 QObject* wv = component.create(); local
384 QObject* wv = component.create(); local
397 QObject* wv = rootItem->findChild<QObject*>("webView"); local
421 QObject* wv = rootItem->findChild<QObject*>("webView"); local
444 QObject* wv = component.create(); local
458 QObject* wv = component.create(); local
501 QObject* wv = component.create(); local
    [all...]
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultUIDelegate.m 61 - (WebView *)webView: (WebView *)wv createWebViewWithRequest:(NSURLRequest *)request windowFeatures:(NSDictionary *)features
65 if (![[wv UIDelegate] respondsToSelector:@selector(webView:createWebViewWithRequest:windowFeatures:)] && [[wv UIDelegate] respondsToSelector:@selector(webView:createWebViewWithRequest:)])
66 return [[wv UIDelegate] webView:wv createWebViewWithRequest:request];
70 - (void)webViewShow: (WebView *)wv
74 - (void)webViewClose: (WebView *)wv
76 [[wv window] close];
79 - (void)webViewFocus: (WebView *)wv
81 [[wv window] makeKeyAndOrderFront:wv]
    [all...]
WebDefaultPolicyDelegate.m 54 - (void)webView: (WebView *)wv unableToImplementPolicyWithError:(NSError *)error frame:(WebFrame *)frame
60 - (void)webView: (WebView *)wv decidePolicyForMIMEType:(NSString *)type
69 if (exists && !isDirectory && [wv _canShowMIMEType:type])
73 } else if ([wv _canShowMIMEType: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
WebDefaultContextMenuDelegate.mm 138 - (NSArray *)webView:(WebView *)wv contextMenuItemsForElement:(NSDictionary *)element defaultMenuItems:(NSArray *)defaultMenuItems
176 WebView *wv = [webFrame webView];
177 if ([wv canGoBack]) {
178 [menuItems addObject:[self menuItemWithTag:WebMenuItemTagGoBack target:wv representedObject:element]];
180 if ([wv canGoForward]) {
181 [menuItems addObject:[self menuItemWithTag:WebMenuItemTagGoForward target:wv representedObject:element]];
183 if ([wv isLoading]) {
184 [menuItems addObject:[self menuItemWithTag:WebMenuItemTagStop target:wv representedObject:element]];
186 [menuItems addObject:[self menuItemWithTag:WebMenuItemTagReload target:wv representedObject:element]];
189 if (webFrame != [wv mainFrame])
    [all...]
  /external/valgrind/main/helgrind/
hg_wordset.c 179 WordVec* wv; local
181 wv = wsu->alloc( wsu->cc, sizeof(WordVec) );
182 wv->owner = wsu;
183 wv->words = NULL;
184 wv->size = sz;
186 wv->words = wsu->alloc( wsu->cc, (SizeT)sz * sizeof(UWord) );
188 return wv;
191 static void delete_WV ( WordVec* wv )
193 void (*dealloc)(void*) = wv->owner->dealloc;
194 if (wv->words)
258 WordVec* wv; local
355 WordVec* wv = do_ix2vec( wsu, ws ); local
368 WordVec* wv; local
377 WordVec* wv; local
386 WordVec* wv; local
403 WordVec* wv; local
421 WordVec* wv; local
442 WordVec* wv = do_ix2vec( wsu, ws ); local
453 WordVec* wv; local
487 WordVec* wv; local
524 WordVec* wv; local
566 WordVec* wv = do_ix2vec( wsu, ws ); local
843 WordVec* wv = do_ix2vec( wsu, ws ); local
    [all...]
  /external/quake/quake/src/QW/client/
d_sky.c 37 float wu, wv, temp; local
46 wv = 8192.0 * (float)(((int)vid.height>>1)-v) / temp;
48 end[0] = 4096*vpn[0] + wu*vright[0] + wv*vup[0];
49 end[1] = 4096*vpn[1] + wu*vright[1] + wv*vup[1];
50 end[2] = 4096*vpn[2] + wu*vright[2] + wv*vup[2];
  /external/quake/quake/src/WinQuake/
d_sky.cpp 37 float wu, wv, temp; local
46 wv = 8192.0 * (float)(((int)vid.height>>1)-v) / temp;
48 end[0] = 4096*vpn[0] + wu*vright[0] + wv*vup[0];
49 end[1] = 4096*vpn[1] + wu*vright[1] + wv*vup[1];
50 end[2] = 4096*vpn[2] + wu*vright[2] + wv*vup[2];
  /external/webkit/Tools/DumpRenderTree/mac/
ResourceLoadDelegate.mm 117 - webView: (WebView *)wv identifierForInitialRequest: (NSURLRequest *)request fromDataSource: (WebDataSource *)dataSource
127 -(NSURLRequest *)webView: (WebView *)wv resource:identifier willSendRequest: (NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource
175 - (void)webView:(WebView *)wv resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
198 - (void)webView:(WebView *)wv resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
202 -(void)webView: (WebView *)wv resource:identifier didReceiveResponse: (NSURLResponse *)response fromDataSource:(WebDataSource *)dataSource
212 -(void)webView: (WebView *)wv resource:identifier didReceiveContentLength: (NSInteger)length fromDataSource:(WebDataSource *)dataSource
216 -(void)webView: (WebView *)wv resource:identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSource
224 -(void)webView: (WebView *)wv resource:identifier didFailLoadingWithError:(NSError *)error fromDataSource:(WebDataSource *)dataSource
232 - (void)webView: (WebView *)wv plugInFailedWithError:(NSError *)error dataSource:(WebDataSource *)dataSource
236 [wv display]
    [all...]
AppleScriptController.m 53 - (id)initWithWebView:(WebView *)wv
56 webView = wv;
TextInputController.m 202 - (id)initWithWebView:(WebView *)wv
205 webView = wv;
  /external/webkit/Source/WebKit/mac/WebView/
WebClipView.mm 159 WebView *wv = [docView _webView];
160 if ([wv _dashboardBehavior:WebDashboardBehaviorAllowWheelScrolling]) {
  /external/mksh/src/
eval.c 1041 XPtrV wv; local
1052 XPinit(wv, 32);
1059 XPput(wv, c == '!' ? shf_smprintf("%lu",
1063 if (XPsize(wv) == 0) {
1066 XPfree(wv);
1068 XPput(wv, 0);
1069 xp->u.strv = (const char **)XPptrv(wv);
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp 1530 QWebView* wv = new QWebView; local
1535 QGraphicsWebView* wv = new QGraphicsWebView; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/testdata/
voice.rtpdump 18 ??pjz???{~??wwz~~?|z???|z????~z{???xqtz??||vy?????}???|{vvz{ttvvu|}??????????{??????|{???????????~y???????~{zvxtrw????}}?????~}}{z?~?xuwz???wu{???~zyz||yww{?~?? 5?9??4???pj|z~?????}?}|}z~?????????~}??~????xv?????}?|?|???~?x}{|}???????|??zvtz?}xy~???{{u~????????}{???????wz?{}????zoqs|??{{vz~?{v|???????{~????tv??zwz???~??|wyx????? K?9??4?J??pj?|???y{??~{z|~|}|?????wqy???}yy???{}y~yy{????}{??????}???????|?????zz??xoq~???yy???}w??|vy??}xvoprx|~x{z}zz?????{yz????|??????||y}}??????????~~?????|???wst|??? _?9??4???pj?~?}zsuwx~??wwyyvxy}?|wv|???}?????}???????????~xw???zy??????|}??????????|z~?~{tsz???rtvy????????????{{~|{u|????~????|tsz??xqox???tnp{yxu|????~vsy???{|~???{z?}y?? u?9??4???pj}??}?}??????{~????}????~xy?????z}??{vvxzyutx??|tqv|?{zz???????}???????}????????~?~{~?????}yt??{uqwzx}|?{ws?????????|zy~??????|xr|??xwx}z{????????zrsw??? ??9??4?*??pj|{u???????????{yz?yx{??????????}???????????}y}???zwuvvzxxx????xsx|}zvz}~}{~{}{|?~???~}???????????????????????{{?|ywxtrpyzxwqqtwutnou|~yu}??y?????????????????? ??9??4???pj????{wx???~{|~??????ullw??|{{~???????}??????~????z?~?|tqw}zzutty}}xsqrwzz}???|}~??????}??????????????????????}~|}}???zuspvxzxpnotonmqy|}xqu???????????????????? ??9??4?j??pj???????????~~}~??????tu{}~xzwusx{~|zs~???????????|rzt~}???~~{sz}??yw~~xx{?yxw|??~z{~?????}}zvwy{?????????}|???????????u{ruqqu?x|~??????~?????|uz}?{vw???????{?? ?9??4?
28 ??9??4?J??pj|x???|????{y~?????????????????{yv~{wv~|wrx??~y~}?sw{???{}~?||{?????????z????zy}??zxv?~w{|???yu~}?}|ywyxyy|}z~~}|w}}?z|?????????????~???~???ywqssw|{xxxzxz{??
72 ??pjv}???????????w??????{pow???rt???|wws~~???tx???ojs???roy??vh`io???z|?z{????|tpoyumhkp??|smn?????w????xx???xokp~~?xv????????z????rjlv??~|??????~????slihnz?{qr?? ??9?4????pju???????????|????????{{????po~???yklmyzqvu{??}ztvp}~?}zy?~???wso~???}nk{???}{??????oooywohjw?xxtt{~~?wv???}pt~??????w|z???mp~???xz}???~zy??????~z}???x|??????r?? ??9?4?J??pj{{???~pw???{|zso{??nklmutkafgljlt??????|????????{???zvz????????????????????????wz{ytzyyvy????r{???sq|???~~?????}}z?????}}???u{|}???vhgmtwr|w}???{yv?????orz?}{x?? ??9?4???pj??|???~y???|zw????wolt{??}zz}??|zust{???~~~?????????????{u?zxy?????|?~???}wx???vx|???{uopv????}??{rxy??{???{??|ruqmk}~??????}vu???????}ox??????~|t~|vqsx|????? ?9?4????pjrns??~~??????????????????vqr?~?}???}????zxx???zwx?zwu~{?y|?yqt?~xuvpswsz|}}}rmpyvxolnw???????????????????????}??????????????|}?~wyruurnw{~ywlo}?ohalw{lljoot?? ?9?4?*??pj{}w{yu{????????????zzy?xspz|}}xx????}??????tz??xtyyzu}??ww{?????tswywqnjfn|??qoz????????????~??????????}~???????w~???vpu?????{??yrrsvooovx~wonpqwzzwtot???}???? ??9?4???pj??x????~????~|????????z??????????}v}????|??wonrpmljkkjhrtumojns?|???xw|???z???????????????????????????????zry|wmik{~xqvutoknr|wtvuontwzz|????????????????|????r~???9?5j??pj?yqntv}vsvy{vw~???}xwtlsux|??{pqoxromry???xw|??????uv?????????~????v???~pq~|wz}rrlnlqnsoooyxv{~ruy}???}|{??tpy???|???|?????????s???{ww???????????????????????|??!?9?5
    [all...]
  /prebuilt/common/kxml2/
kxml2-2.3.0.jar 
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm 542 WebView *wv = [m_pluginView webView];
543 [[wv _UIDelegateForwarder] webView:wv setStatusText:(NSString *)status.get()];
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginView.mm     [all...]
  /external/opencv/ml/src/
mltree.cpp 1625 double wv = rc[i]*priors[i]; local
    [all...]
  /external/chromium/net/base/
effective_tld_names.cc     [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 634 milliseconds