Searched defs:inside (Results 1 - 7 of 7) sorted by relevance
/openjdk7/jdk/src/share/classes/sun/awt/geom/ |
H A D | AreaOp.java | 114 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/share/classes/java/awt/ |
H A D | Polygon.java | 49 * <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 D | Rectangle.java | 649 * 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 D | Component.java | 4601 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/windows/native/sun/windows/ |
H A D | awt_ScrollPane.cpp | 152 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 D | awt_Window.cpp | 1328 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/macosx/classes/com/apple/laf/ |
H A D | AquaInternalFrameUI.java | 757 public CompoundUIBorder(final Border inside, final Border outside) { super(inside, outside); } argument
|
Completed in 60 milliseconds