Home | History | Annotate | Download | only in ui

Lines Matching refs:rec

164 		void addArea(Rectangle rec, String tooltip) {
165 AreaZone zone = new AreaZone(rec, tooltip);
254 Rectangle rec = new Rectangle(MARGIN, y + (GAP/2), baselineBarLength, BAR_HEIGHT);
255 this.gc.drawRectangle(rec);
256 graphArea.addArea(rec, "Time for baseline build "+baselineBuildResults.getName()+": "+Util.timeString((long)baselineValue));
264 Rectangle rec = new Rectangle(MARGIN, y + (GAP/2), baselineBarLength+baselineErrorLength, BAR_HEIGHT);
265 this.gc.drawRectangle(rec);
273 graphArea.addArea(rec, tooltip.toString());
294 Rectangle rec = new Rectangle(MARGIN, y + (GAP/2) + BAR_HEIGHT, currentBarLength, BAR_HEIGHT);
295 this.gc.drawRectangle(rec);
300 graphArea.addArea(rec, tooltip);
311 Rectangle rec = new Rectangle(MARGIN, y + (GAP/2) + BAR_HEIGHT, currentBarLength+currentErrorLength, BAR_HEIGHT);
312 this.gc.drawRectangle(rec);
324 graphArea.addArea(rec, tooltip.toString());