Searched refs:then (Results 51 - 75 of 428) sorted by relevance

1234567891011>>

/macosx-10.10.1/llvmCore-3425.0.34/bindings/ocaml/llvm/
H A Dllvm.ml543 if i = e then () else
554 if i = e then init else
563 if i = e then () else
574 if i = e then init else
610 if i = e then () else
621 if i = e then init else
630 if i = e then () else
641 if i = e then init else
689 if (check attr) <> 0l then begin
710 if align <> 0l then
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml19 (* variant for if/then/else. *)
H A Dlexer.ml48 | "then" -> [< 'Token.Then; stream >]
H A Dparser.ml49 (* ifexpr ::= 'if' expr 'then' expr 'else' expr *)
51 'Token.Then ?? "expected 'then'"; t=parse_expr;
95 if token_prec < expr_prec then lhs else begin
110 then parse_bin_rhs (token_prec + 1) rhs stream
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml22 (* variant for if/then/else. *)
H A Dlexer.ml48 | "then" -> [< 'Token.Then; stream >]
H A Dcodegen.ml62 if Array.length params == Array.length args then () else
78 let then_bb = append_block context "then" the_function in
80 (* Emit 'then' value. *)
84 (* Codegen of 'then' can change the current block, update then_bb for the
108 (* Set a unconditional branch at the end of the 'then' block and the
202 if block_begin f <> At_end f then
206 if element_type (type_of f) <> ft then
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml22 (* variant for if/then/else. *)
H A Dlexer.ml48 | "then" -> [< 'Token.Then; stream >]
H A Dparser.ml50 (* ifexpr ::= 'if' expr 'then' expr 'else' expr *)
52 'Token.Then ?? "expected 'then'"; t=parse_expr;
120 if token_prec < expr_prec then lhs else begin
135 then parse_bin_rhs (token_prec + 1) rhs stream
199 then raise (Stream.Error "invalid number of operands for operator")
201 if kind == 1 then
/macosx-10.10.1/vim-55/runtime/compiler/
H A Ddecada.vim39 " plugin loaded by other means then the "compiler" command
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A DAppendMatchGroup.vim37 " As an example, let's take the ubiquitous if/then/else/endif type
44 " call AppendMatchGroup('if,then,else,endif')
48 " \<if\>:\<then\>:\<else\>:\<endif\>
61 " You should now be able to match 'if/then/else/endif' in succession
H A Dfortran.vim58 " compatible with both free and fixed format, then you should do so
93 \ s:notelse . '\<if\s*(.\+)\s*then\>:' .
94 \ '\<else\s*\%(if\s*(.\+)\s*then\)\=\>:\<end\s*if\>,'.
/macosx-10.10.1/vim-55/runtime/
H A Dftplugin.vim29 " "aaa.bbb" load "aaa" and then "bbb".
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dart.vim16 syn keyword artspform progn retract salience schema test then while
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-sql/rdbms_depend/pgsql/
H A Dtestdb_metadata.sql93 select setval (''persons_id_seq'', (select case when max(id) is null then 1 else max(id) end from persons));
95 values ((select case when max(id) is null then 1 else nextval(''persons_id_seq'') end from persons),'''','''');
103 when position('' '' in $1) = 0 then $1
108 when position('' '' in $1) = 0 then ''''
117 select setval (''phones_id_seq'', (select case when max(id) is null then 1 else max(id) end from phones));
125 select setval (''documents_id_seq'', (select case when max(id) is null then 1 else max(id) end from documents));
127 values ((select case when max(id) is null then 1 else nextval(''documents_id_seq'') end from documents),'''','''');
133 select setval (''institutes_id_seq'', (select case when max(id) is null then 1 else max(id) end from institutes));
135 values ((select case when max(id) is null then 1 else nextval(''institutes_id_seq'') end from institutes),'''');
141 select setval (''referrals_id_seq'', (select case when max(id) is null then
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dgnus-demon.el61 idleness. If IDLE is a number and TIME is nil, then call once each
162 (then (encode-time 0
179 (diff (+ (* 65536 (- (car then) (car now)))
180 (- (cadr then) (cadr now)))))
/macosx-10.10.1/CPANInternal-159.1/Test-NoWarnings-1.04/lib/Test/
H A DNoWarnings.pm166 If some of your tests B<are supposed to> produce warnings then you should be
187 C<clear_warnings>, however, if you are doing this sort of thing then you
196 If you do a C<require> rather than a C<use>, then there will be no automatic
201 If warning is captured during your test then the details will output as part
253 is empty then a call to C<had_no_warnings()> will produce a pass result.
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_sig.c967 mach_timespec_t then; local
997 then.tv_sec = ts.tv_sec;
998 then.tv_nsec = ts.tv_nsec;
1006 then.tv_sec = 0;
1007 then.tv_nsec = 0;
1009 then.tv_sec = ts.tv_sec - now.tv_sec;
1010 then.tv_nsec = ts.tv_nsec - now.tv_nsec;
1011 if (then.tv_nsec < 0) {
1012 then.tv_nsec += NSEC_PER_SEC;
1013 then
1066 mach_timespec_t then; local
[all...]
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DDocument.pm144 # and then unwinds with a large gin and tonic.
287 # It then writes this to the file denoted by the first argument.
370 This is then evaluated into a subroutine reference using C<eval()>.
380 The L<process()> method can then be called on the instantiated
385 resolved by the context. The main C<BLOCK> subroutine is then executed,
387 template subroutine is then returned by the L<process()> method, after calling
443 (passing the context reference as a parameter) and then calls
494 templates) then the L<Template::Parser> module calls this subroutine before
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DDirectory.pm221 It then provides access to the files and sub-directories contained within
249 C<Template::Plugin::Directory>. If the C<recurse> flag is set, then those
251 C<recurse> flag unset, as it is by default, then each is just a place
330 The view C<print()> method can then be called, passing the
337 or C<[% dir.present(view) %]>, then the C<directory> C<BLOCK> within the
347 method is then called to present each item within the directory to the view.
/macosx-10.10.1/vim-55/runtime/macros/
H A Dshellmenu.vim19 imenu Stmts.if if then fiki kk0elli
23 imenu Stmts.if-else if then else fiki kki kk0elli
29 imenu Stmts.elif elif then ki kk0elli
/macosx-10.10.1/CPANInternal-159.1/Log-Dispatch-2.34/lib/Log/Dispatch/
H A DOutput.pm282 level then it will croak.
296 you simply copy the code in the SYNOPSIS and then put some
297 functionality into the C<log_message> method then you should be all
/macosx-10.10.1/BerkeleyDB-21/db/examples_c/
H A Dex_thread.c274 time_t now, then; local
279 then = now;
313 if (now - then >= 20) {
315 then = now;
/macosx-10.10.1/CPANInternal-159.1/Class-DBI-v3.0.17/lib/Class/DBI/Cascade/
H A DNone.pm42 need to inherit from here, and then supply a cascade() method that does

Completed in 197 milliseconds

1234567891011>>