Searched refs:until (Results 1 - 25 of 132) sorted by relevance

123456

/macosx-10.10.1/vim-55/runtime/indent/
H A Dlua.vim15 " To make Vim call GetLuaIndent() when it finds '\s*end' or '\s*until'
17 setlocal indentkeys+=0=end,0=until
49 " an "end" or "until" is not present on the same line.
50 if synIDattr(synID(prevlnum, midx + 1, 1), "name") != "luaComment" && prevline !~ '\<end\>\|\<until\>'
55 " Subtract a 'shiftwidth' on end, else (and elseif), until and '}'
57 let midx = match(getline(v:lnum), '^\s*\%(end\|else\|until\|}\)')
H A Drpl.vim14 setlocal indentkeys+==~end,=~case,=~if,=~then,=~else,=~do,=~until,=~while,=~repeat,=~select,=~default,=~for,=~start,=~next,=~step,<<>,<>>
31 " case, select, default, do, until, while, repeat, for, start
34 elseif prevstat =~? '\<\(if\|iferr\|then\|else\|elseif\|select\|case\|do\|until\|while\|repeat\|for\|start\|default\)\>' || prevstat =~? '\(^\|\s\+\)<<\($\|\s\+\)'
38 " Subtract a shiftwidth from then, else, elseif, end, until, repeat, next,
41 if line =~? '^\s*\(then\|else\|elseif\|until\|repeat\|next\|step\|default\|end\)\>'
H A Dmupad.vim24 setlocal indentkeys==end_proc,=then,=else,=elif,=end_if,=end_case,=until,=end_repeat,=end_domain,=end_for,=end_while,=end,o,O
26 call GenericIndentStmts('begin,if,then,else,elif,case,repeat,until,domain,do')
27 call GenericDedentStmts('end_proc,then,else,elif,end_if,end_case,until,end_repeat,end_domain,end_for,end_while,end')
H A Dhamster.vim14 setlocal indentkeys+==~do,=~until,=~while,=~repeat,=~for,=~loop
28 " case, select, default, do, until, while, for, start
33 " Subtract a shiftwidth from else, elseif, end(if|while|for), until
35 if line =~? '^\s*\(else\|elseif\|loop\|until\|end\%(if\|while\|for\|sub\)\)\>'
H A Deiffel.vim22 setlocal indentkeys+==end,=else,=ensure,=require,=check,=loop,=until
29 let s:relative_indent = '^\s*\(deferred\|class\|feature\|creation\|inherit\|loop\|from\|until\|if\|else\|elseif\|ensure\|require\|check\|do\|local\|invariant\|variant\|rename\|redefine\|do\|export\)\>'
30 let s:outdent = '^\s*\(else\|invariant\|variant\|do\|require\|until\|loop\|local\)\>'
H A Dpascal.vim15 setlocal indentkeys+==end;,==const,==type,==var,==begin,==repeat,==until,==for
144 " unindentation (for end/until/else)
151 if this_codeline =~ '^\s*\<\(end\|until\|else\)\>'
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Regress/
H A Dregress-31255.js61 var x = 1; <!-- until end-of-line
68 --> HTML comment end is JS comments until end-of-line
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Ddialog2.tcl13 set i [tk_dialog .dialog2 "Dialog with global grab" {This dialog box uses a global grab, so it prevents you from interacting with anything on your display until you invoke one of the buttons below. Global grabs are almost always a bad idea; don't use them unless you're truly desperate.} warning 0 OK Cancel {Show Code}]
H A Ddialog1.tcl8 set i [tk_dialog .dialog1 "Dialog with local grab" {This is a modal dialog box. It uses Tk's "grab" command to create a "local grab" on the dialog box. The grab prevents any pointer-related events from getting to any other windows in the application until you have answered the dialog by invoking one of the buttons below. However, you can still interact with other applications.} \
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Ddialog2.tcl13 set i [tk_dialog .dialog2 "Dialog with global grab" {This dialog box uses a global grab, so it prevents you from interacting with anything on your display until you invoke one of the buttons below. Global grabs are almost always a bad idea; don't use them unless you're truly desperate.} warning 0 OK Cancel {Show Code}]
H A Ddialog1.tcl8 set i [tk_dialog .dialog1 "Dialog with local grab" {This is a modal dialog box. It uses Tk's "grab" command to create a "local grab" on the dialog box. The grab prevents any pointer-related events from getting to any other windows in the application until you have answered the dialog by invoking one of the buttons below. However, you can still interact with other applications.} \
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dishd.vim18 \ '\%(^\s*\)\@<=\<repeat\>\s*$:\%(^\s*\)\@<=\<until\>\s\+.\{-}\s*;\s*$,' .
H A Dlua.vim34 \ '\<repeat\>:\<until\>'
H A Dmupad.vim30 call AppendMatchGroup('\%(for\|while\|repeat\|case\),of,do,break,next,until,\%(end_for\|end_while\|end_repeat\|end_case\)')
/macosx-10.10.1/tcl-105/tcl/tcl/tools/
H A DtclZIC.tcl184 set until [parseZone $fileName $lno \
196 set until [parseZone $fileName $lno $lastZone $words $until]
650 # Returns the 'until' field of the current line
666 # the 'until' field from this line, and a variable name where points
766 # until - Time at which the rule expires.
783 namePattern until pointsVar} {
808 # until - Time at which the rule expires.
825 namePattern until pointsVar} {
851 # until
[all...]
/macosx-10.10.1/cron-39/lib/
H A Dmisc.c54 strcmp_until(left, right, until)
57 int until;
61 while (*left && *left != until && *left == *right) {
66 if ((*left=='\0' || *left == until) &&
67 (*right=='\0' || *right == until)) {
521 /* copy until next terminator or full buffer */
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter2/
H A Dlexer.ml21 (* Comment until end of line. *)
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter3/
H A Dlexer.ml21 (* Comment until end of line. *)
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter4/
H A Dlexer.ml21 (* Comment until end of line. *)
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter5/
H A Dlexer.ml21 (* Comment until end of line. *)
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter6/
H A Dlexer.ml21 (* Comment until end of line. *)
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter7/
H A Dlexer.ml21 (* Comment until end of line. *)
/macosx-10.10.1/ruby-106/ruby/misc/
H A Druby-electric.el71 (regexp-opt '("def" "if" "class" "module" "unless" "case" "while" "do" "until" "for" "begin") t)
103 'class', 'def', 'if', 'unless', 'case', 'until', 'for', 'begin',
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dreldtfmt.h288 * @return the number of days in "until-now"
290 static int32_t dayDifference(Calendar &until, UErrorCode &status);
/macosx-10.10.1/ruby-106/ruby/
H A Dlex.c143 {"until", {keyword_until, modifier_until}, EXPR_VALUE},

Completed in 107 milliseconds

123456