/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/accessibility/ |
H A D | _XAccessibleComponent.java | 57 private Rectangle bounds = null; field in _XAccessibleComponent 89 if (curX < bounds.Width) { in _containsPoint() 109 if (curX < bounds.Width) { in _containsPoint() 165 if (oObj.containsPoint(new Point(x, bounds.Height + bounds.Y))) { in _containsPoint() 168 + " (" + x + ", " + bounds.Height + bounds.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() 406 …result &= ((bounds != null) && (bounds.X >= 0) && (bounds.Y >= 0) && (bounds.Width > 0) && (bounds… in _getBounds() 410 ? ("(" + bounds.X + "," + bounds.Y + "),(" + in _getBounds() 411 bounds.Width + "," + bounds.Height + ")") : "null")); in _getBounds() [all …]
|
H A D | _XAccessibleText.java | 76 protected com.sun.star.awt.Rectangle bounds = null; field in _XAccessibleText 120 bounds = component.getBounds(); in before() 383 localres &= ((chBounds.X + chBounds.Width) <= bounds.Width); in _getCharacterBounds() 385 localres &= ((chBounds.Y + chBounds.Height) <= bounds.Height); in _getCharacterBounds() 394 log.println("Component rect: " + bounds.X + ", " + in _getCharacterBounds() 395 bounds.Y + ", " + bounds.Width + ", " + in _getCharacterBounds() 396 bounds.Height); in _getCharacterBounds()
|
/trunk/main/toolkit/qa/complex/toolkit/accessibility/ |
H A D | _XAccessibleComponent.java | 98 if (curX < bounds.Width) { in _containsPoint() 116 if (curX < bounds.Width) { in _containsPoint() 143 while (!oObj.containsPoint(new Point(bounds.Width - 1, curY)) && curY < bounds.Height) { in _containsPoint() 159 locRes &= !oObj.containsPoint(new Point(x, bounds.Height+bounds.Y)); in _containsPoint() 173 locRes &= !oObj.containsPoint(new Point(bounds.X+bounds.Width, y)); in _containsPoint() 300 result &= bounds != null in _getBounds() 301 && bounds.X >=0 && bounds.Y >=0 in _getBounds() 302 && bounds.Width >0 && bounds.Height >0; in _getBounds() 305 ? "(" + bounds.X + "," + bounds.Y + "),(" in _getBounds() 306 + bounds.Width + "," + bounds.Height + ")" : "null")); in _getBounds() [all …]
|
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/i18n/ |
H A D | _XBreakIterator.java | 190 if (bounds.endPos - bounds.startPos > 3) { in _nextWord() 191 vBounds.add( bounds ); in _nextWord() 193 + bounds.startPos + "," + bounds.endPos + "): '" + in _nextWord() 197 i = bounds.endPos - 1; in _nextWord() 215 Boundary bounds = in _previousWord() local 217 if (bounds.endPos - bounds.startPos > 3) { in _previousWord() 218 vPrevBounds.add( bounds ); in _previousWord() 220 + bounds.startPos + "," + bounds.endPos + "): '" in _previousWord() 221 + UnicodeString.substring(bounds.startPos, bounds.endPos) in _previousWord() 224 i = bounds.startPos; in _previousWord() [all …]
|
/trunk/main/vcl/aqua/source/dtrans/ |
H A D | DropTarget.cxx | 82 inline void CocoaToVCL(NSPoint& rPoint, const NSRect& bounds) in CocoaToVCL() argument 84 rPoint.y = bounds.size.height - rPoint.y; in CocoaToVCL() 87 inline void CocoaToVCL(NSRect& rRect, const NSRect& bounds) in CocoaToVCL() argument 89 rRect.origin.y = bounds.size.height - (rRect.origin.y + rRect.size.height); in CocoaToVCL() 238 NSRect bounds = [mView bounds]; in draggingEntered() local 244 CocoaToVCL(dragLocation, bounds); in draggingEntered() 280 NSRect bounds = [mView bounds]; in draggingUpdated() local 286 CocoaToVCL(dragLocation, bounds); in draggingUpdated() 349 NSRect bounds = [mView bounds]; in performDragOperation() local 355 CocoaToVCL(dragLocation, bounds); in performDragOperation()
|
H A D | DragSource.cxx | 277 NSRect bounds; in startDrag() local 278 bounds.origin = NSMakePoint(0,0); in startDrag() 279 bounds.size = sz; in startDrag() 283 [NSBezierPath fillRect: bounds]; in startDrag()
|
/trunk/main/vcl/aqua/source/a11y/ |
H A D | aqua11ylistener.cxx | 86 Rectangle bounds; in notifyEvent() local 119 bounds = [ element accessibleComponent ] -> getBounds(); in notifyEvent() 120 … if ( m_oldBounds.X != 0 && ( bounds.X != m_oldBounds.X || bounds.Y != m_oldBounds.Y ) ) { in notifyEvent() 123 …if ( m_oldBounds.X != 0 && ( bounds.Width != m_oldBounds.Width || bounds.Height != m_oldBounds.Hei… in notifyEvent() 126 m_oldBounds = bounds; in notifyEvent()
|
/trunk/main/extensions/test/ole/cppToUno/ |
H A D | testcppuno.cxx | 116 SAFEARRAYBOUND bounds[2]; in doTest() local 118 bounds[0].cElements= 3; in doTest() 119 bounds[0].lLbound= 0; in doTest() 121 bounds[1].cElements= 2; in doTest() 122 bounds[1].lLbound= 0; in doTest() 123 par= SafeArrayCreate( VT_I4, 2, bounds ); in doTest()
|
/trunk/main/xmerge/source/palmtests/qa/lib/ |
H A D | converterlib.pm | 568 my (%bounds) = FrmGetObjectBounds($form, $ii); 573 &print_debug(" left = $bounds{left}\n"); 574 &print_debug(" right = $bounds{right}\n"); 575 &print_debug(" top = $bounds{top}\n"); 576 &print_debug(" bottom = $bounds{bottom}\n"); 583 &pose_tap_pen($bounds{left} + 2, $bounds{top} + 2, 1);
|
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/ |
H A D | DesktopTools.java | 379 Rectangle bounds = new com.sun.star.awt.Rectangle(); in createFloatingWindow() local 380 bounds.X = X; in createFloatingWindow() 381 bounds.Y = Y; in createFloatingWindow() 382 bounds.Width = width; in createFloatingWindow() 383 bounds.Height = height; in createFloatingWindow() 385 descriptor.Bounds = bounds; in createFloatingWindow()
|
H A D | AccessibilityTools.java | 351 String bounds = "(" + aComp.getBounds().X + "," + in printAccessibleTree() local 355 bounds = "The boundary Rectangle is " + bounds; in printAccessibleTree() 356 logging(log,indent + indent + bounds); in printAccessibleTree()
|
H A D | UITools.java | 731 String bounds = "(" + aComp.getBounds().X + "," + in clickMiddleOfAccessibleObject() local 735 System.out.println("The boundary Rectangle is " + bounds); in clickMiddleOfAccessibleObject() 763 String bounds = "(" + aComp.getBounds().X + "," + in doubleClickMiddleOfAccessibleObject() local 767 System.out.println("The boundary Rectangle is " + bounds); in doubleClickMiddleOfAccessibleObject()
|
/trunk/main/offapi/com/sun/star/text/ |
H A D | ViewSettings.idl | 190 if the value is out of bounds. 201 if the value is out of bounds. 209 may enforce more restricting bounds for the value.</p> 213 if the value is out of bounds. 221 may enforce more restricting bounds for the value.</p> 225 if the value is out of bounds.
|
/trunk/main/libxml2/ |
H A D | 50f06b3efb638efb0abd95dc62dca05ae67882c2.patch | 4 Subject: [PATCH] Fix out-of-bounds read with 'xmllint --htmlout' 6 Make sure that truncated UTF-8 sequences don't cause an out-of-bounds 28 + * an out-of-bounds read.
|
/trunk/main/avmedia/source/java/ |
H A D | WindowAdapter.java | 369 java.awt.Rectangle bounds = maFrame.getBounds(); in getPosSize() local 370 return new com.sun.star.awt.Rectangle( bounds.x, bounds.y, bounds.width, bounds.height ); in getPosSize()
|
/trunk/main/offapi/com/sun/star/awt/ |
H A D | XWindow.idl | 76 /** sets the outer bounds of the window. 92 are taken into account when setting the outer bounds of the window. 102 /** returns the outer bounds of the window.
|
H A D | XWindow2.idl | 53 /** sets the inner bounds of the window, also known as the client size 63 /** returns the inner bounds of the window, also known as the client size.
|
/trunk/main/vcl/aqua/source/gdi/ |
H A D | salnativewidgets.cxx | 769 aTrackInfo.bounds = rc; in drawNativeControl() 774 aTrackInfo.bounds.origin.y -= 2; // FIXME: magic for shadow in drawNativeControl() 775 aTrackInfo.bounds.size.width -= 2; // FIXME: magic for shadow in drawNativeControl() 799 aTrackDraw.bounds = rc; in drawNativeControl() 836 aTrackDraw.bounds = rc; in drawNativeControl()
|
/trunk/main/basegfx/source/workbench/ |
H A D | bezierclip.cxx | 290 const FatLine& bounds, in Impl_calcSafeParams_clip() argument 305 return Impl_calcSafeParams( t1, t2, poly, bounds.dMin, bounds.dMax ); in Impl_calcSafeParams_clip() 308 bool bRet( Impl_calcSafeParams( t1, t2, poly, bounds.dMin, bounds.dMax ) ); in Impl_calcSafeParams_clip() 323 << "t, " << bounds.dMin << ", " in Impl_calcSafeParams_clip() 324 << "t, " << bounds.dMax << ", " in Impl_calcSafeParams_clip()
|
/trunk/main/offapi/com/sun/star/table/ |
H A D | XTableColumns.idl | 49 of bounds an exception will be thrown.</p> 64 of bounds an exception will be thrown.</p>
|
H A D | XTableRows.idl | 48 of bounds an exception will be thrown.</p> 63 of bounds an exception will be thrown.</p>
|
/trunk/main/canvas/source/cairo/ |
H A D | cairo_quartz_cairo.cxx | 94 width = [mpView bounds].size.width; in QuartzSurface() 95 height = [mpView bounds].size.height; in QuartzSurface()
|
/trunk/main/offapi/com/sun/star/rendering/ |
H A D | XTextLayout.idl | 115 specifying the bounds, one for every glyph. 128 significantly broader than the bounds returned via 131 @returns a sequence of rectangles specifying the bounds in 191 overall bounds are returned by this method.<p>
|
H A D | XIeeeDoubleReadOnlyBitmap.idl | 85 A rectangle, within the bounds of the bitmap, to retrieve the 111 A position, within the bounds of the bitmap, to retrieve the
|
/trunk/main/offapi/com/sun/star/accessibility/ |
H A D | XAccessibleValue.idl | 36 you access the value and its upper and lower bounds.</p> 55 lower bounds are returned by the methods
|