/external/chromium_org/cc/test/ |
layer_tree_pixel_test.h | 48 SkColor color); 51 SkColor color,
|
/external/chromium_org/chrome/browser/resources/options/ |
clear_browser_data_overlay.css | 25 background-color: rgb(249, 237, 184);
|
manage_profile_overlay.css | 33 background-color: pink; 39 background-color: rgb(238, 185, 57); 60 background-color: rgba(255, 255, 255, 0.75); 114 color: #999;
|
/external/chromium_org/chrome/browser/resources/ |
policy.css | 98 color: rgb(100, 100, 100); 102 color: rgb(180, 180, 180); 140 background-color: rgb(240, 240, 240); 176 /* Cancel border-color for :focus specified in widgets.css. */ 177 border-color: rgba(0, 0, 0, 0.25);
|
/external/chromium_org/ppapi/examples/mouse_cursor/ |
mouse_cursor.cc | 16 uint32_t color) { 23 *image->GetAddr32(pp::Point(x, y)) = color;
|
/external/chromium_org/ppapi/tests/ |
test_graphics_2d.h | 40 uint32_t color) const; 55 // Validates that the given image is a single color with a square of another 56 // color inside it. 61 // Validates that the given device context is a single color with a square of 62 // another color inside it. 66 // Validates that the given device context is filled with the given color. 67 bool IsDCUniformColor(const pp::Graphics2D& dc, uint32_t color) const;
|
/external/chromium_org/ppapi/thunk/ |
ppb_browser_font_trusted_thunk.cc | 51 uint32_t color, 57 return enter.object()->DrawTextAt(image_data, text, position, color, clip,
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
indexedDBViews.css | 45 color: rgb(33%, 33%, 33%); 88 background-color: white; 92 background-color: #EAF3FF; 96 background-color: white;
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
ScrollbarThemeOverlay.cpp | 40 ScrollbarThemeOverlay::ScrollbarThemeOverlay(int thumbThickness, int scrollbarMargin, HitTestBehavior allowHitTest, Color color) 45 , m_color(color)
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebFontImpl.cpp | 91 WebColor color, const WebRect& clip, bool canvasIsOpaque, 105 gc.setFillColor(color);
|
/external/chromium_org/third_party/WebKit/Source/web/tests/data/ |
touch-action-tests.css | 53 background-color: red;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_state_blend.c | 79 /* save clamped color too */ 81 softpipe->blend_color_clamped.color[i] = 82 CLAMP(blend_color->color[i], 0.0f, 1.0f);
|
sp_tile_cache.h | 66 float color[TILE_SIZE][TILE_SIZE][4]; member in union:softpipe_cached_tile::__anon12766 91 union pipe_color_union clear_color; /**< for color bufs */ 126 const union pipe_color_union *color,
|
/external/chromium_org/ui/gfx/ |
render_text.h | 63 void DrawSelection(const std::vector<Rect>& selection, SkColor color); 96 SkColor color() const { return color_->second; } function in class:gfx::internal::StyleIterator 190 void set_cursor_color(SkColor color) { cursor_color_ = color; } 193 void set_selection_color(SkColor color) { selection_color_ = color; } 198 void set_selection_background_focused_color(SkColor color) { 199 selection_background_focused_color_ = color; 295 // Set the text color over the entire text or a logical character range. 351 // antialiasing is disabled and foreground color is forced to black [all...] |
/external/chromium_org/ui/views/controls/ |
slider.h | 66 void set_focus_border_color(SkColor color) { focus_border_color_ = color; }
|
/external/chromium_org/webkit/renderer/compositor_bindings/ |
web_filter_operations_impl.cc | 63 blink::WebColor color) { 65 offset, std_deviation, color));
|
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/ |
Renderer.java | 80 * @param color True if to clear colors (RGBA) 85 public void clearBuffers(boolean color, boolean depth, boolean stencil); 88 * Sets the background (aka clear) color. 90 * @param color The background color to set 92 public void setBackgroundColor(ColorRGBA color); 201 * set copyDepth to false to only copy the color buffers. 221 * Only color pixels are transferred, the format is BGRA with 8 bits 226 * @param byteBuf The bytebuffer to transfer color data to
|
ViewPort.java | 53 * The background color which the color buffer is cleared to can be specified 170 * Check if color buffer clearing is enabled. 172 * @return true if color buffer clearing is enabled. 181 * Enable or disable clearing of the color buffer for this ViewPort. 183 * By default color clearing is disabled. 185 * @param clearColor Enable/disable color buffer clearing. 214 * Set the clear flags (color, depth, stencil) in one call. 216 * @param color If color buffer clearing should be enabled [all...] |
/external/kernel-headers/original/linux/ |
rbtree.h | 127 static inline void rb_set_color(struct rb_node *rb, int color) 129 rb->rb_parent_color = (rb->rb_parent_color & ~1) | color;
|
/external/linux-tools-perf/util/include/linux/added/ |
rbtree.h | 133 static inline void rb_set_color(struct rb_node *rb, int color) 135 rb->rb_parent_color = (rb->rb_parent_color & ~1) | color;
|
/external/llvm/utils/lit/lit/ |
ProgressBar.py | 30 support color, except that their output will not be colored. 118 for i,color in zip(range(len(self._COLORS)), self._COLORS): 119 setattr(self, color, curses.tparm(set_fg, i) or '') 122 for i,color in zip(range(len(self._ANSICOLORS)), self._ANSICOLORS): 123 setattr(self, color, curses.tparm(set_fg_ansi, i) or '') 126 for i,color in zip(range(len(self._COLORS)), self._COLORS): 127 setattr(self, 'BG_'+color, curses.tparm(set_bg, i) or '') 130 for i,color in zip(range(len(self._ANSICOLORS)), self._ANSICOLORS): 131 setattr(self, 'BG_'+color, curses.tparm(set_bg_ansi, i) or '') 206 The progress bar is colored, if the terminal supports color [all...] |
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_state_blend.c | 79 /* save clamped color too */ 81 softpipe->blend_color_clamped.color[i] = 82 CLAMP(blend_color->color[i], 0.0f, 1.0f);
|
sp_tile_cache.h | 66 float color[TILE_SIZE][TILE_SIZE][4]; member in union:softpipe_cached_tile::__anon23233 91 union pipe_color_union clear_color; /**< for color bufs */ 126 const union pipe_color_union *color,
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
ColorResourceLoader.java | 3 import android.graphics.Color; 10 private ResourceReferenceResolver<Integer> colorResolver = new ResourceReferenceResolver<Integer>("color"); 14 androidColors.put("black", Color.BLACK); 15 androidColors.put("darkgray", Color.DKGRAY); 16 androidColors.put("gray", Color.GRAY); 17 androidColors.put("lightgray", Color.LTGRAY); 18 androidColors.put("white", Color.WHITE); 19 androidColors.put("red", Color.RED); 20 androidColors.put("green", Color.GREEN); 21 androidColors.put("blue", Color.BLUE) 49 long color = Long.parseLong(rawValue.substring(1), 16); local [all...] |
/frameworks/base/core/java/android/os/ |
IPowerManager.aidl | 55 void setAttentionLight(boolean on, int color);
|