HomeSort by relevance Sort by last modified time
    Searched refs:border (Results 1 - 25 of 887) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/trace-viewer/src/ui/
rect_view.css 7 border: 1px solid #999;
info_bar.css 9 border-bottom: 1px solid #A3A3A3;
10 border-left: 1px solid white;
11 border-right: 1px solid #A3A3A3;
12 border-top: 1px solid white;
drag_handle.css 8 box-sizing: border-box;
17 border-bottom: 1px solid #8e8e8e;
18 border-top: 1px solid white;
30 border-left: 1px solid white;
31 border-right: 1px solid #8e8e8e;
tool_button.css 9 border-bottom: 1px solid #BCBCBC;
10 border-top: 1px solid #F1F1F1;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleSurroundData.cpp 38 , border(o.border)
44 return offset == o.offset && margin == o.margin && padding == o.padding && border == o.border;
CachedUAStyle.h 49 border = style->border();
55 BorderData border; member in class:WebCore::CachedUAStyle
  /external/chromium_org/chrome/browser/resources/chromeos/
wrench_menu.css 13 border: solid 1px rgba(0, 0, 0, 0.3);
14 border-radius: 3px;
26 border: solid 1px rgba(0, 0, 0, 0.3);
27 border-bottom-left-radius: 3px;
28 border-top-left-radius: 3px;
32 border: solid 1px rgba(0, 0, 0, 0.3);
33 border-bottom-right-radius: 3px;
34 border-top-right-radius: 3px;
38 border-bottom: solid 1px rgba(0, 0, 0, 0.3);
39 border-top: solid 1px rgba(0, 0, 0, 0.3)
    [all...]
bluetooth_pair_device.css 10 border: 0;
  /external/chromium_org/ui/gfx/
insets.cc 23 Insets::Insets(const GtkBorder& border)
24 : InsetsBase<Insets, int>(border.top,
25 border.left,
26 border.bottom,
27 border.right) {
  /external/chromium_org/chrome/browser/resources/options/
startup_overlay.css 30 border: 2px solid hsl(214, 91%, 65%);
31 border-bottom-color: transparent;
32 border-radius: 0;
33 border-top-color: transparent;
34 box-sizing: border-box;
certificate_tree.css 7 border: 1px solid red;
8 border-radius: 3px;
  /external/chromium_org/chrome/browser/ui/gtk/
constrained_window_gtk.cc 28 GtkWidget* border = gtk_event_box_new(); local
43 gtk_container_add(GTK_CONTAINER(border), frame);
45 gtk_widget_add_events(border, GDK_KEY_PRESS_MASK);
46 g_signal_connect(border,
53 g_object_set_data(G_OBJECT(border), "focus_widget", focus_widget);
55 return border;
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
webtreemap.css 36 border: solid 1px black; /* Calculations assume 1px border. */
52 border: solid 1px #444;
55 border: solid 1px #666;
58 border: solid 1px #888;
61 border: solid 1px #aaa;
64 border: solid 1px #ccc;
  /external/chromium_org/chrome/browser/resources/predictors/
predictors.css 13 border: 1px solid rgb(187, 187, 187);
14 border-radius: 2px;
28 border-color: gray;
29 border-style: solid;
30 border-width: 1px;
36 border-color: lightgray;
37 border-style: solid;
38 border-width: 1px;
  /external/chromium_org/third_party/WebKit/Source/core/css/
themeChromiumAndroid.css 38 border: 1px solid;
39 border-radius: initial;
  /cts/tools/tradefed-host/res/report/
cts_result.css 28 border-width: 0px;
36 border-collapse:collapse;
37 border: 0px solid #A5C639;
49 border-width: 0px 0px 0px 0px;
50 border-color: gray;
51 border-style: inset;
59 border-collapse:collapse;
66 border: 1px outset gray;
71 border: 1px outset #A5C639;
78 border-collapse:collapse
    [all...]
  /external/libvpx/libvpx/vpx_scale/
yv12config.h 51 int border; member in struct:yv12_buffer_config
59 int width, int height, int border);
61 int width, int height, int border);
66 int border);
69 int border);
  /external/chromium/chrome/browser/resources/gpu_internals/
tracing_controller.css 26 border-top-right-radius: 8px;
27 border-top-left-radius: 8px;
28 background-clip: border-box;
30 border: 1px solid black;
31 border-bottom: 0;
  /external/chromium-trace/trace-viewer/src/about_tracing/
tracing_controller.css 19 background-clip: border-box;
20 border: 1px solid black;
21 border-bottom: 0;
22 border-top-left-radius: 8px;
23 border-top-right-radius: 8px;
  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 39 int width, int height, int border) {
43 int y_stride = ((aligned_width + 2 * border) + 31) & ~31;
44 int yplane_size = (aligned_height + 2 * border) * y_stride;
50 int uvplane_size = (uv_height + border) * uv_stride;
61 /* Only support allocating buffers that have a border that's a multiple
62 * of 32. The border restriction is required to get 16-byte alignment of
66 if (border & 0x1f)
83 ybf->border = border;
86 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Pyramid.cpp 28 real width, real height, real border)
30 real border2 = (real) (border << 1);
44 curr->border = border;
46 curr->ptr = y + border;
50 *y = position + border;
62 PyramidShort *PyramidShort::allocateImage(real width, real height, real border)
64 real border2 = (real) (border << 1);
74 img->border = border;
    [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
Pyramid.cpp 28 real width, real height, real border)
30 real border2 = (real) (border << 1);
44 curr->border = border;
46 curr->ptr = y + border;
50 *y = position + border;
62 PyramidShort *PyramidShort::allocateImage(real width, real height, real border)
64 real border2 = (real) (border << 1);
74 img->border = border;
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Pyramid.cpp 28 real width, real height, real border)
30 real border2 = (real) (border << 1);
44 curr->border = border;
46 curr->ptr = y + border;
50 *y = position + border;
62 PyramidShort *PyramidShort::allocateImage(real width, real height, real border)
64 real border2 = (real) (border << 1);
74 img->border = border;
    [all...]
  /external/chromium_org/chrome/browser/resources/print_preview/settings/
copies_settings.css 45 border-radius: 0;
50 border-bottom-left-radius: 0;
51 border-bottom-right-radius: 3px;
52 border-top-left-radius: 0;
53 border-top-right-radius: 3px;
57 border-bottom-left-radius: 3px;
58 border-bottom-right-radius: 0;
59 border-top-left-radius: 3px;
60 border-top-right-radius: 0;
  /external/chromium_org/ui/webui/resources/css/
list.css 18 border: 1px solid rgba(255, 255, 255, 0); /* transparent white */
19 border-radius: 2px;
40 border-color: transparent;
45 border-color: hsl(214, 91%, 65%);
57 border-color: hsl(214, 91%, 85%);
66 border-color: hsl(0, 0%, 85%);
73 border-color: hsl(214, 91%, 65%);
81 border-color: hsl(214, 91%, 65%);
86 border: 0;
87 box-sizing: border-box
    [all...]

Completed in 486 milliseconds

1 2 3 4 5 6 7 8 91011>>