/external/skia/gm/ |
circles.cpp | 161 SkColor color = rand.nextU(); variable 162 color |= 0xff000000; 163 fPaints[i].setColor(color); 182 SkColor color = rand.nextU(); variable 183 color |= 0xff000000; 184 paint.setColor(color);
|
/external/webkit/Source/WebCore/inspector/front-end/ |
audits.css | 56 background-color: white; 80 color: rgb(110, 116, 128); 113 color: rgb(6, 6, 6); 114 background-color: transparent; 116 background-color: rgb(237, 237, 237); 130 background-color: rgb(215, 215, 215); 135 color: rgb(130, 130, 130); 136 border-color: rgb(212, 212, 212); 137 background-color: rgb(239, 239, 239); 150 color: rgb(130, 130, 130) [all...] |
inspector.css | 58 outline: auto 5px -webkit-focus-ring-color; 115 background-color: transparent; 117 border-color: transparent; 185 background-color: transparent; 213 background-color: inherit; 240 background: -webkit-gradient(linear, left top, left bottom, from(rgba(128, 128, 128, 0.6)), to(rgba(128, 128, 128, 0.6)), color-stop(20%, rgba(158, 158, 158, 0.2)), color-stop(80%, rgba(158, 158, 158, 0.2))); 279 background: -webkit-gradient(linear, left top, right top, from(rgb(192, 192, 192)), to(rgb(192, 192, 192)), color-stop(40%, rgb(214, 214, 214))); 286 background: -webkit-gradient(linear, left top, right top, from(rgb(230, 230, 230)), to(rgb(230, 230, 230)), color-stop(40%, rgb(252, 252, 252))); 290 background: -webkit-gradient(linear, left top, right top, from(rgb(128, 128, 128)), to(rgb(164, 164, 164)), color-stop(25%, rgb(164, 164, 164))) [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
DrawQuadData.h | 31 #include "Color.h" 90 virtual Color quadColor() const { return Color(); } 110 PureColorQuadData(Color color, 118 m_quadColor = color; 121 PureColorQuadData(const DrawQuadData& data, Color color) 124 m_quadColor = color; 129 virtual Color quadColor() const { return m_quadColor; [all...] |
/frameworks/opt/colorpicker/src/com/android/colorpicker/ |
ColorPickerPalette.java | 31 * A color picker custom view which creates an grid of color squares. The number of squares per 96 for (int color : colors) { 99 View colorSwatch = createColorSwatch(color, selectedColor); 100 setSwatchDescription(rowNumber, tableElements, rowElements, color == selectedColor, 174 * Creates a color swatch. 176 private ColorPickerSwatch createColorSwatch(int color, int selectedColor) { 177 ColorPickerSwatch view = new ColorPickerSwatch(getContext(), color, 178 color == selectedColor, mOnColorSelectedListener);
|
/packages/apps/Camera/src/com/android/camera/ |
PanoProgressBar.java | 84 public void setBackgroundColor(int color) { 85 mBackgroundPaint.setColor(color); 89 public void setDoneColor(int color) { 90 mDoneAreaPaint.setColor(color); 94 public void setIndicatorColor(int color) { 95 mIndicatorPaint.setColor(color);
|
/packages/apps/Contacts/src/com/android/contacts/widget/ |
TextHighlightingAnimation.java | 19 import android.graphics.Color; 136 * A Span that modifies alpha of the default foreground color. 164 int color = ds.getColor(); local 165 color = Color.argb(mAlpha, Color.red(color), Color.green(color), Color.blue(color)) [all...] |
/packages/apps/Gallery2/src/com/android/camera/ |
PanoProgressBar.java | 84 public void setBackgroundColor(int color) { 85 mBackgroundPaint.setColor(color); 89 public void setDoneColor(int color) { 90 mDoneAreaPaint.setColor(color); 94 public void setIndicatorColor(int color) { 95 mIndicatorPaint.setColor(color);
|
/packages/apps/LegacyCamera/src/com/android/camera/panorama/ |
PanoProgressBar.java | 82 public void setBackgroundColor(int color) { 83 mBackgroundPaint.setColor(color); 87 public void setDoneColor(int color) { 88 mDoneAreaPaint.setColor(color); 92 public void setIndicatorColor(int color) { 93 mIndicatorPaint.setColor(color);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
TestGraphics.java | 142 public void setBackground(@NonNull IColor color) { 143 mDrawn.add("setBackground(" + color + ")"); 144 mBackground = color; 148 public void setForeground(@NonNull IColor color) { 149 mDrawn.add("setForeground(" + color + ")"); 150 mForeground = color;
|
/external/chromium/chrome/browser/resources/touch_ntp/ |
newtab.css | 18 color-stop(0.5,#3e485b), to(#252c39)); 22 color: white; 26 -webkit-tap-highlight-color: transparent; 100 color: white; 161 background-color: #3d465f; 178 background-color: #b3bbd3;
|
/external/opencv/otherlibs/highgui/ |
grfmt_jpeg.h | 59 bool ReadData( uchar* data, int step, int color ); 115 bool ReadData( uchar* data, int step, int color ); 156 void ProcessScan( int* idx, int ns, uchar* data, int step, int color );
|
grfmt_bmp.h | 64 bool ReadData( uchar* data, int step, int color );
|
/external/webkit/Source/WebCore/css/ |
fullscreenQuickTime.css | 43 color-stop(0, rgba(30, 30, 30, .97)), 44 color-stop(0.333, rgba(45, 45, 45, .97)), 45 color-stop(0.35, rgba(25, 25, 25, .97)), 46 color-stop(0.366, rgba(25, 25, 25, .97)), 47 color-stop(0.366, rgba(12, 12, 12, .97)), 48 color-stop(1, rgba(19, 19, 19, .97))
|
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
GraphicsContextOpenVG.cpp | 163 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace) 168 Color oldColor = m_data->fillColor(); 169 m_data->setFillColor(color); 176 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace) 181 Color oldColor = m_data->fillColor(); 182 m_data->setFillColor(color); 205 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int offset, const Color& color) [all...] |
/bionic/libc/kernel/common/linux/ |
leds-an30259a.h | 30 __u32 color; member in struct:an30259a_pr_control
|
/build/tools/rgb2565/ |
to565.c | 104 unsigned short last, color, count; local 109 color = to565(in[0],in[1],in[2]); 111 if ((color == last) && (count != 65535)) { 120 last = color;
|
/cts/tests/tests/textureview/src/android/textureview/cts/ |
TextureViewTestActivity.java | 89 private final float[][] color = field in class:TextureViewTestActivity.GLRendererImpl 98 glClearColor(color[index][0], color[index][1], color[index][2], 1.0f);
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/ |
main.css | 24 background-color: #fff; 30 color: #0033cc;
|
/external/chromium/chrome/browser/resources/gpu_internals/ |
timeline.css | 12 background-color: rgba(0, 0, 255, 0.25); 32 background-color: white;
|
/external/chromium/chrome/browser/resources/ntp4/ |
recently_closed.css | 28 background-color: transparent !important; 46 /* TODO(estade): find a better color for active. */ 50 color: hsl(213, 90%, 24%) !important;
|
/external/chromium/chrome/browser/ui/views/location_bar/ |
selected_keyword_view.h | 25 const SkColor& color,
|
/external/clang/www/analyzer/ |
menu.css | 9 background-color: #EBF0FA; 33 background-color: #EBF0FA;
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/ |
TextureBlender.java | 31 * This method blends the given texture with material color and the defined
32 * color in 'map to' panel. As a result of this method a new texture is
36 * the material diffuse color
39 * @param color
40 * the color defined for the texture
42 * the factor that the color affects the texture (value form 0.0
50 Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext);
|
/external/kernel-headers/original/linux/ |
leds-an30259a.h | 29 * the behavior for all 3 color components: R, G and B. 30 * If 3 structs are passed, then each one is assumed to describe a single color: 33 * Requesting a color value of 0 is equivalent to requesting LED_LIGHT_OFF 35 * If only describing a single color (ie passing a single struct), then 39 * LIGHT_ON only requires color 40 * LIGHT_PULSE requires color, time_on and time_off 51 /* LED color in RGB format */ 52 __u32 color; member in struct:an30259a_pr_control 59 /* time to reach color from mid_brightness_up in ms */ 69 /* mid point brightness in 1/128 increments of color */ [all...] |