OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:borderRadius
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Popover.js
153
const
borderRadius
= 10;
172
if ((anchorBox.y > newElementPosition.height + arrowHeight +
borderRadius
) || (arrowDirection === WebInspector.Popover.Orientation.Bottom))
175
newElementPosition.y =
borderRadius
;
176
newElementPosition.height = anchorBox.y -
borderRadius
* 2 - arrowHeight;
178
newElementPosition.y =
borderRadius
;
186
if ((newElementPosition.y + newElementPosition.height +
borderRadius
>= totalHeight) && (arrowDirection !== WebInspector.Popover.Orientation.Top)) {
187
newElementPosition.height = totalHeight -
borderRadius
- newElementPosition.y;
189
newElementPosition.y = totalHeight - preferredHeight -
borderRadius
;
199
newElementPosition.x = Math.max(
borderRadius
, anchorBox.x -
borderRadius
- arrowOffset)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMediaControls.cpp
133
int
borderRadius
= rect.height() / 2;
134
IntSize radii(
borderRadius
,
borderRadius
);
143
int
borderRadius
= rect.height() / 2;
144
IntSize radii(
borderRadius
,
borderRadius
);
155
if (startOffset <
borderRadius
&& rangeWidth <
borderRadius
)
156
rangeWidth =
borderRadius
;
157
if (endOffset <
borderRadius
&& rangeWidth < borderRadius
[
all
...]
RenderThemeChromiumMac.mm
[
all
...]
/external/chromium_org/third_party/polymer/components-chromium/core-animated-pages/transitions/
hero-transition-extracted.js
34
h.h1.style.
borderRadius
= h.r1;
90
r0: c0.
borderRadius
,
93
r1: c1.
borderRadius
110
h.h1.style.
borderRadius
= h.r0;
/external/chromium_org/ui/native_theme/
native_theme_base.h
195
//
borderRadius
specifies how rounded the corners should be.
200
const SkScalar
borderRadius
) const;
native_theme_base.cc
567
const SkScalar
borderRadius
) const {
607
canvas->drawRoundRect(shadowRect,
borderRadius
,
borderRadius
, paint);
632
canvas->drawRoundRect(skrect,
borderRadius
,
borderRadius
, paint);
645
canvas->drawRoundRect(skrect,
borderRadius
,
borderRadius
, paint);
[
all
...]
Completed in 580 milliseconds