Home
last modified time | relevance | path

Searched full:motion (Results 1 – 25 of 154) sorted by relevance

1234567

/freebsd/contrib/nvi/vi/
H A Dvi.c137 * motion. If it does, we get it too, calling its underlying in vi()
171 * any motion component goes away, i.e. "d3w2." deletes a in vi()
196 * Do any required motion; v_motion sets the from MARK and the in vi()
281 * its motion, the count was used only for the motion. in vi()
301 * motion component. Other similar commands (e.g. +, -) don't in vi()
419 * The O_TILDEOP option makes the ~ command take a motion instead
429 "[count]~[count]motion",
430 " ~ change case to motion"
439 * [count] [buffer] [count] key [[motion] | [buffer] [character]]
441 * and there are several special cases. The motion value is itself a vi
[all …]
H A Dv_left.c51 * All commands move to the end of the range. Motion commands in v_left()
74 * If the _ is a motion component, it makes the command a line motion in v_cfirst()
96 * Can't just use RCM_SET_FNB, in case _ is used as the motion in v_cfirst()
120 * Delete and non-motion commands move to the end of the range, in v_cfirst()
147 * Can't just use RCM_SET_FNB, in case ^ is used as the motion in v_first()
157 * on the first non-blank in the line, but failed if used as a motion in v_first()
166 * If moving right, non-motion commands move to the end of the range. in v_first()
167 * Delete and yank stay at the start. Motion commands adjust the in v_first()
170 * If moving left, all commands move to the end of the range. Motion in v_first()
206 * didn't move, but failed if used as a motion component in the in v_ncol()
[all …]
H A Dv_right.c48 * Non-motion commands move to the end of the range. Delete and in v_right()
50 * range for motion commands. in v_right()
92 * Historically, if the $ is a motion, and deleting from in v_dollar()
94 * line motion, and the line motion flag is set. in v_dollar()
109 * Historically, it was illegal to use $ as a motion command on in v_dollar()
131 * Non-motion commands move to the end of the range. Delete in v_dollar()
H A Dv_mark.c138 /* Non-motion commands move to the end of the range. */ in mark()
146 * If a motion component to a BQMARK, the cursor has to move. in mark()
156 * If the motion is in the reverse direction, switch the start and in mark()
173 * Yank cursor motion, when associated with marks as motion commands, in mark()
176 * ` motion ' motion in mark()
192 * Delete cursor motion was always to the start of the text region, in mark()
193 * regardless. Ignore other motion commands. in mark()
H A Dv_cmd.c146 "[count]![count]motion command(s)",
147 " ! filter through command(s) to motion"},
232 "[count]<[count]motion",
233 " < shift lines left to motion"},
238 "[count]>[count]motion",
239 " > shift lines right to motion"},
361 * anyway, in case it's a motion component. DO set VM_RCM_SET, so
362 * that any motion that's part of a command is preserved.
389 "[buffer][count]c[count]motion",
390 " c change to motion"},
[all …]
H A Dvi.h25 VIKEYS const *kp; /* Command/Motion VIKEYS entry. */
35 * succeed if they were associated with a motion command, and fail
43 * motion routines know what's really going on.
46 * functions (motion component or command) as well. For this reason,
53 #define VM_LMODE 0x00000008 /* Motion is line oriented. */
83 * Commands that can be motion components set the end of the range
96 * as a motion component. The general rules are as follows:
98 * 1: If not a motion component, the final cursor is at the end
105 * Usually, if moving backward in the file and it's a motion component,
135 #define V_MOTION 0x00200000 /* Motion (required, trailing). */
[all …]
H A Dv_paragraph.c140 * Non-motion commands move to the end of the range, in v_paragraphf()
142 * Adjust the end of the range for motion commands; in v_paragraphf()
143 * historically, a motion component was to the end of in v_paragraphf()
164 * Adjust end of the range for motion commands; EOF is a movement in v_paragraphf()
184 * Non-motion commands move to the end of the range, delete in v_paragraphf()
218 * repeatedly, unless it was part of a motion command. There is no in v_paragraphb()
231 * Correct for a left motion component while we're thinking about it. in v_paragraphb()
302 * adjusted the start of the range for motion commands). in v_paragraphb()
H A Dv_word.c55 * you, or, if you did it from the start of the line as part of a motion
114 * counts as a single word move. If it's a motion command, in fword()
149 * If a motion command and we're at the end of the in fword()
207 * That's okay for motion commands, however. in fword()
215 /* Adjust the end of the range for motion commands. */ in fword()
222 * Non-motion commands move to the end of the range. Delete in fword()
355 * That's okay for motion commands, however. in eword()
363 /* Set the end of the range for motion commands. */ in eword()
368 * Non-motion commands move to the end of the range. in eword()
504 /* Set the end of the range for motion commands. */ in bword()
[all …]
H A Dv_ulcase.c40 * if there had been an associated motion, but it's too late to make
98 * v_mulcase -- [count]~[count]motion
125 * I didn't create a new motion command when I added motion semantics in v_mulcase()
129 * follow the cursor motion rules for yank commands, but that seems in v_mulcase()
H A Dv_search.c75 * If using the search command as a motion, any addressing components in v_exaddr()
152 * being used as a motion, the trailing z command was ignored. in v_exaddr()
203 * motion command. Should probably be an error, but not worth the in v_exaddr()
211 * Historically, if it wasn't a motion command, a delta in the search in v_exaddr()
258 /* Non-motion commands move to the end of the range. */ in v_exaddr()
394 /* If it's a motion search, offset past end-of-line is okay. */ in v_search()
423 /* Correct motion commands, otherwise, simply move to the location. */ in v_search()
434 * Handle command with a search as the motion.
438 * motion command was a search and the final position was the start/end
468 * search as a motion component fail when the search returns to the in v_correct()
[all …]
H A Dv_yank.c24 * v_yank -- [buffer][count]y[count][motion]
35 * to the line and column marked by a. Hopefully, the motion component code
54 * that can be a motion component. in v_yank()
H A Dv_delete.c24 * v_delete -- [buffer][count]d[count]motion
66 * that can be a motion component. in v_delete()
93 * The "dd" command moved to the first non-blank; "d<motion>" in v_delete()
H A Dv_ch.c115 * Make any necessary correction to the motion decision made in v_cht()
175 * Non-motion commands move to the end of the range. in v_chf()
197 * of the original cursor position, offset adjusted for a motion in v_chT()
267 * All commands move to the end of the range. Motion commands in v_chF()
/freebsd/share/doc/usd/13.viref/
H A Dvi.cmd.roff179 .KY "motion"
180 .IP "motion"
198 The motion command may be either the command character repeated (in
211 The following commands may all be used as motion components for
236 commands that take motion commands,
239 commands that are used as motion components,
242 considered part of the motion argument.
253 command and its motion component,
254 the effect is multiplicative and is considered part of the motion argument.
386 command may be used as the motion component of other
[all …]
/freebsd/share/doc/usd/22.trofftut/
H A Dtt0689 or you will get an unbalanced vertical motion.
98 command can be used to request an arbitrary amount of vertical motion.
103 causes motion up or down the page by the amount specified in
114 A minus sign causes upward motion, while
118 causes an upward vertical motion
121 There are many other ways to specify the amount of motion _
153 should always balance upward vertical motion in a line with
165 causes a backwards motion of a tenth of an inch.
203 or the motion produced will be far too large.
227 commands for local motion.
[all …]
H A Dttindex55 #h (horizontal motion) 12
60 #v (vertical motion) 11
62 #z (zero motion) 13
122 horizontal motion (#h) 12
191 vertical motion (#v) 11
197 zero motion (#z) 13
/freebsd/share/doc/usd/21.troff/
H A Dm345 can both be used to generate either horizontal motion or
50 The default difference is that tabs generate motion and leaders generate
53 offer the choice of repeated character or motion.
70 Tab Length of motion or Location of
77 The length of generated motion is allowed to be negative, but
80 any residual distance is prepended as motion.
121 or is removed specifying motion.
125 or is removed specifying motion.
193 by a backward horizontal motion having the width of the
290 can be used for \fIlocal\fR vertical and horizontal motion respectively.
[all …]
H A Dm0a489 11.1 \fB\ed\fR Forward (down) 1\(sl2\|em vertical motion (1\(sl2 line in \*(NR)
491 11.1 \fB\eh\fI\'N|\'\fR Local horizontal motion; move right \fIN\fR \fI(negative left)\fR
498 11.1 \fB\er\fR Reverse 1\|em vertical motion (reverse line in \*(NR)
501 11.1 \fB\eu\fR Reverse (up) 1\(sl2\|em vertical motion (1\(sl2 line in \*(NR)
502 11.1 \fB\ev\fI\'N\|\|\'\fR Local vertical motion; move down \fIN\fR \fI(negative up)\fR
/freebsd/contrib/nvi/man/
H A Dvi.1393 commands depend on their associated motion command:
476 It is specified using a line-oriented motion.
478 It is specified using one of the following motion commands:
535 .It Ar motion
547 .Ar motion
551 and considered part of the motion.
732 .Ar motion shell-argument(s)
738 .Ar motion
904 .Ar motion .
957 commands are used as motion components for the
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DLICM.h1 //===- LICM.h - Loop Invariant Code Motion Pass -------*- C++ -*-===//
9 // This pass performs loop invariant code motion, attempting to remove as much
65 /// Performs Loop Invariant Code Motion Pass.
83 /// Performs LoopNest Invariant Code Motion Pass.
/freebsd/share/doc/usd/12.vi/viapwh/
H A Dvi.apwh.ms217 Cursor and Page Motion
295 are not true motion commands, in that they
365 The mark command is not a motion, and cannot be used as the target
476 .IP "[cnt]d{motion}" 16
478 Deletes one or more occurrences of the specified motion.
479 Any motion from sections 4.1 and 4.2 can be used here.
506 .IP "[cnt]c{motion}{text}<esc>" 16
508 Change the specified "motion" by replacing it with the
511 Motion's can be any motion from sections 4.1 or 4.2.
538 .IP ["<a-z>][cnt]y{motion} 16
[all …]
/freebsd/sys/contrib/device-tree/src/powerpc/
H A Dmotionpro.dts3 * Motion-PRO board Device Tree Source
12 &gpt6 { // Motion-PRO status LED
17 &gpt7 { // Motion-PRO ready LED
/freebsd/share/man/man4/
H A Dasmc.470 the internal fans and check the status of the Sudden Motion Sensor.
113 .Sh SUDDEN MOTION SENSOR
114 The Sudden Motion Sensor (SMS for short) is a device that detects
/freebsd/contrib/nvi/ex/
H A Dex_bang.c159 * a forward motion it moved to the first nonblank, but if you in ex_bang()
160 * did a backward motion it didn't. And, if you followed a in ex_bang()
161 * backward motion with a forward motion, it wouldn't move to in ex_bang()
/freebsd/sys/contrib/device-tree/Bindings/iio/imu/
H A Dnxp,fxos8700.yaml14 …https://www.nxp.com/products/sensors/motion-sensors/6-axis/digital-motion-sensor-3d-accelerometer-…

1234567