Searched refs:inside (Results 1 - 12 of 12) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Dxmlstream.cpp83 // All normally printed material goes inside XML quotes.
128 assert_if_no_error(!inside_attrs(), "cannot print tag inside attrs");
143 assert_if_no_error(!inside_attrs(), "cannot start new element inside attrs");
177 assert_if_no_error(!inside_attrs(), "cannot close element inside attrs");
/openjdk7/jdk/test/java/awt/Frame/ShapeNotSetSometimes/
H A DShapeNotSetSometimes.java77 // inside shape
157 boolean inside = i < COUNT_TARGET;
160 if (inside && BACKGROUND_COLOR.equals(c) || !inside && !BACKGROUND_COLOR.equals(c)) {
164 ", color = " + c + (inside ? " is of un" : " is not of ") +
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DComponentUI.java248 return c.inside(x, y);
/openjdk7/jdk/test/sun/java2d/pipe/
H A DRegionOps.java266 boolean inside = a.contains(x, y);
267 if (theTrans.contains(x+dx, y+dy) != inside) {
289 boolean inside = (a.contains(x, y) || b.contains(x, y));
290 if (theUnion.contains(x, y) != inside) {
312 boolean inside = (a.contains(x, y) && !b.contains(x, y));
313 if (theDifference.contains(x, y) != inside) {
334 boolean inside = (a.contains(x, y) && b.contains(x, y));
335 if (theIntersection.contains(x, y) != inside) {
356 boolean inside = (a.contains(x, y) != b.contains(x, y));
357 if (theExclusiveOr.contains(x, y) != inside) {
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DAreaOp.java114 private boolean inside; field in class:AreaOp.EOWindOp
117 inside = false;
123 boolean newInside = !inside;
124 inside = newInside;
129 return (inside ? RSTAG_INSIDE : RSTAG_OUTSIDE);
366 System.out.println("Still inside at end of active edge list!");
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_ScrollPane.cpp152 RECT inside; local
154 ::GetClientRect(GetHWnd(), &inside); local
155 ::MapWindowPoints(GetHWnd(), 0, (LPPOINT)&inside, 2);
165 if (insets != NULL && (inside.top-outside.top) != 0) {
166 (env)->SetIntField(insets, AwtInsets::topID, inside.top - outside.top);
167 (env)->SetIntField(insets, AwtInsets::leftID, inside.left - outside.left);
168 (env)->SetIntField(insets, AwtInsets::bottomID, outside.bottom - inside.bottom);
169 (env)->SetIntField(insets, AwtInsets::rightID, outside.right - inside.right);
203 // scroll position to zero ("just inside the range") (6404832).
H A Dawt_Window.cpp1328 RECT inside; local
1331 ::GetClientRect(GetHWnd(), &inside); local
1336 ::MapWindowPoints(GetHWnd(), 0, (LPPOINT)&inside, 2);
1337 m_insets.top = inside.top - outside.top;
1338 m_insets.bottom = outside.bottom - inside.bottom + extraBottomInsets;
1339 m_insets.left = inside.left - outside.left;
1340 m_insets.right = outside.right - inside.right;
2752 RECT inside; local
2759 ::GetClientRect(GetHWnd(), &inside); local
2762 BOOL isZeroClientArea = (inside
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArc2D.java1171 * Determines whether or not the specified point is inside the boundary
1218 // point must be inside the "pie triangle"
1220 // The point is inside the pie triangle iff it is on the same
1228 boolean inside = (Line2D.relativeCCW(x1, y1, x2, y2, 2*normx, 2*normy) *
1230 return inarc ? !inside : inside;
1329 // finally check the rectangle corners inside the arc
1385 // rectangular corners are inside the shape but one of the
/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java649 * is inside this <code>Rectangle</code>;
664 * {@code (x,y)} is inside this
670 return inside(x, y);
679 * is contained entirely inside this <code>Rectangle</code>;
698 * is entirely enclosed inside this <code>Rectangle</code>;
746 * {@code (X,Y)} is inside this
753 public boolean inside(int X, int Y) { method in class:Rectangle
H A DPolygon.java49 * <code>contains</code>, <code>intersects</code> and <code>inside</code>
339 * Determines whether the specified {@link Point} is inside this
352 * Determines whether the specified coordinates are inside this
381 public boolean inside(int x, int y) { method in class:Polygon
H A DComponent.java4601 return inside(x, y);
4609 public boolean inside(int x, int y) { method in class:Component
4631 * inside a subcomponent that itself has subcomponents, it does not
4636 * coordinate location is inside its bounding box, and <code>null</code>
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaInternalFrameUI.java757 public CompoundUIBorder(final Border inside, final Border outside) { super(inside, outside); } argument

Completed in 99 milliseconds