HomeSort by relevance Sort by last modified time
    Searched defs:color (Results 276 - 300 of 891) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/dvb/
osd.h 60 int color; member in struct:osd_cmd_s
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/dvb/
osd.h 60 int color; member in struct:osd_cmd_s
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ElementDescriptor.java 254 int color = hasChildren() ? IconFactory.COLOR_BLUE local
267 Image icon = factory.getIcon(name, color, shape);
288 int color = hasChildren() ? IconFactory.COLOR_BLUE : IconFactory.COLOR_GREEN; local
290 ImageDescriptor id = factory.getImageDescriptor(mXmlName, color, shape);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourcePreviewHelper.java 95 boolean showPreview = type == ResourceType.DRAWABLE || type == ResourceType.COLOR;
127 if (type == ResourceType.COLOR) {
131 RGB color = ResourceHelper.resolveColor(resources, value); local
132 if (color != null) {
133 image = ImageUtils.createColoredImage(WIDTH, HEIGHT, color);
  /developers/build/prebuilts/gradle/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 21 import android.graphics.Color;
289 // Canvas background color depends on whether there is an active touch
326 private static final int BACKGROUND_ACTIVE = Color.WHITE;
352 mTextPaint.setColor(Color.BLACK);
374 // select the color based on the id
375 int color = COLORS[id % COLORS.length]; local
376 mCirclePaint.setColor(color);
  /developers/build/prebuilts/gradle/BasicTransition/Application/src/main/java/com/example/android/common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /developers/build/prebuilts/gradle/SlidingTabsBasic/Application/src/main/java/com/example/android/common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /developers/build/prebuilts/gradle/SlidingTabsColors/Application/src/main/java/com/example/android/common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /developers/build/prebuilts/gradle/SwipeRefreshLayoutBasic/Application/src/main/java/com/example/android/common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/src/main/java/com/example/android/common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /developers/build/prebuilts/gradle/SwipeRefreshMultipleViews/Application/src/main/java/com/example/android/common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /developers/samples/android/common/src/java/com/example/android/common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /developers/samples/android/input/multitouch/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 21 import android.graphics.Color;
289 // Canvas background color depends on whether there is an active touch
326 private static final int BACKGROUND_ACTIVE = Color.WHITE;
352 mTextPaint.setColor(Color.BLACK);
374 // select the color based on the id
375 int color = COLORS[id % COLORS.length]; local
376 mCirclePaint.setColor(color);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationCloning.java 116 int color = 0xff000000 | red << 16 | green << 8 | blue; local
120 50f, color, darkColor, Shader.TileMode.CLAMP);
BouncingBalls.java 66 // Animate background color
67 // Note that setting the background color will automatically invalidate the
68 // view, so that the animated color, and the bouncing balls, get redisplayed on
162 int color = 0xff000000 | red << 16 | green << 8 | blue; local
166 50f, color, darkColor, Shader.TileMode.CLAMP);
MultiPropertyAnimation.java 153 int color = 0xff000000 | red << 16 | green << 8 | blue; local
157 50f, color, darkColor, Shader.TileMode.CLAMP);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShadowCardDrag.java 22 import android.graphics.Color;
89 int color = Color.rgb(alphaByte, alphaByte, alphaByte); local
90 mCardBackground.setColorFilter(color, PorterDuff.Mode.MULTIPLY);
162 mCardBackground.getPaint().setColor(Color.WHITE);
WindowSurface.java 249 int color = 0xff000000 | (red<<16) | blue; local
250 mForeground.setColor(color | makeGreen(-2));
263 mOldColor[0] = color;
  /development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/
TouchDisplayView.java 21 import android.graphics.Color;
289 // Canvas background color depends on whether there is an active touch
326 private static final int BACKGROUND_ACTIVE = Color.WHITE;
352 mTextPaint.setColor(Color.BLACK);
374 // select the color based on the id
375 int color = COLORS[id % COLORS.length]; local
376 mCirclePaint.setColor(color);
  /development/samples/browseable/BasicTransition/src/com.example.android.common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /development/samples/browseable/SlidingTabsBasic/src/com.example.android.common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /development/samples/browseable/SlidingTabsColors/src/com.example.android.common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /development/samples/browseable/SwipeRefreshListFragment/src/com.example.android.common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]
  /development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.common/view/
SlidingTabStrip.java 22 import android.graphics.Color;
130 int color = tabColorizer.getIndicatorColor(mSelectedPosition); local
134 if (color != nextColor) {
135 color = blendColors(nextColor, color, mSelectionOffset);
146 mSelectedIndicatorPaint.setColor(color);
166 * Set the alpha value of the {@code color} to be the given {@code alpha} value.
168 private static int setColorAlpha(int color, byte alpha) {
169 return Color.argb(alpha, Color.red(color), Color.green(color), Color.blue(color))
    [all...]

Completed in 1773 milliseconds

<<11121314151617181920>>