/external/chromium/chrome/browser/ui/views/infobars/ |
translate_infobar_base.h | 47 // Returns the background that should be displayed when not animating. 48 const views::Background& GetBackground(); 50 // Paints |background| to |canvas| with the opacity level based on 54 const views::Background& background);
|
/external/doclava/res/assets/templates/assets/ |
doclava-developer-docs.css | 31 background-color: #fff; 36 background:url('images/sidenav-rule.png') no-repeat 243px 0; 111 background-color: #435a6e; 142 background:url('images/triangle-closed-small.png') 7px 4px no-repeat; 145 background:url('images/triangle-opened-small.png') 7px 4px no-repeat; 162 background-color: #fff; 240 background-color: #E2E2E2; 277 background-color:#fff; 400 background:#FFF; 401 background:rgba(255,255,255,0.7) [all...] |
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
RecentApplicationsBackground.java | 30 * A vertical linear layout. However, instead of drawing the background 31 * behnd the items, it draws the background outside the items based on the 32 * padding. If there isn't enough room to draw both, it clips the background 91 final Drawable background = mBackground; local 92 if (background != null) { 103 // The background here is a gradient that wants to 116 background.setBounds(left, top, right, bottom); 124 canvas.drawRect(background.getBounds(), p);
|
/external/chromium-trace/src/shared/css/ |
dialogs.css | 25 background-color: white; 79 background-color: white; 132 background: url('../images/x.png') center no-repeat; 144 background-image: url('../images/x-hover.png');
|
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/ |
ViewPort.java | 53 * The background color which the color buffer is cleared to can be specified 318 * Sets the background color. 323 * By default the background color is black without alpha. 325 * @param background the background color. 327 public void setBackgroundColor(ColorRGBA background){ 328 backColor.set(background); 332 * Returns the background color of this ViewPort 334 * @return the background color of this ViewPort
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLBodyElement02.js | 78 The background attribute specifies the URI fo the background texture 81 Retrieve the background attribute and examine its value. 103 vbackground = testNode.background;
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
HTMLBodyElement02.js | 78 The background attribute specifies the URI fo the background texture 81 Retrieve the background attribute and examine its value. 103 vbackground = testNode.background;
|
/external/webkit/Source/WebCore/css/ |
SVGCSSPropertyNames.in | 10 enable-background
|
view-source.css | 50 background-color: rgb(240, 240, 240); 140 background-color: rgb(100%, 62%, 42%); 145 background-color: rgb(100%, 42%, 42%);
|
wml.css | 111 background-color: ButtonFace; 132 background-color: white; 148 background-color: #FAFFBD !important; 149 background-image:none !important; 174 background-color: white;
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastListItem.java | 65 Drawable background = message.isRead() ? local 69 setBackground(background);
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
MovieControllerOverlay.java | 61 private final View background; field in class:MovieControllerOverlay 89 background = new View(context); 90 background.setBackgroundColor(context.getResources().getColor(R.color.darker_transparent)); 91 addView(background, matchParent); 192 background.setVisibility(View.INVISIBLE); 231 startHideAnimation(background); 244 background.setAnimation(null); 341 // Put both TimeBar and Background just above the bottom system component. 342 // But extend the background to the width of the screen, since we don't 344 background.layout(0, y - timeBar.getBarHeight(), w, y) [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/util/ |
ImageUtils.java | 295 * @param drawableId The overlay background drawable if 306 final Drawable background = context.getResources().getDrawable(drawableId); local 307 background.setBounds(INSET, startHeight, width - INSET, 309 background.draw(canvas); 338 * @param drawableId The overlay background drawable if 349 final Drawable background = context.getResources().getDrawable(drawableId); local 350 background.setBounds(INSET, startHeight, width - INSET, height - INSET); 351 background.draw(canvas); 416 * @param drawableId The overlay background drawable if 427 final Drawable background = context.getResources().getDrawable(drawableId) local [all...] |
/external/libpng/contrib/gregbook/ |
writepng.c | 162 png_color_16 background; local 164 background.red = mainprog_ptr->bg_red; 165 background.green = mainprog_ptr->bg_green; 166 background.blue = mainprog_ptr->bg_blue; 167 png_set_bKGD(png_ptr, info_ptr, &background);
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
SurfaceCollectionManager.cpp | 275 // Don't have a drawing collection, draw white background 276 Color background = Color::white; local 300 background = m_drawingCollection->getBackgroundColor(); 303 // Use paintingCollection background color while tiles are not done painting. 304 background = m_paintingCollection->getBackgroundColor(); 312 ALOGV("background is %x", background.rgb()); 313 // If background is opaque, we can safely and efficiently clear it here. 314 // Otherwise, we have to calculate all the missing tiles and blend the background. 315 GLUtils::clearBackgroundIfOpaque(&background); [all...] |
/gdk/samples/PhotoEditor/src/com/android/photoeditor/actions/ |
ScaleWheel.java | 55 private final Drawable background; field in class:ScaleWheel 79 background = resources.getDrawable(R.drawable.scale_wheel_background); 80 background.setAlpha(160); 122 background.setBounds(0, 0, getWidth(), getHeight()); 123 background.draw(canvas);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
BubbleTextView.java | 122 // Otherwise, either clear the pressed/focused background, or create a background 131 // background to null so that it will get created when the view is drawn. 269 final Drawable background = mBackground; local 270 if (background != null) { 275 background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop()); 280 background.draw(canvas); 283 background.draw(canvas);
|
/external/chromium/chrome/browser/chromeos/ |
setting_level_bubble.cc | 45 // background, and finally NULL if both of those fail. 61 // Otherwise, see if there's a background window that we can use. 62 BackgroundView* background = LoginUtils::Get()->GetBackgroundView(); local 63 if (background) 64 window = GTK_WINDOW(background->GetNativeWindow());
|
/external/chromium/chrome/browser/ui/views/extensions/ |
extension_view.cc | 133 void ExtensionView::SetBackground(const SkBitmap& background) { 135 render_view_host()->view()->SetBackground(background); 137 pending_background_ = background;
|
/external/doclava/res/assets/templates/ |
diff.cs | 17 background-color: #778899; 21 background-color: #a9a9a9; 25 background-color: #dcdcdc; 34 background-repeat: no-repeat; 38 background-image: url("<?cs var:triangle.opened ?>"); 42 background-image: url("<?cs var:triangle.closed?>");
|
/frameworks/opt/mailcommon/java/com/android/mailcommon/ |
MultiAdapterSpinner.java | 149 final Drawable background = mPopup.getBackground(); local 151 if (background != null) { 152 background.getPadding(mTempRect);
|
/external/webkit/Source/WebCore/editing/ |
DeleteButtonController.cpp | 114 // Allow blocks that have background images 116 for (const FillLayer* background = style->backgroundLayers(); background; background = background->next()) { 117 if (background->image() && background->image()->canRender(1)) 127 // Allow blocks that have a different background from it's parent
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/ |
main.css | 24 background-color: #fff;
|
/external/libvpx/examples/includes/geshi/contrib/ |
aliased.php | 48 $geshi->set_overall_style('color: #000066; border: 1px solid #d0d0d0; background-color: #f0f0f0;', true); 52 $geshi->set_link_styles(GESHI_HOVER, 'background-color: #f0f000;'); 54 $geshi->set_header_content_style('font-family: Verdana, Arial, sans-serif; color: #808080; font-size: 70%; font-weight: bold; background-color: #f0f0ff; border-bottom: 1px solid #d0d0d0; padding: 2px;'); 56 $geshi->set_footer_content_style('font-family: Verdana, Arial, sans-serif; color: #808080; font-size: 70%; font-weight: bold; background-color: #f0f0ff; border-top: 1px solid #d0d0d0; padding: 2px;'); 71 background-color: #f0f0f0; 77 background-color: #fcfcfc;
|
/external/webkit/Source/WebCore/html/ |
HTMLBodyElement.idl | 25 attribute [Reflect] DOMString background;
|