Home
last modified time | relevance | path

Searched refs:editor (Results 1 – 25 of 311) sorted by relevance

12345678910>>...13

/third_party/node/deps/npm/node_modules/editor/
DREADME.markdown1 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
Dindex.js11 var editor = opts.editor || process.env.VISUAL || process.env.EDITOR || ed;
12 var args = editor.split(/\s+/);
/third_party/flutter/skia/experimental/editor/
Deditor_application.cpp58 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 …]
Deditor.h24 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) {
DREADME.md37 ninja -C out/default editor
39 out/default/editor resources/text/english.txt
42 out/default/editor example.txt
/third_party/skia/experimental/sktext/
DBUILD.gn106 "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/
Dtest_format.py8 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 …]
Dtest_zzdummy.py9 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)
Dtest_editor.py3 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/
DmoduleVisibilityTest3.js14 module editor {
39 var editor; variable
40 (function (editor) { argument
49 })(editor || (editor = {}));
DmoduleAliasInterface.js14 module editor {
69 var editor; variable
70 (function (editor) { argument
80 })(editor || (editor = {}));
DexternalModuleQualification.types20 f(editor: DiffEditor<any, any, any>) {
21 >f : (editor: DiffEditor<any, any, any>) => void
22 >editor : DiffEditor<any, any, any>
DmoduleCrashBug1.symbols18 module editor {
19 >editor : Symbol(editor, Decl(moduleCrashBug1.ts, 8, 1))
DmoduleVisibilityTest3.types17 module editor {
18 >editor : typeof editor
DexternalModuleQualification.symbols23 f(editor: DiffEditor<any, any, any>) {
25 >editor : Symbol(editor, Decl(externalModuleQualification.ts, 7, 6))
DmoduleVisibilityTest3.symbols18 module editor {
19 >editor : Symbol(editor, Decl(moduleVisibilityTest3.ts, 8, 1))
/third_party/node/deps/npm/node_modules/opener/
DREADME.md28 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/
Dnamespaces16 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/
DMainFragment.java290 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/
Dedit.js12 var editor = require('editor') variable
44 editor(f, { editor: e }, noProgressTillDone(function (er) { property
/third_party/skia/modules/skplaintexteditor/
DREADME.md37 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/
DApp.cpp24 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/
Digstyle.css26 /* 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/
Digstyle.css26 /* 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/
Dnpm-edit.md20 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

12345678910>>...13