HomeSort by relevance Sort by last modified time
    Searched full:background (Results 1501 - 1525 of 7839) sorted by null

<<61626364656667686970>>

  /packages/inputmethods/LatinIME/java/res/values/
keyboard-icons-lxx-light.xml 43 <!-- Use white emoji icon (for lxx_dark) because an action key has green/dark color background. -->
45 <!-- Use dark green emoji icon (for lxx_light) because a normal key has white color background. -->
  /prebuilts/sdk/current/support/v17/leanback/res/layout/
lb_guidedactions.xml 32 android:background="?attr/guidedActionsBackgroundDark" />
56 android:background="?attr/guidedActionsBackgroundDark" />
  /prebuilts/sdk/current/support/v17/preference-leanback/res/layout/
leanback_list_preference_fragment.xml 22 android:background="@color/lb_preference_decor_list_background"
32 android:background="?attr/defaultBrandColor"
  /prebuilts/sdk/current/support/v7/appcompat/res/layout/
abc_activity_chooser_view.xml 34 android:background="?attr/actionBarItemBackground"
56 android:background="?attr/actionBarItemBackground"
  /prebuilts/tools/linux-x86_64/kythe/web/ui/css/
style.css 26 background: none;
71 background: white;
  /system/core/storaged/include/
storaged_uid_monitor.h 28 BACKGROUND = 1,
55 struct uid_io_stats io[UID_STATS]; // [0]:foreground [1]:background
  /system/extras/cppreopts/
cppreopts.sh 52 # background copy tasks
60 # Copy files in background to speed things up
  /system/tpm/trunks/
background_command_transceiver_test.cc 89 // The call to our mock should have happened on the background thread.
103 // The call to our mock should have happened on the background thread.
  /test/vts/web/dashboard/src/main/webapp/css/
show_coverage.css 94 background-color: LightPink;
98 background-color: LightGreen;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ActivatableNotificationView.java 87 * Scale for the background to animate from when exiting dark mode.
472 * Sets the tint color of the background
479 * Sets the tint color of the background
489 * Set an override tint color that is used for the background.
491 * @param color the color that should be used to tint the background.
494 * background color will then be the interpolation between this and the
495 * regular background color, where 1 means the overrideTintColor is fully
496 * used and the background color not at all.
567 * Fades in the background when exiting dark mode.
570 final View background = mDimmed ? mBackgroundDimmed : mBackgroundNormal local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardView.java 288 final Drawable background = getBackground(); local
294 if (!isHardwareAccelerated && background != null) {
295 // Need to draw keyboard background on {@link #mOffscreenBuffer}.
297 background.draw(canvas);
308 if (background != null) {
309 // Need to redraw key's background on {@link #mOffscreenBuffer}.
316 background.draw(canvas);
338 final Drawable background = key.selectBackgroundDrawable( local
340 if (background != null) {
341 onDrawKeyBackground(key, canvas, background);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
configHandler.py 310 back=themeDict['normal-background']
312 back=themeDict[element+'-background']
313 highlight={"foreground": fore,"background": back}
320 return highlight["background"]
339 #foreground and background values are provded for each theme element
344 'normal-background':'#ffffff',
346 'keyword-background':'#ffffff',
348 'builtin-background':'#ffffff',
350 'comment-background':'#ffffff',
352 'string-background':'#ffffff'
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
configHandler.py 310 back=themeDict['normal-background']
312 back=themeDict[element+'-background']
313 highlight={"foreground": fore,"background": back}
320 return highlight["background"]
339 #foreground and background values are provded for each theme element
344 'normal-background':'#ffffff',
346 'keyword-background':'#ffffff',
348 'builtin-background':'#ffffff',
350 'comment-background':'#ffffff',
352 'string-background':'#ffffff'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
configHandler.py 310 back=themeDict['normal-background']
312 back=themeDict[element+'-background']
313 highlight={"foreground": fore,"background": back}
320 return highlight["background"]
339 #foreground and background values are provded for each theme element
344 'normal-background':'#ffffff',
346 'keyword-background':'#ffffff',
348 'builtin-background':'#ffffff',
350 'comment-background':'#ffffff',
352 'string-background':'#ffffff'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
configHandler.py 310 back=themeDict['normal-background']
312 back=themeDict[element+'-background']
313 highlight={"foreground": fore,"background": back}
320 return highlight["background"]
339 #foreground and background values are provded for each theme element
344 'normal-background':'#ffffff',
346 'keyword-background':'#ffffff',
348 'builtin-background':'#ffffff',
350 'comment-background':'#ffffff',
352 'string-background':'#ffffff'
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ActionMonitor.java 38 * o) Background worker processing only - will trigger ActionCompletedListener when done
39 * o) Immediate local processing followed by background work followed by more local processing
41 * ActionCompletedListener when second set of local process (dealing with background
65 * {@link Action#executeAction} if there is no background work, or
97 * <li>Background worker request only : STATE_BACKGROUND_ACTIONS_QUEUED
101 * <li>Local plus background worker request : STATE_QUEUED - STATE_EXECUTING
114 // The background work has completed, either returning a success response or resulting in a
290 * {@link Action#executeAction} if there is no background work, or
335 * {@link Action#executeAction} if there is no background work, or
361 * @param hasBackgroundActions - has the completing action requested background wor
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
RippleDrawable.java 86 * background, the ripple will be drawn atop the first available parent
87 * background within the View's hierarchy. In this case, the drawing region
128 /** The current background. May be actively animating or pending entry. */
138 /** Whether we expect to draw a background when visible. */
324 // If we just became visible, ensure the background and ripple
563 // Don't null out the background, we need it to draw!
616 * background. Nothing will be drawn after this method is called.
848 final RippleBackground background = mBackground; local
850 if (active == null && count <= 0 && (background == null || !background.isVisible()))
942 final RippleBackground background = mBackground; local
    [all...]
  /external/libvorbis/examples/
frameview.pl 38 $toplevel->optionAdd("$Xname.background", "#4fc627",20);
40 $toplevel->optionAdd("$Xname.Panel.background", "#4fc627",20);
54 $toplevel->optionAdd("$Xname*background", "#d0d0d0",20);
57 $toplevel->optionAdd("$Xname*Button*background", "#f0d0b0",20);
63 #$toplevel->optionAdd("$Xname*Scale*background", "#f0d0b0",20);
69 $toplevel->optionAdd("$Xname*Checkbutton*background", "#f0d0b0",20);
92 $toplevel->optionAdd("$Xname*Exit*background", "#a0a0a0",20);
95 #$toplevel->optionAdd("$Xname*Canvas.background", "#c0c0c0",20);
97 $toplevel->optionAdd("$Xname*Entry.background", "#ffffff",20);
102 $toplevel->optionAdd("$Xname*Field.background", "#ffffff",20)
    [all...]
  /external/ImageMagick/PerlMagick/t/
subroutines.pl 24 # Usage: testFilterCompare( background image name, background read options,
38 my ($background,
52 $background=Image::Magick->new;
56 # Read background image
59 eval "\$status=\$background->Set($background_read_options);";
66 $status=$background->ReadImage($background_name);
92 eval "\$status=\$background->Composite(image=>\$composite, $composite_options);";
99 $background->Clamp();
100 $background->set(depth=>8)
    [all...]
  /art/runtime/gc/
gc_cause.cc 29 case kGcCauseBackground: return "Background";
  /build/make/tools/droiddoc/templates-pdk/assets/
yui-3.3.0-reset-min.css 8 html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p, (…)
  /cts/apps/CtsVerifier/res/layout/
da_tapjacking_overlay_activity.xml 21 android:background="@drawable/border"
fragment_complex_movement.xml 49 android:background="@drawable/round_button"
hifi_ultrasound_popup.xml 4 android:background="@android:color/white"
list_item.xml 25 android:background="#fff" />

Completed in 1324 milliseconds

<<61626364656667686970>>