Searched refs:opts (Results 176 - 200 of 575) sorted by relevance

1234567891011>>

/macosx-10.10/ncurses-44/ncurses/form/
H A Dfld_link.c82 New_Field->opts = field->opts;
/macosx-10.10/patch_cmds-17/diffstat/porting/
H A Dgetopt.c37 getopt(int argc, char *const *argv, const char *opts) argument
53 if (c == ':' || (cp = strchr(opts, c)) == NULL) {
/macosx-10.10/tcl-105/tcl_ext/bwidget/bwidget/
H A Dpanelframe.tcl176 array set opts [list \
183 if {[info exists opts($key)]} {
184 set opts($key) $val
187 append msg [join [lsort [array names opts]] {, }]
191 foreach {ipadx ipady} [_padval $opts(-pad)] { break }
196 pack $w -in $f -padx $ipadx -pady $ipady -side $opts(-side) \
197 -fill $opts(-fill) -expand $opts(-expand)
/macosx-10.10/zsh-61/zsh/Src/
H A Dinit.c232 /* There's a bit of trickery with opts[INTERACTIVE] here. It starts *
236 * "opts[INTERACTIVE] &= 1", so that only a *default* on state will *
239 opts[INTERACTIVE] = isatty(0) ? 2 : 0;
244 opts[MONITOR] = 2; /* may be unset in init_io() */
245 opts[HASHDIRS] = 2; /* same relationship to INTERACTIVE */
246 opts[SHINSTDIN] = 0;
247 opts[SINGLECOMMAND] = 0;
249 if (parseopts(NULL, &argv, opts, &cmd, NULL))
259 opts[INTERACTIVE] &= 1;
265 opts[SHINSTDI
[all...]
/macosx-10.10/tcl-105/tcl_ext/sdx/sdx/lib/autoproxy/
H A Dautoproxy.tcl109 set opts [join [lsort [array names options]] ", -"]
111 must be one of -$opts"
312 array set opts {user {} passwd {} realm {}}
315 -u* { set opts(user) $value}
316 -p* { set opts(passwd) $value}
317 -r* { set opts(realm) $value}
327 && ($opts(user) == {} || $opts(passwd) == {})} {
328 set r [$options(authProc) $opts(user) $opts(passw
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/http/
H A Dautoproxy.tcl109 set opts [join [lsort [array names options]] ", -"]
111 must be one of -$opts"
312 array set opts {user {} passwd {} realm {}}
315 -u* { set opts(user) $value}
316 -p* { set opts(passwd) $value}
317 -r* { set opts(realm) $value}
327 && ($opts(user) == {} || $opts(passwd) == {})} {
328 set r [$options(authProc) $opts(user) $opts(passw
[all...]
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/apps/comm/
H A Dwebserver.xotcl3 array set opts {-root ../../doc -port 8086 -protected-port 9096 -pkgdir .}
4 array set opts $argv
5 lappend auto_path $opts(-pkgdir)
43 Httpd h1 -port $opts(-port) -root $opts(-root)
108 Httpd h2 -port $opts(-protected-port) -root $opts(-root) \
/macosx-10.10/BerkeleyDB-21/db/test/
H A Drep055.tcl48 set opts { clean noclean }
50 foreach c $opts {
59 proc rep055_sub { method niter tnum recargs opts largs } {
165 puts "\tRep$tnum.g: Reopen client ($opts)."
166 if { $opts == "clean" } {
178 if { $opts != "clean" } {
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/threadTest/
H A DsslThrash.cpp140 char *opts = testParams->testOpts; local
141 if(opts == NULL) {
145 while(*opts != '\0') {
146 switch(*opts) {
163 opts++;
/macosx-10.10/bash-94.1.2/bash-3.2/builtins/
H A Dbashgetopt.c48 internal_getopt(list, opts)
50 char *opts;
57 plus = *opts == '+';
59 opts++;
91 if (c == ':' || (cp = strchr(opts, c)) == NULL) {
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Doc/sphinx_build/html/_static/
H A Dwebsupport.js150 var context = $.extend({id: id}, opts);
184 url: opts.getCommentsURL,
233 url: opts.addCommentURL,
257 ao.find('img').attr({'src': opts.commentBrightImage});
323 url: opts.acceptCommentURL,
338 url: opts.deleteCommentURL,
427 if (!opts.voting) {
477 url: opts.processVoteURL,
556 if (!comment.displayed && !opts.moderator) {
566 var context = $.extend({}, opts, commen
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/getstring/
H A Dtk_getString.tcl98 proc ::getstring::parseOpts {var opts input} {
101 for {set a 0} {$a < [llength $opts]} {incr a} {
102 if {[lindex $opts $a 0] == [lindex $input $i]} { break }
104 if {$a == [llength $opts]} { error "unknown option [lindex $input $i]" }
105 set opt [lindex $opts $a]
/macosx-10.10/OpenSSL098-52/src/Netware/
H A Dbuild.bat7 rem build [target] [debug opts] [assembly opts] [configure opts]
14 rem debug opts - "debug" - build debug
16 rem assembly opts - "nw-mwasm" - use Metrowerks assembler
20 rem configure opts- all unrecognized arguments are passed to the
63 :opts label
91 goto opts
207 echo . usage: build [target] [debug opts] [assembly opts] [configur
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/ripemd/
H A Dripemd160.tcl719 array set opts {-hex 0 -filename {} -channel {} -chunksize 4096}
722 -hex { set opts(-hex) 1 }
723 -file* { set opts(-filename) [Pop args 1] }
724 -channel { set opts(-channel) [Pop args 1] }
725 -chunksize { set opts(-chunksize) [Pop args 1] }
729 set err [join [lsort [array names opts]] ", "]
737 if {$opts(-filename) != {}} {
738 set opts(-channel) [open $opts(-filename) r]
739 fconfigure $opts(
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/aes/
H A Daes.tcl518 array set opts {-dir encrypt -mode cbc -key {} -in {} -out {} -chunksize 4096 -hex 0}
519 set opts(-iv) [string repeat \0 16]
524 -mode { set opts(-mode) [SetOneOf $modes [Pop args 1]] }
525 -dir { set opts(-dir) [SetOneOf $dirs [Pop args 1]] }
526 -iv { set opts(-iv) [CheckSize -iv 16 [Pop args 1]] }
527 -key { set opts(-key) [Pop args 1] }
528 -in { set opts(-in) [Pop args 1] }
529 -out { set opts(-out) [Pop args 1] }
530 -chunksize { set opts(-chunksize) [Pop args 1] }
531 -hex { set opts(
[all...]
/macosx-10.10/apache-793/httpd/server/
H A Drequest.c422 * To optimize, we stat() anything when given (opts & OPT_SYM_LINKS), otherwise
426 static int resolve_symlink(char *d, apr_finfo_t *lfi, int opts, apr_pool_t *p) argument
431 if (!(opts & (OPT_SYM_OWNER | OPT_SYM_LINKS))) {
439 if (!(opts & OPT_SYM_OWNER)) {
492 * of core.opts and core.override, the only options tested within
499 allow_options_t opts; member in struct:core_opts_t
507 static void core_opts_merge(const ap_conf_vector_t *sec, core_opts_t *opts) argument
515 if (this_dir->opts & OPT_UNSET) {
516 opts->add = (opts
672 allow_options_t opts; local
734 core_opts_t opts; local
[all...]
/macosx-10.10/CPANInternal-159.1/Class-DBI-v3.0.17/lib/Class/DBI/Search/
H A DBasic.pm83 __PACKAGE__->mk_accessors(qw/class args opts type/);
87 my ($args, $opts) = $me->_unpack_args(@args);
91 opts => $opts,
98 $self->{opts}->{$option};
104 my $opts = @args % 2 ? pop @args : {};
105 return (\@args, $opts);
/macosx-10.10/ruby-106/ruby/ext/dl/lib/dl/
H A Dimport.rb114 def parse_bind_options(opts)
116 while( opt = opts.shift() )
122 h[:carrier] = opts.shift()
131 def extern(signature, *opts)
134 opt = parse_bind_options(opts)
154 def bind(signature, *opts, &blk)
157 h = parse_bind_options(opts)
/macosx-10.10/ruby-106/ruby/ext/fiddle/lib/fiddle/
H A Dimport.rb133 def parse_bind_options(opts)
135 while( opt = opts.shift() )
141 h[:carrier] = opts.shift()
161 def extern(signature, *opts)
163 opt = parse_bind_options(opts)
184 # +opts+ as bind parameters with the given block.
185 def bind(signature, *opts, &blk)
187 h = parse_bind_options(opts)
/macosx-10.10/tcl-105/tcl/tcl/library/
H A Dauto.tcl151 if {![catch {uplevel #0 [list source $file]} msg opts]} {
155 append errors [dict get $opts -errorinfo]\n
216 if {[catch {auto_mkindex_parser::mkindex $file} msg opts] == 0} {
220 return -options $opts $msg
260 } msg opts]
264 return -options $opts $msg
273 } msg opts]
278 return -options $opts $msg
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/base64/
H A Dascii85.tcl43 array set opts [array get options]
44 array set opts [lrange $args 0 end-1]
45 foreach key [array names opts] {
52 if {![string is integer -strict $opts(-maxlen)]
53 || $opts(-maxlen) < 0} {
55 \"$opts(-maxlen)\""
64 set ml $opts(-maxlen)
65 set wc $opts(-wrapchar)
/macosx-10.10/ncurses-44/ncurses/c++/
H A Dcursesm.h105 inline void options_on (Item_Options opts) { argument
106 OnError (::item_opts_on (item, opts));
110 inline void options_off (Item_Options opts) { argument
111 OnError (::item_opts_off (item, opts));
120 inline void set_options (Item_Options opts) { argument
121 OnError (::set_item_opts (item, opts));
447 inline void options_on (Menu_Options opts) { argument
448 OnError (::menu_opts_on (menu,opts));
451 inline void options_off(Menu_Options opts) { argument
452 OnError (::menu_opts_off(menu,opts));
459 set_options(Menu_Options opts) argument
[all...]
/macosx-10.10/ruby-106/ruby/tool/
H A Deval.rb20 opts = OPTIONS.dup
22 o = opts.dup
23 opts.delete(opt)
/macosx-10.10/xnu-2782.1.97/tools/tests/libMicro/
H A Dcascade_mutex.c68 static int opts = 0; variable
94 opts = 1;
122 if (lm_optP > 1 || opts) {
/macosx-10.10/tcl-105/tcl_ext/tclxml/tcldom/library/
H A Ddomimpl.tcl353 array set opts {-parser {} -progresscommand {} -chunksize 8196}
354 if {[catch {array set opts [lrange $args 1 end]}]} {
360 array set $state [array get opts -*]
364 if {[string length $opts(-parser)]} {
365 set parserOpt [list -parser $opts(-parser)]
392 if {0 && [string length $opts(-progresscommand)]} {
395 $parser parse [string range [lindex $args 0] 0 $opts(-chunksize)]
397 [string range [lindex $args 0] $opts(-chunksize) end]]
398 uplevel #0 $opts(-progresscommand)
811 array set opts
[all...]

Completed in 329 milliseconds

1234567891011>>