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/
Popover.js
152
const
borderRadius
= 10;
168
if ((anchorBox.y > newElementPosition.height + arrowHeight +
borderRadius
) || (arrowDirection === WebInspector.Popover.Orientation.Bottom))
171
newElementPosition.y =
borderRadius
;
172
newElementPosition.height = anchorBox.y -
borderRadius
* 2 - arrowHeight;
174
newElementPosition.y =
borderRadius
;
183
newElementPosition.height = totalHeight - anchorBox.y - anchorBox.height -
borderRadius
* 2 - arrowHeight;
185
newElementPosition.y = totalHeight - preferredHeight -
borderRadius
;
195
newElementPosition.x = Math.max(
borderRadius
, anchorBox.x -
borderRadius
- arrowOffset);
197
} else if (newElementPosition.width +
borderRadius
* 2 < totalWidth)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMediaControls.cpp
133
int
borderRadius
= rect.height() / 2;
134
IntSize radii(
borderRadius
,
borderRadius
);
145
int
borderRadius
= rect.height() / 2;
146
IntSize radii(
borderRadius
,
borderRadius
);
157
if (startOffset <
borderRadius
&& rangeWidth <
borderRadius
)
158
rangeWidth =
borderRadius
;
159
if (endOffset <
borderRadius
&& rangeWidth < borderRadius)
[
all
...]
RenderThemeChromiumMac.mm
[
all
...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterColorBorderRepresentation.java
155
public void setBorderRadius(int
borderRadius
) {
156
mParamRadius.setValue(
borderRadius
);
/external/chromium_org/ui/native_theme/
native_theme_base.h
165
//
borderRadius
specifies how rounded the corners should be.
170
const SkScalar
borderRadius
) const;
native_theme_base.cc
520
const SkScalar
borderRadius
) const {
560
canvas->drawRoundRect(shadowRect,
borderRadius
,
borderRadius
, paint);
585
canvas->drawRoundRect(skrect,
borderRadius
,
borderRadius
, paint);
598
canvas->drawRoundRect(skrect,
borderRadius
,
borderRadius
, paint);
[
all
...]
Completed in 70 milliseconds