/third_party/node/deps/npm/node_modules/editor/ |
D | README.markdown | 1 editor chapter 10 var editor = require('editor'); 11 editor('beep.json', function (code, sig) { 22 ![editor](http://substack.net/images/screenshots/editor.png) 32 var editor = require('editor') 35 editor(file, opts={}, cb) 38 Launch the `$EDITOR` (or `opts.editor`) for `file`. 40 When the editor exits, `cb(code, sig)` fires. 48 npm install editor
|
D | index.js | 11 var editor = opts.editor || process.env.VISUAL || process.env.EDITOR || ed; 12 var args = editor.split(/\s+/);
|
/third_party/flutter/skia/experimental/editor/ |
D | editor_application.cpp | 58 static editor::Editor::Movement convert(sk_app::Window::Key key) { in convert() 60 case sk_app::Window::Key::kLeft: return editor::Editor::Movement::kLeft; in convert() 61 case sk_app::Window::Key::kRight: return editor::Editor::Movement::kRight; in convert() 62 case sk_app::Window::Key::kUp: return editor::Editor::Movement::kUp; in convert() 63 case sk_app::Window::Key::kDown: return editor::Editor::Movement::kDown; in convert() 64 case sk_app::Window::Key::kHome: return editor::Editor::Movement::kHome; in convert() 65 case sk_app::Window::Key::kEnd: return editor::Editor::Movement::kEnd; in convert() 66 default: return editor::Editor::Movement::kNowhere; in convert() 83 editor::Editor fEditor; 84 editor::Editor::TextPosition fTextPos{0, 0}; [all …]
|
D | editor.h | 24 namespace editor { 130 static inline bool operator==(const editor::Editor::TextPosition& u, 131 const editor::Editor::TextPosition& v) { 134 static inline bool operator!=(const editor::Editor::TextPosition& u, 135 const editor::Editor::TextPosition& v) { return !(u == v); } 137 static inline bool operator<(const editor::Editor::TextPosition& u, 138 const editor::Editor::TextPosition& v) {
|
D | README.md | 37 ninja -C out/default editor 39 out/default/editor resources/text/english.txt 42 out/default/editor example.txt
|
/third_party/skia/experimental/sktext/ |
D | BUILD.gn | 106 "editor/Cursor.cpp", 107 "editor/Editor.cpp", 108 "editor/Mouse.cpp", 109 "editor/Selection.cpp", 110 "editor/Texts.cpp", 123 "editor/App.cpp", 124 "editor/Cursor.cpp", 125 "editor/Editor.cpp", 126 "editor/Mouse.cpp", 127 "editor/Selection.cpp", [all …]
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_format.py | 8 from idlelib.editor import EditorWindow 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) 408 del cls.text, cls.formatter, cls.editor 581 editor = DummyEditwin(None, None) # usetabs == False. 582 indents = ft.Indents(editor) 586 self.assertEqual(editor.usetabs, True) [all …]
|
D | test_zzdummy.py | 9 from idlelib import editor 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)
|
D | test_editor.py | 3 from idlelib import editor 10 Editor = editor.EditorWindow 41 editor.get_line_indent(line, tabwidth=tabwidth), 66 editor.get_line_indent(line, tabwidth=4), 91 editor.get_line_indent(line, tabwidth=8),
|
/third_party/typescript/tests/baselines/reference/ |
D | moduleVisibilityTest3.js | 14 module editor { 39 var editor; variable 40 (function (editor) { argument 49 })(editor || (editor = {}));
|
D | moduleAliasInterface.js | 14 module editor { 69 var editor; variable 70 (function (editor) { argument 80 })(editor || (editor = {}));
|
D | externalModuleQualification.types | 20 f(editor: DiffEditor<any, any, any>) { 21 >f : (editor: DiffEditor<any, any, any>) => void 22 >editor : DiffEditor<any, any, any>
|
D | moduleCrashBug1.symbols | 18 module editor { 19 >editor : Symbol(editor, Decl(moduleCrashBug1.ts, 8, 1))
|
D | moduleVisibilityTest3.types | 17 module editor { 18 >editor : typeof editor
|
D | externalModuleQualification.symbols | 23 f(editor: DiffEditor<any, any, any>) { 25 >editor : Symbol(editor, Decl(externalModuleQualification.ts, 7, 6))
|
D | moduleVisibilityTest3.symbols | 18 module editor { 19 >editor : Symbol(editor, Decl(moduleVisibilityTest3.ts, 8, 1))
|
/third_party/node/deps/npm/node_modules/opener/ |
D | README.md | 28 var editor = opener("documentation.odt"); 29 editor.unref(); 32 editor.stdin.unref(); 33 editor.stdout.unref(); 34 editor.stderr.unref();
|
/third_party/gstreamer/gstreamer/docs/random/wtay/ |
D | namespaces | 16 element hierarchy, the editor will insert its own tags into 97 editor as an example. The editor will insert XML tags inside each 99 laid out in the editor. 104 The editor will use its own namespace, being: 105 xmlns:editor="http://gstreamer.net/gst-editor/1.0". This namespace is 106 added to the XML documents header and all the elements the editor will 112 xmlns:editor="http://gstreamer.net/gst-editor/1.0/"> 118 <editor:element> 119 <editor:position x="100" y="50"/> 120 </editor:element>
|
/third_party/skia/third_party/externals/angle2/src/android_system_settings/src/com/android/angle/common/ |
D | MainFragment.java | 290 SharedPreferences.Editor editor = mPrefs.edit(); in removePkgPreference() local 292 editor.remove(key); in removePkgPreference() 293 editor.apply(); in removePkgPreference() 322 SharedPreferences.Editor editor = mPrefs.edit(); in mergeGlobalSettings() local 330 editor.putString(packageInfo.packageName, driver); in mergeGlobalSettings() 336 editor.putString(packageInfo.packageName, defaultDriver); in mergeGlobalSettings() 340 editor.apply(); in mergeGlobalSettings()
|
/third_party/node/deps/npm/lib/ |
D | edit.js | 12 var editor = require('editor') variable 44 editor(f, { editor: e }, noProgressTillDone(function (er) { property
|
/third_party/skia/modules/skplaintexteditor/ |
D | README.md | 37 ninja -C out/default editor 39 out/default/editor resources/text/english.txt 42 out/default/editor example.txt
|
/third_party/skia/experimental/sktext/editor/ |
D | App.cpp | 24 namespace editor { namespace 68 …std::unique_ptr<skia::editor::EditorApplication> app(new skia::editor::EditorApplication(std::move… in Create()
|
/third_party/skia/third_party/externals/egl-registry/specs/ |
D | igstyle.css | 26 /* Set space between editedby and editor to 0.5em. 27 * editor margin-top contributes to this. 33 /* Remove spaces between editedby & editor and editor & affiliation. 36 h3.editor {
|
/third_party/EGL/specs/ |
D | igstyle.css | 26 /* Set space between editedby and editor to 0.5em. 27 * editor margin-top contributes to this. 33 /* Remove spaces between editedby & editor and editor & affiliation. 36 h3.editor {
|
/third_party/node/deps/npm/docs/content/cli-commands/ |
D | npm-edit.md | 20 working directory and opens the package folder in the default editor 21 (or whatever you've configured as the npm `editor` config -- see 33 #### editor subsubsection
|