Home | History | Annotate | Download | only in editing

Lines Matching refs:selectionOffset

2138     int selectionOffset = 0;
2156 selectionOffset = offset;
2158 if (selectionOffset > 0 && (selectionOffset > spellingParagraph.textLength() || spellingParagraph.textCharAt(selectionOffset - 1) == newlineCharacter))
2160 if (selectionOffset > 0 && selectionOffset <= spellingParagraph.textLength() && isAmbiguousBoundaryCharacter(spellingParagraph.textCharAt(selectionOffset - 1)))
2161 ambiguousBoundaryOffset = selectionOffset - 1;
2232 if (result->type == TextCheckingTypeLink && selectionOffset > resultLocation + resultLength + 1)
2289 if (resultLocation < selectionOffset) {
2290 selectionOffset += replacementLength - resultLength;
2292 ambiguousBoundaryOffset = selectionOffset - 1;
2305 if (restoreSelectionAfterChange && selectionOffset >= 0 && selectionOffset <= spellingParagraph.rangeLength()) {
2306 RefPtr<Range> selectionRange = spellingParagraph.subrange(0, selectionOffset);