Home
last modified time | relevance | path

Searched refs:Rectangle (Results 1 – 25 of 56) sorted by relevance

123

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
DFingerPrintGraph.java30 import org.eclipse.swt.graphics.Rectangle;
118 Rectangle zone;
121 AreaZone(Rectangle zone, String tooltip) { in AreaZone()
164 void addArea(Rectangle rec, String tooltip) { in addArea()
254 Rectangle rec = new Rectangle(MARGIN, y + (GAP/2), baselineBarLength, BAR_HEIGHT); in drawBars()
259 Rectangle recValue = new Rectangle(MARGIN, y + (GAP/2), wr, BAR_HEIGHT); in drawBars()
262 Rectangle recError = new Rectangle(MARGIN+wr, y + (GAP/2), baselineErrorLength*2, BAR_HEIGHT); in drawBars()
264Rectangle rec = new Rectangle(MARGIN, y + (GAP/2), baselineBarLength+baselineErrorLength, BAR_HEIG… in drawBars()
294 Rectangle rec = new Rectangle(MARGIN, y + (GAP/2) + BAR_HEIGHT, currentBarLength, BAR_HEIGHT); in drawBars()
306 Rectangle recValue = new Rectangle(MARGIN, y + (GAP/2) + BAR_HEIGHT, wr, BAR_HEIGHT); in drawBars()
[all …]
/external/clang/test/FixIt/
Dtypo.c11 struct Rectangle { struct
19 struct Rectangle bounds; // expected-note{{'bounds' declared here}} argument
33 Rectangle r1; // expected-error{{must use 'struct' tag to refer to type 'Rectangle'}} in test()
37 typedef struct Rectangle Rectangle; // expected-note{{'Rectangle' declared here}} in test() typedef
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
DResizableDialog.java19 import org.eclipse.swt.graphics.Rectangle;
73 Rectangle oldBounds = loadBounds(); in getInitialSize()
75 Rectangle displayBounds = getShell().getDisplay().getBounds(); in getInitialSize()
99 Rectangle windowBounds; in getInitialLocation()
105 Rectangle bounds = loadBounds(); in getInitialLocation()
139 private Rectangle loadBounds() { in loadBounds()
142 return new Rectangle(settings.getInt(X), in loadBounds()
154 private void saveBounds(Rectangle bounds) { in saveBounds()
187 protected Rectangle cachedBounds;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
DCImageLabel.java17 import org.eclipse.swt.graphics.Rectangle;
90 Rectangle clientArea = getClientArea(); in doPaint()
108 Rectangle imageBounds = m_image == null ? new Rectangle(0, 0, 0, 0) : m_image.getBounds(); in doPaint()
134 Rectangle imageBounds = m_image == null ? new Rectangle(0, 0, 0, 0) : m_image.getBounds(); in computeSize()
DCFlatButton.java22 import org.eclipse.swt.graphics.Rectangle;
70 Rectangle ca = getClientArea(); in CFlatButton()
85 Rectangle ca1 = getClientArea(); in CFlatButton()
99 Rectangle imageBounds = image.getBounds(); in CFlatButton()
137 private void cropClientArea(Rectangle ca) { in cropClientArea()
DSelfOrientingSashForm.java16 import org.eclipse.swt.graphics.Rectangle;
125 Rectangle area; in layout()
143 Rectangle area = getClientArea(); in getPreferredOrientation()
DCComboBox.java40 import org.eclipse.swt.graphics.Rectangle;
302 Rectangle clientArea = getClientArea(); in resizeInner()
578 Rectangle tableBounds = table.getBounds();
586 Rectangle clientArea = display.getClientArea();
594 Rectangle popupBounds =
595 new Rectangle(comboLocation.x,
599 Rectangle trimBounds =
DCSpinner.java22 import org.eclipse.swt.graphics.Rectangle;
335 Rectangle cRect = composite.getClientArea(); in layout()
386 Rectangle cRect = composite.getClientArea(); in layout()
435 Rectangle cRect = composite.getClientArea(); in layout()
485 Rectangle cRect = composite.getClientArea(); in layout()
527 Rectangle clientArea = composite.getClientArea(); in layout()
DCCombo3.java21 import org.eclipse.swt.graphics.Rectangle;
343 Rectangle tableBounds = m_table.getBounds(); in doDropDown()
355 Rectangle popupBounds = in doDropDown()
499 Rectangle clientArea = getClientArea(); in doResize()
/external/chromium-trace/catapult/devil/devil/utils/
Dgeometry_test.py50 r = g.Rectangle(g.Point(0, 1), g.Point(2, 3))
54 r = g.Rectangle(g.Point(0, 1), g.Point(2, 3))
59 r1 = g.Rectangle(g.Point(0, 1), g.Point(2, 3))
60 r2 = g.Rectangle.FromDict({'top': 1, 'left': 0, 'bottom': 3, 'right': 2})
Dgeometry.py40 class Rectangle( class
56 return super(Rectangle, cls).__new__(cls, top_left, bottom_right)
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
DFlyoutControlComposite.java29 import org.eclipse.swt.graphics.Rectangle;
167 Rectangle clientArea = getClientArea(); in layout()
485 Rectangle clientArea = getClientArea(); in handle_mouseMove()
594 dockingTracker.setRectangles(new Rectangle[]{getBounds()});
599 Rectangle clientArea = container.getClientArea();
604 dockingTracker.setRectangles(new Rectangle[]{new Rectangle(0,
610 dockingTracker.setRectangles(new Rectangle[]{new Rectangle(0,
617 dockingTracker.setRectangles(new Rectangle[]{new Rectangle(0,
623 dockingTracker.setRectangles(new Rectangle[]{new Rectangle(clientArea.width - width,
629 dockingTracker.setRectangles(new Rectangle[]{getBounds()});
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
DImmutablesRepresenter.java19 import java.awt.Rectangle;
36 this.representers.put(Rectangle.class, new RepresentRectangle()); in ImmutablesRepresenter()
54 Rectangle rect = (Rectangle) data; in representData()
DMoreImmutablesTest.java20 import java.awt.Rectangle;
52 Rectangle rect = new Rectangle(10, 20, 30, 40); in testRectangle()
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/
DIMETest.java10 import java.awt.Rectangle;
20 Rectangle loc = new Rectangle(100, 100, 300, 300); in main()
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
DTJCustomFilter.java72 void customFilter(ShortBuffer coeffBuffer, Rectangle bufferRegion, in customFilter()
73 Rectangle planeRegion, int componentID, int transformID, in customFilter()
DTJTransform.java36 public class TJTransform extends Rectangle {
186 public TJTransform(Rectangle r, int op, int options, in TJTransform()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DDrawUtils.java23 import org.eclipse.swt.graphics.Rectangle;
48 Rectangle oldClipping = gc.getClipping(); in drawStringCV()
50 gc.setClipping(new Rectangle(x, y, width, height)); in drawStringCV()
78 Rectangle imageBounds = image.getBounds(); in drawImageCV()
88 Rectangle imageBounds = image.getBounds(); in drawImageCHCV()
100 public static void drawScaledImage(GC gc, Image image, Rectangle targetRectangle) { in drawScaledImage()
230 Rectangle imageBounds = image.getBounds(); in getThubmnail()
/external/deqp/modules/glshared/
DglsLifetimeTests.hpp383 struct Rectangle struct
385 Rectangle (GLint x_, GLint y_, GLint width_, GLint height_) in Rectangle() argument
396 Rectangle randomViewport (const RenderContext& ctx, GLint maxWidth, GLint maxHeight,
398 void setViewport (const RenderContext& renderCtx, const Rectangle& rect);
399 void readRectangle (const RenderContext& renderCtx, const Rectangle& rect,
423 using details::Rectangle;
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
DIndicInputMethod.java11 import java.awt.Rectangle;
67 public void notifyClientWindowChange(Rectangle bounds) { in notifyClientWindowChange()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
DPropertyEditor.java17 import org.eclipse.swt.graphics.Rectangle;
77 public void setBounds(Rectangle bounds) { in setBounds()
DAbstractComboPropertyEditor.java25 import org.eclipse.swt.graphics.Rectangle;
102 public final void setBounds(Rectangle bounds) { in setBounds()
/external/chromium-trace/catapult/devil/devil/android/
Dapp_ui_test.py100 self.assertEquals(node.bounds, geometry.Rectangle([121, 50], [1424, 178]))
109 self.assertEquals(node.bounds, geometry.Rectangle([16, 466], [128, 578]))
132 self.assertEquals(node.bounds, geometry.Rectangle([16, 578], [128, 690]))
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
DPropertyTable.java32 import org.eclipse.swt.graphics.Rectangle;
269 Rectangle clientArea = getClientArea(); in handleVerticalScrolling()
331 Rectangle clientArea = getClientArea(); in navigate()
610 Rectangle bounds; in setActiveEditorBounds()
612 Rectangle clientArea = getClientArea(); in setActiveEditorBounds()
617 bounds = new Rectangle(x, y, width, height); in setActiveEditorBounds()
720 Rectangle clientArea = getClientArea(); in configureSplitter()
1086 Rectangle clientArea = getClientArea(); in handlePaint()
1112 Rectangle area = getClientArea(); in drawEmptyContent()
1128 Rectangle clientArea = getClientArea(); in drawContent()
[all …]
/external/proguard/src/proguard/gui/splash/
DOverrideGraphics2D.java454 public Rectangle getClipBounds() in getClipBounds()
459 public Rectangle getClipBounds(Rectangle r) in getClipBounds()
464 public Rectangle getClipRect() in getClipRect()
514 public boolean hit(Rectangle rect, Shape s, boolean onStroke) in hit()

123