Lines Matching refs:bounds
57 private Rectangle bounds = null; field in _XAccessibleComponent
84 (curX < bounds.Width)) { in _containsPoint()
89 if (curX < bounds.Width) { in _containsPoint()
101 while (!oObj.containsPoint(new Point(curX, bounds.Height - 1)) && in _containsPoint()
102 (curX < bounds.Width)) { in _containsPoint()
104 bounds.Height + ")"); in _containsPoint()
109 if (curX < bounds.Width) { in _containsPoint()
111 "," + (bounds.Height - 1) + ") - OK"); in _containsPoint()
122 (curY < bounds.Height)) { in _containsPoint()
127 if (curY < bounds.Height) { in _containsPoint()
140 while (!oObj.containsPoint(new Point(bounds.Width - 1, curY)) && in _containsPoint()
141 (curY < bounds.Height)) { in _containsPoint()
146 if (curY < bounds.Height) { in _containsPoint()
148 (bounds.Width - 1) + "," + curY + ") - OK"); in _containsPoint()
157 for (int x = -1; x <= bounds.Width; x++) { in _containsPoint()
165 if (oObj.containsPoint(new Point(x, bounds.Height + bounds.Y))) { in _containsPoint()
168 + " (" + x + ", " + bounds.Height + bounds.Y in _containsPoint()
184 for (int y = -1; y <= bounds.Height; y++) { in _containsPoint()
192 if (oObj.containsPoint(new Point(bounds.X + bounds.Width, y))) { in _containsPoint()
195 + " (" + bounds.X + bounds.Width + ", " + y + ") - FAILED"); in _containsPoint()
405 bounds = oObj.getBounds(); in _getBounds()
406 …result &= ((bounds != null) && (bounds.X >= 0) && (bounds.Y >= 0) && (bounds.Width > 0) && (bounds… in _getBounds()
409 ((bounds != null) in _getBounds()
410 ? ("(" + bounds.X + "," + bounds.Y + "),(" + in _getBounds()
411 bounds.Width + "," + bounds.Height + ")") : "null")); in _getBounds()
433 result &= ((loc.X == bounds.X) && (loc.Y == bounds.Y)); in _getLocation()
466 result &= ((parLoc.X + bounds.X) == loc.X); in _getLocationOnScreen()
467 result &= ((parLoc.Y + bounds.Y) == loc.Y); in _getLocationOnScreen()
489 result &= (size.Width == bounds.Width); in _getSize()
490 result &= (size.Height == bounds.Height); in _getSize()