HomeSort by relevance Sort by last modified time
    Searched refs:arrowSize (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/platform/gtk/
ScrollbarThemeGtk2.cpp 188 IntSize arrowSize = rect.size();
189 arrowSize.scale(arrowScaling);
190 IntRect arrowRect(IntPoint(buttonRect.x() + (buttonRect.width() - arrowSize.width()) / 2,
191 buttonRect.y() + (buttonRect.height() - arrowSize.height()) / 2),
192 arrowSize);
ScrollbarThemeGtk3.cpp 146 double arrowSize = std::min(rect.width(), rect.height()) * arrowScaling;
147 FloatPoint arrowPoint(rect.x() + (rect.width() - arrowSize) / 2,
148 rect.y() + (rect.height() - arrowSize) / 2);
166 gtk_render_arrow(m_context, context->platformContext()->cr(), angle, arrowPoint.x(), arrowPoint.y(), arrowSize);
RenderThemeGtk2.cpp 381 int arrowSize = comboBoxArrowSize(style);
384 IntRect arrowRect(0, (rect.height() - arrowSize) / 2, arrowSize, arrowSize);
388 arrowRect.setX(rect.width() - rightBorder - buttonStyle->xthickness - arrowSize);
630 int arrowSize = (expandedRect.width() - 3) / 2;
631 arrowSize -= (arrowSize % 2) - 1; // Force odd.
632 arrowRect.setWidth(arrowSize);
633 arrowRect.setHeight(arrowSize);
    [all...]
RenderThemeGtk3.cpp 486 IntSize arrowSize(minArrowSize, innerRect.height());
489 arrowPosition.move(innerRect.width() - arrowSize.width(), 0);
493 gint extent = std::min(arrowSize.width(), arrowSize.height()) * arrowScaling;
494 arrowPosition.move((arrowSize.width() - extent) / 2, (arrowSize.height() - extent) / 2);
526 separatorPosition.move(arrowSize.width(), 0);
540 separatorPosition.move(arrowSize.width(), 0);
730 gint arrowSize = max(PANGO_PIXELS(fontSize), minSpinButtonArrowSize);
732 return arrowSize - arrowSize % 2; // Force even
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 329 float arrowSize = ps.mCoords.toolMajor * 0.7f;
330 if (arrowSize < 20) {
331 arrowSize = 20;
335 * arrowSize);
337 * arrowSize);

Completed in 469 milliseconds