Lines Matching refs:offset

100 STDMETHODIMP CAccTextBase::get_attributes(long offset, long * startOffset, long * endOffset, BSTR *…  in get_attributes()  argument
115 if( offset < 0 || offset > GetXInterface()->getCharacterCount() ) in get_attributes()
122 …beans::PropertyValue > pValues = GetXInterface()->getCharacterAttributes(offset, Sequence< rtl::OU… in get_attributes()
201 if( offset < GetXInterface()->getCharacterCount() ) in get_attributes()
203 … TextSegment textSeg = GetXInterface()->getTextAtIndex(offset, AccessibleTextType::ATTRIBUTE_RUN); in get_attributes()
209 *startOffset = offset; in get_attributes()
210 *endOffset = offset; in get_attributes()
223 STDMETHODIMP CAccTextBase::get_caretOffset(long * offset) in get_caretOffset() argument
230 if (offset == NULL) in get_caretOffset()
235 *offset = 0; in get_caretOffset()
239 *offset = GetXInterface()->getCaretPosition(); in get_caretOffset()
281 STDMETHODIMP CAccTextBase::get_characterExtents(long offset, IA2CoordinateType coordType, long * x,… in get_characterExtents() argument
294 if(offset < 0 || offset > GetXInterface()->getCharacterCount() ) in get_characterExtents()
298 rectangle = GetXInterface()->getCharacterBounds(offset); in get_characterExtents()
333 if( offset == GetXInterface()->getCharacterCount() ) in get_characterExtents()
401 STDMETHODIMP CAccTextBase::get_offsetAtPoint(long x, long y, IA2CoordinateType, long * offset) in get_offsetAtPoint() argument
406 if (offset == NULL) in get_offsetAtPoint()
415 *offset = GetXInterface()->getIndexAtPoint(point); in get_offsetAtPoint()
527 STDMETHODIMP CAccTextBase::get_textBeforeOffset(long offset, IA2TextBoundaryType boundaryType, long… in get_textBeforeOffset() argument
595 TextSegment segment = GetXInterface()->getTextBeforeIndex( offset, sal_Int16(lUnoBoundaryType)); in get_textBeforeOffset()
616 STDMETHODIMP CAccTextBase::get_textAfterOffset(long offset, IA2TextBoundaryType boundaryType, long … in get_textAfterOffset() argument
682 TextSegment segment = GetXInterface()->getTextBehindIndex( offset, sal_Int16(lUnoBoundaryType)); in get_textAfterOffset()
703 STDMETHODIMP CAccTextBase::get_textAtOffset(long offset, IA2TextBoundaryType boundaryType, long * s… in get_textAtOffset() argument
771 TextSegment segment = GetXInterface()->getTextAtIndex( offset, sal_Int16(lUnoBoundaryType)); in get_textAtOffset()
828 STDMETHODIMP CAccTextBase::setCaretOffset(long offset) in setCaretOffset() argument
839 GetXInterface()->setCaretPosition( offset); in setCaretOffset()