Searched defs:adjacentWidth1 (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/android/
H A DRenderThemeAndroid.cpp104 int adjacentWidth1, int adjacentWidth2)
108 if (!adjacentWidth1 && !adjacentWidth2) {
120 quad[0] = FloatPoint(x1 + max(-adjacentWidth1, 0), y1);
121 quad[1] = FloatPoint(x1 + max(adjacentWidth1, 0), y2);
126 quad[0] = FloatPoint(x1 + max(adjacentWidth1, 0), y1);
127 quad[1] = FloatPoint(x1 + max(-adjacentWidth1, 0), y2);
132 quad[0] = FloatPoint(x1, y1 + max(-adjacentWidth1, 0));
135 quad[3] = FloatPoint(x2, y1 + max(adjacentWidth1, 0));
138 quad[0] = FloatPoint(x1, y1 + max(adjacentWidth1, 0));
141 quad[3] = FloatPoint(x2, y1 + max(-adjacentWidth1,
102 drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2, BoxSide side, Color color, int adjacentWidth1, int adjacentWidth2) argument
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderObject.cpp711 int adjacentWidth1, int adjacentWidth2, bool antialias)
748 if (adjacentWidth1 == 0 && adjacentWidth2 == 0) {
773 int adjacent1BigThird = ((adjacentWidth1 > 0) ? adjacentWidth1 + 1 : adjacentWidth1 - 1) / 3;
778 drawLineForBoxSide(graphicsContext, x1 + max((-adjacentWidth1 * 2 + 1) / 3, 0),
781 drawLineForBoxSide(graphicsContext, x1 + max((adjacentWidth1 * 2 + 1) / 3, 0),
786 drawLineForBoxSide(graphicsContext, x1, y1 + max((-adjacentWidth1 * 2 + 1) / 3, 0),
789 drawLineForBoxSide(graphicsContext, x2 - third, y1 + max((adjacentWidth1 * 2 + 1) / 3, 0),
794 drawLineForBoxSide(graphicsContext, x1 + max((adjacentWidth1 *
709 drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2, BoxSide side, Color color, EBorderStyle style, int adjacentWidth1, int adjacentWidth2, bool antialias) argument
[all...]

Completed in 68 milliseconds