Home | History | Annotate | Download | only in browser

Lines Matching refs:tbar

476         public void set(TitleBar tbar, WebView web) {
477 if (tbar == null || web == null) {
480 if (tbar.getWidth() > 0 && tbar.getEmbeddedHeight() > 0) {
482 || mTitleBarBitmap.getWidth() != tbar.getWidth()
483 || mTitleBarBitmap.getHeight() != tbar.getEmbeddedHeight()) {
484 mTitleBarBitmap = safeCreateBitmap(tbar.getWidth(),
485 tbar.getEmbeddedHeight());
489 tbar.draw(c);
497 int h = web.getHeight() - tbar.getEmbeddedHeight();
507 c.translate(-tx, -ty - tbar.getEmbeddedHeight());