/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/ |
IEmailService.aidl | 32 oneway void loadAttachment(long attachmentId, boolean background);
|
/packages/apps/SoundRecorder/src/com/android/soundrecorder/ |
VUMeter.java | 53 Drawable background = context.getResources().getDrawable(R.drawable.vumeter); local 54 setBackgroundDrawable(background);
|
/system/vold/ |
logwrapper.c | 107 int logwrap(int argc, const char* argv[], int background) 151 if (background) { 155 "Unable to background process (%s)", strerror(-err));
|
Ext4.cpp | 45 extern "C" int logwrap(int argc, const char **argv, int background);
|
/external/chromium/chrome/browser/ui/views/extensions/ |
extension_view.h | 53 // Set a custom background for the view. The background will be tiled. 54 void SetBackground(const SkBitmap& background); 93 // The background the view should have once it is initialized. This is set 94 // when the view has a custom background, but hasn't been initialized yet.
|
/external/chromium/chrome/common/extensions/docs/examples/howto/contentscript_xhr/ |
contentscript.js | 32 trends_dom.style.background = '#36b'; 42 // Send a request to fetch data from Twitter's API to the background page.
|
/external/chromium-trace/src/tracing/ |
timeline_view.css | 108 background-color: rgba(255, 255, 255, 0.5); 119 background-color: rgba(255, 255, 255, 1.0);
|
/external/replicaisland/src/com/replica/replicaisland/ |
AnimationPlayerActivity.java | 112 View background = findViewById(R.id.animation_background); local 119 background.startAnimation(backgroundAnim); 126 View background = findViewById(R.id.animation_background); local 139 background.startAnimation(backgroundAnim);
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
Surface.h | 74 virtual Color* background();
|
SurfaceBacking.h | 50 const Color* background);
|
TileGrid.h | 57 const TransformationMatrix* transform, const Color* background = 0);
|
SurfaceBacking.cpp | 140 bool aggressiveRendering, const Color* background) 146 m_frontTileGrid->drawGL(visibleContentArea, opacity, transform, background);
|
/frameworks/native/opengl/tests/gl_jni/jni/ |
gl_code.cpp | 15 GLfloat background; variable 175 glClearColor(background, grey, grey, 1.0f); 182 background = 1.0f - background;
|
/packages/apps/Email/src/com/android/email/ |
MessagingListener.java | 111 boolean background) {
|
GroupMessagingListener.java | 191 boolean background) { 193 l.loadAttachmentFailed(accountId, messageId, attachmentId, me, background);
|
/development/samples/Home/src/com/example/android/home/ |
ApplicationsStackLayout.java | 132 final Drawable background = mBackground; local 143 background.setBounds(mDrawRect); 144 background.draw(canvas); 153 background.setBounds(mDrawRect); 154 background.draw(canvas);
|
/external/webkit/Source/WebCore/css/ |
html.css | 409 background-color: white; 478 background-color: white; 501 background-color: initial; 511 background-color: #FAFFBD !important; 512 background-image:none !important; 519 background-color: initial; 535 background-color: ButtonFace; 587 background-color: white; 644 background: -webkit-gradient(linear, left top, left bottom, from(#f8ecec), to(#e8cccc)); 660 background-color: #f8ecec [all...] |
/external/webkit/Source/WebKit/qt/tests/qgraphicswebview/ |
tst_qgraphicswebview.cpp | 170 webView->setHtml(QLatin1String("<body style=\"background-color: white\"><input type=range></input><input type=checkbox></input><input type=radio></input><input type=file></input></body>")); 315 QTest::addColumn<bool>("background"); 334 QFETCH(bool, background); 358 if (active && background) { 359 // Rendered image must have red background on an active QGraphicsWebView. 361 } else if (active && !background) { 364 } else if (!active && background) { 365 // Rendered image must have red background on an inactive QGraphicsWebView. 367 } else if (!active && !background) { 414 if (active && background) { [all...] |
/external/webkit/Source/WebKit/qt/tests/qwebview/ |
tst_qwebview.cpp | 331 QTest::addColumn<bool>("background"); 350 QFETCH(bool, background); 364 if (active && background) { 365 // Rendered image must have red background on an active QWebView. 367 } else if (active && !background) { 370 } else if (!active && background) { 371 // Rendered image must have red background on an inactive QWebView. 373 } else if (!active && !background) { 411 if (active && background) { 412 // Rendered image must have blue background on an active QWebView [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
SizeAdaptiveLayout.java | 98 // If the SizeAdaptiveLayout has a solid background, use it as a transition hint. 99 Drawable background = getBackground(); local 100 if (background instanceof StateListDrawable) { 101 StateListDrawable sld = (StateListDrawable) background; 103 background = sld.getCurrent(); 105 if (background instanceof ColorDrawable) { 106 mModestyPanel.setBackgroundDrawable(background); 259 // TODO: mModestyPanel background should be compatible with mLeavingView
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
Slider.java | 34 public void setSliderBackground(Drawable background) { 35 mBackground = background;
|
/external/libvpx/examples/includes/geshi/contrib/ |
example.php | 66 $geshi->set_overall_style('font: normal normal 90% monospace; color: #000066; border: 1px solid #d0d0d0; background-color: #f0f0f0;', false); 83 $geshi->set_link_styles(GESHI_HOVER, 'background-color: #f0f000;'); 89 $geshi->set_header_content_style('font-family: sans-serif; color: #808080; font-size: 70%; font-weight: bold; background-color: #f0f0ff; border-bottom: 1px solid #d0d0d0; padding: 2px;'); 93 $geshi->set_footer_content_style('font-family: sans-serif; color: #808080; font-size: 70%; font-weight: bold; background-color: #f0f0ff; border-top: 1px solid #d0d0d0; padding: 2px;'); 113 background-color: #f0f0f0; 119 background-color: #fcfcfc;
|
/frameworks/base/core/java/android/widget/ |
Spinner.java | 207 * Set the background drawable for the spinner's popup window of choices. 210 * @param background Background drawable 214 public void setPopupBackgroundDrawable(Drawable background) { 219 ((DropdownPopup) mPopup).setBackgroundDrawable(background); 223 * Set the background drawable for the spinner's popup window of choices. 226 * @param resId Resource ID of a background drawable 235 * Get the background drawable for the spinner's popup window of choices. 238 * @return background Background drawabl 934 final Drawable background = getBackground(); local [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
about_chrome_dialog.cc | 89 CairoCachedSurface* background = theme_provider->GetSurfaceNamed( local 92 background->SetSource(cr, 0, 0); 104 static GdkPixbuf* background = rb.GetPixbufNamed(IDR_ABOUT_BACKGROUND); local 133 // Use an event box to get the background painting correctly 165 gtk_image_new_from_pixbuf(background),
|