Searched refs:replaceRange (Results 1 – 7 of 7) sorted by relevance
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
D | DumbTextComponent.java | 269 replaceRange("", start, end); in keyPressed() 348 replaceRange("", start, end); in keyTyped() 363 replaceRange("", start, end); in keyTyped() 473 replaceRange(text, selection.getStart(), selection.getEnd()); in insertText() 476 public void replaceRange(String s, int start, int end) { in replaceRange() method in DumbTextComponent 821 replaceRange(add, selection.getEnd()-count, selection.getEnd()); in fixHex()
|
/third_party/typescript/src/services/ |
D | textChanges.ts | 371 …public replaceRange(sourceFile: SourceFile, range: TextRange, newNode: Node, options: InsertNodeOp… method in ts.textChanges.ChangeTracker 376 …this.replaceRange(sourceFile, getAdjustedRange(sourceFile, oldNode, oldNode, options), newNode, op… 380 …this.replaceRange(sourceFile, getAdjustedRange(sourceFile, startNode, endNode, options), newNode, … 414 this.replaceRange(sourceFile, createRange(pos), newNode, options); 713 …this.replaceRange(sourceFile, createRange(after.end), factory.createToken(SyntaxKind.SemicolonToke… 769 … this.replaceRange(sourceFile, arrow, factory.createToken(SyntaxKind.CloseParenToken)); 877 this.replaceRange(sourceFile, createRange(end), factory.createToken(separator)); 886 …this.replaceRange(sourceFile, createRange(insertPos), newNode, { indentation, prefix: this.newLine… 889 …this.replaceRange(sourceFile, createRange(end), newNode, { prefix: `${tokenToString(separator)} ` … 895 …this.replaceRange(sourceFile, rangeOfNode(expression), factory.createParenthesizedExpression(expre…
|
/third_party/typescript/src/services/codefixes/ |
D | fixExtendsInterfaceBecomesImplements.ts | 39 …changes.replaceRange(sourceFile, { pos: implementsFullStart, end: implementsFullStart }, factory.c…
|
D | convertToEsModule.ts | 327 …changes.replaceRange(sourceFile, { pos: left.getStart(sourceFile), end: right.getStart(sourceFile)…
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
D | TransliteratingTextComponent.java | 166 replaceRange(result, 0, getSelectionEnd()); in transliterate()
|
D | Demo.java | 1382 text.replaceRange(str, start, end); in handleBatchTransliterate()
|
/third_party/typescript/src/testRunner/unittests/services/ |
D | textChanges.ts | 218 …changeTracker.replaceRange(sourceFile, { pos: text.indexOf("var y"), end: text.indexOf("var a") },… 221 …changeTracker.replaceRange(sourceFile, { pos: text.indexOf("var y"), end: text.indexOf("var a") },… 226 …changeTracker.replaceRange(sourceFile, { pos: sourceFile.text.indexOf("y"), end: sourceFile.text.i…
|