Lines Matching refs:TextRange

635      * @param {?WebInspector.TextRange} range
649 this.setSelection(WebInspector.TextRange.createFromLocation(range.startLine, range.startColumn));
745 * @return {?WebInspector.TextRange}
780 * @param {!WebInspector.TextRange} textRange
911 * @param {!WebInspector.TextRange} range
1107 this.setSelection(WebInspector.TextRange.createFromLocation(lineNumber, columnNumber));
1176 * @param {!WebInspector.TextRange} range
1178 * @return {!WebInspector.TextRange}
1195 * @return {!WebInspector.TextRange}
1209 return new WebInspector.TextRange(lineNumber, wordStart, lineNumber, wordEnd);
1214 * @return {{oldRange: !WebInspector.TextRange, newRange: !WebInspector.TextRange}}
1289 * @param {?WebInspector.TextRange} from
1290 * @param {?WebInspector.TextRange} to
1340 * @return {!WebInspector.TextRange}
1351 * @return {!Array.<!WebInspector.TextRange>}
1365 * @return {?WebInspector.TextRange}
1373 * @param {!WebInspector.TextRange} textRange
1383 * @param {!Array.<!WebInspector.TextRange>} ranges
1437 * @return {!WebInspector.TextRange}
1568 * @param {?WebInspector.TextRange} range
2106 * @return {!WebInspector.TextRange}
2114 * @param {!WebInspector.TextRange} mainSelection
2284 * @param {!Array.<!WebInspector.TextRange>} selections
2285 * @param {!WebInspector.TextRange} range
2337 * @param {!Array.<!WebInspector.TextRange>} selections
2345 || WebInspector.TextRange.createFromLocation(selection.startLine, selection.startColumn);
2347 || WebInspector.TextRange.createFromLocation(selection.endLine, selection.endColumn);
2348 var newSelection = new WebInspector.TextRange(startRangeWord.startLine, startRangeWord.startColumn, endRangeWord.endLine, endRangeWord.endColumn);
2356 * @param {!WebInspector.TextRange} range
2358 * @return {?WebInspector.TextRange}
2401 return new WebInspector.TextRange(matchedLineNumber, matchedColumnNumber, matchedLineNumber, matchedColumnNumber + textToFind.length);