Lines Matching refs:txt

530             String txt = oObj.getSelectedText();  in _getSelectedText()  local
531 log.println("'" + txt + "'"); in _getSelectedText()
532 res &= (txt.length() == 0); in _getSelectedText()
537 txt = oObj.getSelectedText(); in _getSelectedText()
538 log.println("'" + txt + "'"); in _getSelectedText()
539 res &= txt.equals(text); in _getSelectedText()
545 txt = oObj.getSelectedText(); in _getSelectedText()
546 log.println("'" + txt + "'"); in _getSelectedText()
547 res &= txt.equals(text.substring(1, chCount - 1)); in _getSelectedText()
724 String txt = oObj.getText(); in _getText() local
725 log.println("getText: " + txt); in _getText()
727 boolean res = txt.equals(text); in _getText()
846 TextSegment txt = null; in _getTextAtIndex() local
852 txt = oObj.getTextAtIndex(-1, in _getTextAtIndex()
868 txt = oObj.getTextAtIndex(chCount + 1, in _getTextAtIndex()
884 txt = oObj.getTextAtIndex(chCount, AccessibleTextType.WORD); in _getTextAtIndex()
885 log.println("'" + txt.SegmentText + "'"); in _getTextAtIndex()
886 res &= compareLength(0,txt.SegmentText); in _getTextAtIndex()
890 txt = oObj.getTextAtIndex(1, AccessibleTextType.PARAGRAPH); in _getTextAtIndex()
891 log.println("'" + txt.SegmentText + "'"); in _getTextAtIndex()
892 res &= compareStrings(text,txt.SegmentText); in _getTextAtIndex()
920 TextSegment txt = null; in _getTextBeforeIndex() local
926 txt = oObj.getTextBeforeIndex(-1, in _getTextBeforeIndex()
942 txt = oObj.getTextBeforeIndex(chCount + 1, in _getTextBeforeIndex()
959 txt = oObj.getTextBeforeIndex(chCount, in _getTextBeforeIndex()
961 log.println("'" + txt.SegmentText + "'"); in _getTextBeforeIndex()
962 res &= compareLength(chCount, txt.SegmentText); in _getTextBeforeIndex()
967 txt = oObj.getTextBeforeIndex(1, AccessibleTextType.PARAGRAPH); in _getTextBeforeIndex()
968 log.println("'" + txt.SegmentText + "'"); in _getTextBeforeIndex()
969 res &= compareLength(0, txt.SegmentText); in _getTextBeforeIndex()
973 txt = oObj.getTextBeforeIndex(chCount - 1, in _getTextBeforeIndex()
975 log.println("'" + txt.SegmentText + "'"); in _getTextBeforeIndex()
977 txt.SegmentText); in _getTextBeforeIndex()
982 txt = oObj.getTextBeforeIndex(2, AccessibleTextType.CHARACTER); in _getTextBeforeIndex()
983 log.println("'" + txt.SegmentText + "'"); in _getTextBeforeIndex()
984 res &= compareStrings(text.substring(1, 2), txt.SegmentText); in _getTextBeforeIndex()
1012 TextSegment txt = null; in _getTextBehindIndex() local
1018 txt = oObj.getTextBehindIndex(-1, in _getTextBehindIndex()
1034 txt = oObj.getTextBehindIndex(chCount + 1, in _getTextBehindIndex()
1050 txt = oObj.getTextBehindIndex(chCount, in _getTextBehindIndex()
1052 log.println("'" + txt.SegmentText + "'"); in _getTextBehindIndex()
1053 res &= (txt.SegmentText.length() == 0); in _getTextBehindIndex()
1057 txt = oObj.getTextBehindIndex(chCount - 1, in _getTextBehindIndex()
1059 log.println("'" + txt.SegmentText + "'"); in _getTextBehindIndex()
1060 res &= (txt.SegmentText.length() == 0); in _getTextBehindIndex()
1064 txt = oObj.getTextBehindIndex(1, AccessibleTextType.CHARACTER); in _getTextBehindIndex()
1065 log.println("'" + txt.SegmentText + "'"); in _getTextBehindIndex()
1066 res &= txt.SegmentText.equals(text.substring(2, 3)); in _getTextBehindIndex()
1071 txt = oObj.getTextBehindIndex(chCount - 2, in _getTextBehindIndex()
1073 log.println("'" + txt.SegmentText + "'"); in _getTextBehindIndex()
1074 res &= txt.SegmentText.equals(text.substring(chCount - 1, chCount)); in _getTextBehindIndex()