Home
last modified time | relevance | path

Searched refs:fDocumentCommand (Results 1 – 4 of 4) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/
H A DJavaAutoIndentStrategyTest.java85 fDocumentCommand.doit= true; in testPasteDefaultAtEnd()
86 fDocumentCommand.offset= 27; in testPasteDefaultAtEnd()
97 fDocumentCommand.doit= true; in testPasteFooAtEnd()
98 fDocumentCommand.offset= 27; in testPasteFooAtEnd()
99 fDocumentCommand.text= "foo"; in testPasteFooAtEnd()
111 fDocumentCommand.doit= true; in testPasteAndIndentOfLongStringWithContinuations1()
112 fDocumentCommand.offset= 21; in testPasteAndIndentOfLongStringWithContinuations1()
160 fDocumentCommand.doit= true; in testPasteAndIndentOfStringWithContinuations2()
161 fDocumentCommand.offset= 21; in testPasteAndIndentOfStringWithContinuations2()
177 fDocumentCommand.doit= true; in testPasteAndIndentOfStringWithContinuations3()
[all …]
H A DPropertiesFileAutoEditStrategyTest.java136 fDocumentCommand.text= "\\"; in testTypeISO_8859_1_01()
144 fDocumentCommand.text= "\t"; in testTypeISO_8859_1_02()
152 fDocumentCommand.text= "\f"; in testTypeISO_8859_1_03()
160 fDocumentCommand.text= "\r"; in testTypeISO_8859_1_04()
168 fDocumentCommand.text= "\n"; in testTypeISO_8859_1_05()
176 fDocumentCommand.text= "\u2603"; in testTypeISO_8859_1_06()
185 fDocumentCommand.text= "\u2603"; in testTypeUTF8_01()
332 fDocumentCommand.text= "\\:\\="; in testPasteFromPropertiesFileISO_8859_1_07()
341 fDocumentCommand.text= "\u2603"; in testChangeEncodingOfFile_01()
347 fDocumentCommand.text= "\u2603"; in testChangeEncodingOfFile_01()
[all …]
/dports/java/eclipse-shelled/eclipse-ShellEd-1.0.2a_4/plugins/com.something.eclipse.script_1.0.6/src/com/something/eclipse/script/text/
H A DDocumentAndCommandScanner.java20 private DocumentCommand fDocumentCommand; field in DocumentAndCommandScanner
28 fDocumentCommand = null; in setRange()
37 fDocumentCommand = documentCommand; in setRange()
56 if (fDocumentCommand != null && fOffset < fRangeEnd+fDocumentCommand.text.length()) in read()
58 return fDocumentCommand.text.charAt((fRangeEnd+fDocumentCommand.text.length()-fOffset)-1); in read()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.jface.text/src/org/eclipse/jface/text/
H A DTextViewer.java1464 private DocumentCommand fDocumentCommand= new DocumentCommand(); field in TextViewer
3658 fDocumentCommand.setEvent(e, modelRange); in handleVerifyEvent()
3659 fDocumentCommand.fSelection= (ITextSelection) getSelection(); in handleVerifyEvent()
3660 customizeDocumentCommand(fDocumentCommand); in handleVerifyEvent()
3661 if (!fDocumentCommand.fillEvent(e, modelRange)) { in handleVerifyEvent()
3663 boolean compoundChange= fDocumentCommand.getCommandCount() > 1; in handleVerifyEvent()
3671 fDocumentCommand.execute(getDocument()); in handleVerifyEvent()
3674 int documentCaret= fDocumentCommand.caretOffset; in handleVerifyEvent()
3677 …documentCaret= fDocumentCommand.offset + (fDocumentCommand.text == null ? 0 : fDocumentCommand.tex… in handleVerifyEvent()