Home
last modified time | relevance | path

Searched refs:editor (Results 1 - 25 of 84) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
H A DmoduleVisibilityTest3.js14 module editor {
39 var editor; variable
40 (function (editor) {
49 })(editor || (editor = {}));
H A DmoduleAliasInterface.js14 module editor {
69 var editor; variable
70 (function (editor) {
80 })(editor || (editor = {}));
H A DmoduleCrashBug1.js14 module editor {
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_format.py8 from idlelib.editor import EditorWindow
163 """Test the reformat_paragraph function without the editor window."""
189 """Test the reformat_comment function without the editor window."""
216 instance = ft.FormatParagraph('editor')
217 self.assertEqual(instance.editwin, 'editor')
276 editor = Editor(root=cls.root)
277 cls.text = editor.text.text # Test code does not need the wrapper.
278 cls.formatter = ft.FormatParagraph(editor).format_paragraph_event
403 cls.editor = DummyEditwin(cls.root, cls.text)
404 cls.formatter = ft.FormatRegion(cls.editor)
[all...]
H A Dtest_zzdummy.py9 from idlelib import editor namespace
31 get_selection_indices = editor.EditorWindow.get_selection_indices
49 cls.editor = DummyEditwin(root, text)
55 del cls.editor, cls.text
67 zz = self.zz = zzdummy.ZzDummy(self.editor)
87 self.assertEqual(zz.editwin, self.editor)
88 self.assertEqual(zz.text, self.editor.text)
H A Dtest_editor.py1 "Test editor, coverage 53%."
3 from idlelib import editor namespace
9 Editor = editor.EditorWindow
40 editor.get_line_indent(line, tabwidth=tabwidth),
65 editor.get_line_indent(line, tabwidth=4),
90 editor.get_line_indent(line, tabwidth=8),
210 actual_pair = editor.IndentSearcher(text).run()
H A Dtest_codecontext.py66 cls.editor = DummyEditwin(root, frame, text)
72 cls.editor.text.delete('1.0', 'end')
73 del cls.editor, cls.frame, cls.text
81 self.cc = codecontext.CodeContext(self.editor)
112 ed = self.editor
H A Dtest_autocomplete.py33 cls.editor = DummyEditwin(cls.root, cls.text)
37 del cls.editor, cls.text
44 self.autocomplete = ac.AutoComplete(self.editor)
47 self.assertEqual(self.autocomplete.editwin, self.editor)
/third_party/skia/third_party/externals/angle2/src/android_system_settings/src/com/android/angle/common/
H A DMainFragment.java290 SharedPreferences.Editor editor = mPrefs.edit(); in removePkgPreference()
292 editor.remove(key); in removePkgPreference()
293 editor.apply(); in removePkgPreference()
322 SharedPreferences.Editor editor = mPrefs.edit(); in mergeGlobalSettings()
330 editor.putString(packageInfo.packageName, driver); in mergeGlobalSettings()
336 editor.putString(packageInfo.packageName, defaultDriver); in mergeGlobalSettings()
340 editor.apply(); in mergeGlobalSettings()
H A DReceiver.java194 SharedPreferences.Editor editor = in updateDeveloperOptionsWatcher()
196 editor.clear(); in updateDeveloperOptionsWatcher()
197 editor.apply(); in updateDeveloperOptionsWatcher()
/third_party/skia/experimental/sktext/editor/
H A DApp.cpp4 // Proof of principle of a text editor written with Skia & SkShaper.
15 #include "experimental/sktext/editor/Editor.h"
24 namespace editor { namespace
68 std::unique_ptr<skia::editor::EditorApplication> app(new skia::editor::EditorApplication(std::move(win))); in Create()
/third_party/node/deps/v8/src/compiler/
H A Dwasm-escape-analysis.h25 WasmEscapeAnalysis(Editor* editor, MachineGraph* mcgraph) in WasmEscapeAnalysis() argument
26 : AdvancedReducer(editor), mcgraph_(mcgraph) {} in WasmEscapeAnalysis()
H A Djs-inlining-heuristic.h18 JSInliningHeuristic(Editor* editor, Zone* local_zone, in JSInliningHeuristic() argument
22 : AdvancedReducer(editor), in JSInliningHeuristic()
23 inliner_(editor, local_zone, info, jsgraph, broker, source_positions), in JSInliningHeuristic()
H A Dadd-type-assertions-reducer.cc13 AddTypeAssertionsReducer::AddTypeAssertionsReducer(Editor* editor, in AddTypeAssertionsReducer() argument
15 : AdvancedReducer(editor), in AddTypeAssertionsReducer()
H A Dcheckpoint-elimination.cc14 CheckpointElimination::CheckpointElimination(Editor* editor) in CheckpointElimination() argument
15 : AdvancedReducer(editor) {} in CheckpointElimination()
H A Djs-context-specialization.h39 JSContextSpecialization(Editor* editor, JSGraph* jsgraph, in JSContextSpecialization() argument
42 : AdvancedReducer(editor), in JSContextSpecialization()
H A Dtype-narrowing-reducer.cc14 TypeNarrowingReducer::TypeNarrowingReducer(Editor* editor, JSGraph* jsgraph, in TypeNarrowingReducer() argument
16 : AdvancedReducer(editor), in TypeNarrowingReducer()
H A Djs-inlining.h26 JSInliner(Editor* editor, Zone* local_zone, OptimizedCompilationInfo* info, in JSInliner() argument
29 : AdvancedReducer(editor), in JSInliner()
H A Dconstant-folding-reducer.cc60 ConstantFoldingReducer::ConstantFoldingReducer(Editor* editor, JSGraph* jsgraph, in ConstantFoldingReducer() argument
62 : AdvancedReducer(editor), jsgraph_(jsgraph), broker_(broker) {} in ConstantFoldingReducer()
H A Dwasm-inlining.h38 WasmInliner(Editor* editor, wasm::CompilationEnv* env, in WasmInliner() argument
43 : AdvancedReducer(editor), in WasmInliner()
H A Dgraph-reducer.h99 explicit AdvancedReducer(Editor* editor) : editor_(editor) {} in AdvancedReducer() argument
H A Dcheckpoint-elimination.h20 explicit CheckpointElimination(Editor* editor);
/third_party/libphonenumber/java/demoapp/app/src/main/java/com/google/phonenumbers/demoapp/contacts/
H A DContactsPermissionManagement.java95 SharedPreferences.Editor editor = in addOneToNumberOfDenials()
97 editor.putInt(NUMBER_OF_CONTACTS_PERMISSION_DENIALS_KEY, getNumberOfDenials(context) + 1); in addOneToNumberOfDenials()
98 editor.apply(); in addOneToNumberOfDenials()
/third_party/rust/crates/codespan/codespan-reporting/examples/
H A Dpeg_calculator.rs42 let mut editor = Editor::<()>::new(); in main() variables
45 let line = match editor.readline("> ") { in main()
/third_party/python/Lib/idlelib/
H A Dfilelist.py10 from idlelib.editor import EditorWindow
116 from idlelib.editor import fixwordbreaks

Completed in 9 milliseconds

1234