/external/webkit/Source/WebCore/platform/gtk/ |
D | ScrollbarThemeGtk2.cpp | 188 IntSize arrowSize = rect.size(); in paintButton() local 189 arrowSize.scale(arrowScaling); in paintButton() 190 IntRect arrowRect(IntPoint(buttonRect.x() + (buttonRect.width() - arrowSize.width()) / 2, in paintButton() 191 buttonRect.y() + (buttonRect.height() - arrowSize.height()) / 2), in paintButton() 192 arrowSize); in paintButton()
|
D | ScrollbarThemeGtk3.cpp | 146 double arrowSize = std::min(rect.width(), rect.height()) * arrowScaling; in paintButton() local 147 FloatPoint arrowPoint(rect.x() + (rect.width() - arrowSize) / 2, in paintButton() 148 rect.y() + (rect.height() - arrowSize) / 2); in paintButton() 166 …row(m_context, context->platformContext()->cr(), angle, arrowPoint.x(), arrowPoint.y(), arrowSize); in paintButton()
|
D | RenderThemeGtk2.cpp | 381 int arrowSize = comboBoxArrowSize(style); in paintMenuList() local 384 IntRect arrowRect(0, (rect.height() - arrowSize) / 2, arrowSize, arrowSize); in paintMenuList() 388 arrowRect.setX(rect.width() - rightBorder - buttonStyle->xthickness - arrowSize); in paintMenuList() 630 int arrowSize = (expandedRect.width() - 3) / 2; in paintInnerSpinButton() local 631 arrowSize -= (arrowSize % 2) - 1; // Force odd. in paintInnerSpinButton() 632 arrowRect.setWidth(arrowSize); in paintInnerSpinButton() 633 arrowRect.setHeight(arrowSize); in paintInnerSpinButton()
|
D | RenderThemeGtk3.cpp | 486 IntSize arrowSize(minArrowSize, innerRect.height()); in paintMenuList() local 489 arrowPosition.move(innerRect.width() - arrowSize.width(), 0); in paintMenuList() 493 gint extent = std::min(arrowSize.width(), arrowSize.height()) * arrowScaling; in paintMenuList() 494 arrowPosition.move((arrowSize.width() - extent) / 2, (arrowSize.height() - extent) / 2); in paintMenuList() 526 separatorPosition.move(arrowSize.width(), 0); in paintMenuList() 540 separatorPosition.move(arrowSize.width(), 0); in paintMenuList() 730 gint arrowSize = max(PANGO_PIXELS(fontSize), minSpinButtonArrowSize); in spinButtonArrowSize() local 732 return arrowSize - arrowSize % 2; // Force even. in spinButtonArrowSize()
|
/external/jmonkeyengine/engine/src/test/jme3test/terrain/ |
D | TerrainTestAdvanced.java | 268 protected Node createAxisMarker(float arrowSize) { in createAxisMarker() argument 285 Geometry arrowX = new Geometry("arrowX", new Arrow(new Vector3f(arrowSize, 0, 0))); in createAxisMarker() 287 Geometry arrowY = new Geometry("arrowY", new Arrow(new Vector3f(0, arrowSize, 0))); in createAxisMarker() 289 Geometry arrowZ = new Geometry("arrowZ", new Arrow(new Vector3f(0, 0, arrowSize))); in createAxisMarker()
|
D | TerrainGridAlphaMapTest.java | 329 protected Node createAxisMarker(float arrowSize) { in createAxisMarker() argument 346 Geometry arrowX = new Geometry("arrowX", new Arrow(new Vector3f(arrowSize, 0, 0))); in createAxisMarker() 348 Geometry arrowY = new Geometry("arrowY", new Arrow(new Vector3f(0, arrowSize, 0))); in createAxisMarker() 350 Geometry arrowZ = new Geometry("arrowZ", new Arrow(new Vector3f(0, 0, arrowSize))); in createAxisMarker()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
D | CTableCombo.java | 545 Point arrowSize = m_arrow.computeSize(SWT.DEFAULT, SWT.DEFAULT, changed); in computeSize() local 554 height = Math.max(hHint, Math.max(textSize.y, arrowSize.y) + 2 * borderWidth); in computeSize() 555 width = Math.max(wHint, Math.max(textSize.x + arrowSize.x, tableWidth) + 2 * borderWidth); in computeSize() 567 Point arrowSize = m_arrow.computeSize(SWT.DEFAULT, height); in internalLayout() local 568 m_text.setBounds(rect.x, rect.y, width - arrowSize.x, height); in internalLayout() 569 m_arrow.setBounds(rect.x + width - arrowSize.x, rect.y, arrowSize.x, arrowSize.y); in internalLayout()
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_button_cell_unittest.mm | 178 NSSize arrowSize = [cell cellSize]; 179 EXPECT_GT(arrowSize.width, size.width);
|
/external/webkit/Source/WebCore/platform/android/ |
D | RenderThemeAndroid.cpp | 633 const int arrowSize = bounds.height(); in paintCombo() local 636 context->fillRect(FloatRect(bounds.maxX() - arrowSize + 0.5f, bounds.y() + .5f, in paintCombo() 637 arrowSize - 1, bounds.height() - 1)); in paintCombo() 647 const float aw = arrowSize - 10; in paintCombo()
|