Lines Matching refs:oObj

80     public XAccessibleText oObj = null;  field in _XAccessibleText
91 oObj = UnoRuntime.queryInterface(XAccessibleText.class, object); in _XAccessibleText()
117 oObj.setCaretPosition(chCount - 1); in _getCaretPosition()
121 int carPos = oObj.getCaretPosition(); in _getCaretPosition()
144 oObj.setCaretPosition(-1); in _setCaretPosition()
154 oObj.setCaretPosition(chCount+1); in _setCaretPosition()
164 oObj.setCaretPosition(chCount - 1); in _setCaretPosition()
193 oObj.getCharacter(-1); in _getCharacter()
203 oObj.getCharacter(chCount); in _getCharacter()
215 char ch = oObj.getCharacter(i); in _getCharacter()
251 oObj.getCharacterAttributes(-1, new String[0]); in _getCharacterAttributes()
261 oObj.getCharacterAttributes(chCount, new String[0]); in _getCharacterAttributes()
272 PropertyValue[] props = oObj.getCharacterAttributes(chCount - 1, new String[0]); in _getCharacterAttributes()
302 oObj.getCharacterBounds(-1); in _getCharacterBounds()
312 oObj.getCharacterBounds(chCount); in _getCharacterBounds()
323 chBounds = oObj.getCharacterBounds(chCount-1); in _getCharacterBounds()
346 chCount = oObj.getCharacterCount(); in _getCharacterCount()
369 int index = oObj.getIndexAtPoint(pt); in _getIndexAtPoint()
376 index = oObj.getIndexAtPoint(pt); in _getIndexAtPoint()
403 oObj.setSelection(0, 0); in _getSelectedText()
405 String txt = oObj.getSelectedText(); in _getSelectedText()
410 oObj.setSelection(0, chCount); in _getSelectedText()
412 txt = oObj.getSelectedText(); in _getSelectedText()
418 oObj.setSelection(1, chCount - 1); in _getSelectedText()
420 txt = oObj.getSelectedText(); in _getSelectedText()
452 oObj.setSelection(0, chCount); in _getSelectionStart()
453 int start = oObj.getSelectionStart(); in _getSelectionStart()
459 oObj.setSelection(1, chCount - 1); in _getSelectionStart()
460 start = oObj.getSelectionStart(); in _getSelectionStart()
492 oObj.setSelection(0, chCount); in _getSelectionEnd()
493 int end = oObj.getSelectionEnd(); in _getSelectionEnd()
499 oObj.setSelection(1, chCount - 1); in _getSelectionEnd()
500 end = oObj.getSelectionEnd(); in _getSelectionEnd()
534 locRes = oObj.setSelection(-1, chCount - 1); in _setSelection()
544 locRes = oObj.setSelection(0, chCount + 1); in _setSelection()
555 locRes = oObj.setSelection(1, chCount - 1); in _setSelection()
560 locRes = oObj.setSelection(chCount - 1, 1); in _setSelection()
567 locRes = oObj.setSelection(0, chCount-1); in _setSelection()
572 locRes = oObj.setSelection(chCount-1, 0); in _setSelection()
578 locRes = oObj.setSelection(0, 0); in _setSelection()
597 text = oObj.getText(); in _getText()
621 String txtRange = oObj.getTextRange(1, chCount - 2); in _getTextRange()
633 String txtRange = oObj.getTextRange(0, chCount-1); in _getTextRange()
643 txtRange = oObj.getTextRange(chCount, 0); in _getTextRange()
648 txtRange = oObj.getTextRange(0, 0); in _getTextRange()
664 String txtRange = oObj.getTextRange(-1, chCount - 1); in _getTextRange()
674 String txtRange = oObj.getTextRange(0, chCount + 1); in _getTextRange()
684 String txtRange = oObj.getTextRange(chCount+1, -1); in _getTextRange()
713 oObj.getTextAtIndex(-1, AccessibleTextType.PARAGRAPH); in _getTextAtIndex()
727 TextSegment txt = oObj.getTextAtIndex(chCount + 1, in _getTextAtIndex()
744 TextSegment txt = oObj.getTextAtIndex(chCount, in _getTextAtIndex()
751 txt = oObj.getTextAtIndex(1, in _getTextAtIndex()
786 TextSegment txt = oObj.getTextBeforeIndex(-1, in _getTextBeforeIndex()
802 TextSegment txt = oObj.getTextBeforeIndex(chCount + 1, in _getTextBeforeIndex()
819 txt = oObj.getTextBeforeIndex(chCount, in _getTextBeforeIndex()
826 txt = oObj.getTextBeforeIndex(1, in _getTextBeforeIndex()
835 txt = oObj.getTextBeforeIndex(chCount - 1, in _getTextBeforeIndex()
841 txt = oObj.getTextBeforeIndex(2, in _getTextBeforeIndex()
876 TextSegment txt = oObj.getTextBehindIndex(-1, in _getTextBehindIndex()
892 TextSegment txt = oObj.getTextBehindIndex(chCount + 1, in _getTextBehindIndex()
909 TextSegment txt = oObj.getTextBehindIndex(chCount, in _getTextBehindIndex()
916 txt = oObj.getTextBehindIndex(chCount - 1, in _getTextBehindIndex()
924 TextSegment txt = oObj.getTextBehindIndex(1, in _getTextBehindIndex()
932 TextSegment txt = oObj.getTextBehindIndex(chCount - 2, in _getTextBehindIndex()
969 oObj.copyText(-1, chCount); in _copyText()
979 oObj.copyText(0, chCount + 1); in _copyText()
989 locRes = oObj.copyText(0, chCount); in _copyText()
1006 locRes = oObj.copyText(1, chCount - 1); in _copyText()