Lines Matching refs:chCount

81     int chCount = 0;  field in _XAccessibleText
146 oObj.setCaretPosition(chCount - 1); in _getCaretPosition()
154 res = carPos == (chCount - 1); in _getCaretPosition()
191 oObj.setCaretPosition(chCount + 1); in _setCaretPosition()
201 oObj.setCaretPosition(chCount - 1); in _setCaretPosition()
240 oObj.getCharacter(chCount); in _getCharacter()
253 for (int i = 0; i < chCount; i++) { in _getCharacter()
304 oObj.getCharacterAttributes(chCount, attr); in _getCharacterAttributes()
315 PropertyValue[] props = oObj.getCharacterAttributes(chCount - 1, in _getCharacterAttributes()
343 int lastIndex = chCount; in _getCharacterBounds()
349 lastIndex = chCount - 1; in _getCharacterBounds()
415 chCount = oObj.getCharacterCount(); in _getCharacterCount()
416 log.println("Character count:" + chCount); in _getCharacterCount()
418 boolean res = chCount == text.length(); in _getCharacterCount()
443 int lastIndex = chCount; in _getIndexAtPoint()
449 lastIndex = chCount - 1; in _getIndexAtPoint()
535 oObj.setSelection(0, chCount); in _getSelectedText()
541 if (chCount > 2) { in _getSelectedText()
543 oObj.setSelection(1, chCount - 1); in _getSelectedText()
547 res &= txt.equals(text.substring(1, chCount - 1)); in _getSelectedText()
578 oObj.setSelection(0, chCount); in _getSelectionStart()
584 if (chCount > 2) { in _getSelectionStart()
586 oObj.setSelection(1, chCount - 1); in _getSelectionStart()
620 oObj.setSelection(0, chCount); in _getSelectionEnd()
624 res &= (end == chCount); in _getSelectionEnd()
626 if (chCount > 2) { in _getSelectionEnd()
628 oObj.setSelection(1, chCount - 1); in _getSelectionEnd()
631 res &= (end == (chCount - 1)); in _getSelectionEnd()
664 locRes = oObj.setSelection(-1, chCount - 1); in _setSelection()
674 locRes = oObj.setSelection(0, chCount + 1); in _setSelection()
683 if (chCount > 2) { in _setSelection()
685 locRes = oObj.setSelection(1, chCount - 1); in _setSelection()
690 locRes = oObj.setSelection(chCount - 1, 1); in _setSelection()
696 locRes = oObj.setSelection(0, chCount - 1); in _setSelection()
701 locRes = oObj.setSelection(chCount - 1, 0); in _setSelection()
751 if (chCount > 3) { in _getTextRange()
754 txtRange = oObj.getTextRange(1, chCount - 2); in _getTextRange()
756 locRes = txtRange.equals(text.substring(1, chCount - 2)); in _getTextRange()
761 text.substring(1, chCount - 2)); in _getTextRange()
767 txtRange = oObj.getTextRange(0, chCount - 1); in _getTextRange()
769 locRes = txtRange.equals(text.substring(0, chCount - 1)); in _getTextRange()
774 text.substring(0, chCount - 1)); in _getTextRange()
778 txtRange = oObj.getTextRange(chCount, 0); in _getTextRange()
800 txtRange = oObj.getTextRange(-1, chCount - 1); in _getTextRange()
811 txtRange = oObj.getTextRange(0, chCount + 1); in _getTextRange()
822 txtRange = oObj.getTextRange(chCount + 1, -1); in _getTextRange()
868 txt = oObj.getTextAtIndex(chCount + 1, in _getTextAtIndex()
884 txt = oObj.getTextAtIndex(chCount, AccessibleTextType.WORD); in _getTextAtIndex()
942 txt = oObj.getTextBeforeIndex(chCount + 1, in _getTextBeforeIndex()
959 txt = oObj.getTextBeforeIndex(chCount, in _getTextBeforeIndex()
962 res &= compareLength(chCount, txt.SegmentText); in _getTextBeforeIndex()
973 txt = oObj.getTextBeforeIndex(chCount - 1, in _getTextBeforeIndex()
976 res &= compareStrings(text.substring(chCount - 2, chCount - 1), in _getTextBeforeIndex()
979 if (chCount > 2) { in _getTextBeforeIndex()
1034 txt = oObj.getTextBehindIndex(chCount + 1, in _getTextBehindIndex()
1050 txt = oObj.getTextBehindIndex(chCount, in _getTextBehindIndex()
1057 txt = oObj.getTextBehindIndex(chCount - 1, in _getTextBehindIndex()
1068 if (chCount > 2) { in _getTextBehindIndex()
1071 txt = oObj.getTextBehindIndex(chCount - 2, in _getTextBehindIndex()
1074 res &= txt.SegmentText.equals(text.substring(chCount - 1, chCount)); in _getTextBehindIndex()
1107 oObj.copyText(-1, chCount); in _copyText()
1117 oObj.copyText(0, chCount + 1); in _copyText()
1127 locRes = oObj.copyText(0, chCount); in _copyText()
1143 if (chCount > 2) { in _copyText()
1145 locRes = oObj.copyText(1, chCount - 1); in _copyText()
1157 res &= text.substring(1, chCount - 1).equals(cbText); in _copyText()