Home
last modified time | relevance | path

Searched refs:moveCursor (Results 1 – 14 of 14) sorted by relevance

/third_party/node/test/parallel/
Dtest-readline-csi.js90 assert.strictEqual(readline.moveCursor(writable, set[0], set[1]), true);
94 readline.moveCursor(writable, set[0], set[1], common.mustCall()),
102 readline.moveCursor(writable, 1, 1, null);
106 assert.strictEqual(readline.moveCursor(null, 1, 1), true);
107 assert.strictEqual(readline.moveCursor(undefined, 1, 1), true);
108 assert.strictEqual(readline.moveCursor(null, 1, 1, common.mustCall((err) => {
111 assert.strictEqual(readline.moveCursor(undefined, 1, 1, common.mustCall()),
Dtest-tty-backwards-api.js41 assert.strictEqual(writeStream.moveCursor(1, 2), true);
42 assert.strictEqual(writeStream.moveCursor(1, 2, common.mustCall()), true);
/third_party/node/lib/internal/repl/
Dutils.js37 moveCursor,
174 moveCursor(repl.output, 0, rows);
176 moveCursor(repl.output, 0, -rows);
188 moveCursor(repl.output, 0, rows);
201 moveCursor(repl.output, 0, -rows);
272 moveCursor(repl.output, 0, displayPos.rows - cursorPos.rows);
279 moveCursor(repl.output, 0, -rows);
442 moveCursor(repl.output, 0, rows);
445 moveCursor(repl.output, 0, -rows - 1);
637 moveCursor(repl.output, 0, -rows);
[all …]
/third_party/flutter/skia/experimental/editor/
Deditor_application.cpp184 return this->moveCursor(editor::Editor::Movement::kRight); in onChar()
237 bool moveCursor(editor::Editor::Movement m, bool shift = false) { in moveCursor() function
290 return this->moveCursor(convert(key), shift); in onKey()
317 return this->moveCursor(editor::Editor::Movement::kWordLeft, shift); in onKey()
319 return this->moveCursor(editor::Editor::Movement::kWordRight, shift); in onKey()
/third_party/skia/modules/skplaintexteditor/app/
Deditor_application.cpp203 return this->moveCursor(Editor::Movement::kRight); in onChar()
274 bool moveCursor(Editor::Movement m, bool shift = false) { in moveCursor() function
327 return this->moveCursor(convert(key), shift); in onKey()
355 return this->moveCursor(Editor::Movement::kWordLeft, shift); in onKey()
357 return this->moveCursor(Editor::Movement::kWordRight, shift); in onKey()
/third_party/node/lib/
Dtty.js149 WriteStream.prototype.moveCursor = function(dx, dy, callback) { method in WriteStream
151 return readline.moveCursor(this, dx, dy, callback);
Dreadline.js495 moveCursor(this.output, 0, -prevRows);
516 moveCursor(this.output, 0, -diff);
903 moveCursor(this.output, diffWidth, 0);
1335 function moveCursor(stream, dx, dy, callback) { function
1411 moveCursor field
/third_party/skia/experimental/sktext/editor/
DEditor.h48 bool moveCursor(skui::Key key);
DEditor.cpp71 bool Editor::moveCursor(skui::Key key) { in moveCursor() function in skia::editor::Editor
222 this->moveCursor(key); in onKey()
/third_party/typescript/src/testRunner/parallel/
Dhost.ts150 readline.moveCursor(process.stdout, -process.stdout.columns, -this._lineCount);
159 readline.moveCursor(process.stdout, -process.stdout.columns, +1);
/third_party/node/doc/api/
Dtty.md257 ### `writeStream.moveCursor(dx, dy[, callback])`
273 `writeStream.moveCursor()` moves this `WriteStream`'s cursor *relative* to its
Dreadline.md721 ## `readline.moveCursor(stream, dx, dy[, callback])`
738 The `readline.moveCursor()` method moves the cursor *relative* to its current
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_inputmethodengine.js315 moveCursor: function (...args) { method
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md2485 …t/4a7e20ff81)] - **(SEMVER-MINOR)** **readline**: expose stream API in moveCursor() (cjihrig) [#28…