Home
last modified time | relevance | path

Searched refs:bounds (Results 1 – 25 of 55) sorted by relevance

123

/aoo4110/main/qadevOOo/tests/java/ifc/accessibility/
H A D_XAccessibleComponent.java57 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.java76 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()
/aoo4110/main/toolkit/qa/complex/toolkit/accessibility/
H A D_XAccessibleComponent.java98 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 …]
/aoo4110/main/qadevOOo/tests/java/ifc/i18n/
H A D_XBreakIterator.java190 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 …]
/aoo4110/main/vcl/aqua/source/dtrans/
H A DDropTarget.cxx82 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 DDragSource.cxx277 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()
/aoo4110/main/vcl/aqua/source/a11y/
H A Daqua11ylistener.cxx86 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()
/aoo4110/main/extensions/test/ole/cppToUno/
H A Dtestcppuno.cxx116 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()
/aoo4110/main/xmerge/source/palmtests/qa/lib/
H A Dconverterlib.pm568 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);
/aoo4110/main/qadevOOo/runner/util/
H A DDesktopTools.java379 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 DAccessibilityTools.java351 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 DUITools.java731 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()
/aoo4110/main/offapi/com/sun/star/text/
H A DViewSettings.idl190 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.
/aoo4110/main/libxml2/
H A D50f06b3efb638efb0abd95dc62dca05ae67882c2.patch4 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.
/aoo4110/main/avmedia/source/java/
H A DWindowAdapter.java369 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()
/aoo4110/main/offapi/com/sun/star/awt/
H A DXWindow.idl76 /** 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 DXWindow2.idl53 /** 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.
/aoo4110/main/vcl/aqua/source/gdi/
H A Dsalnativewidgets.cxx769 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()
/aoo4110/main/offapi/com/sun/star/table/
H A DXTableColumns.idl49 of bounds an exception will be thrown.</p>
64 of bounds an exception will be thrown.</p>
H A DXTableRows.idl48 of bounds an exception will be thrown.</p>
63 of bounds an exception will be thrown.</p>
/aoo4110/main/basegfx/source/workbench/
H A Dbezierclip.cxx290 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()
/aoo4110/main/canvas/source/cairo/
H A Dcairo_quartz_cairo.cxx94 width = [mpView bounds].size.width; in QuartzSurface()
95 height = [mpView bounds].size.height; in QuartzSurface()
/aoo4110/main/offapi/com/sun/star/rendering/
H A DXTextLayout.idl115 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 DXIeeeDoubleReadOnlyBitmap.idl85 A rectangle, within the bounds of the bitmap, to retrieve the
111 A position, within the bounds of the bitmap, to retrieve the
/aoo4110/main/offapi/com/sun/star/accessibility/
H A DXAccessibleValue.idl36 you access the value and its upper and lower bounds.</p>
55 lower bounds are returned by the methods

Completed in 402 milliseconds

123