Searched refs:opt (Results 76 - 100 of 1396) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/lib/irb/ext/
H A Dtracer.rb36 def use_tracer=(opt)
37 if opt
42 elsif !opt && @use_tracer
45 @use_tracer=opt
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/generic/
H A DxotclMetaData.c37 if (obj->opt)
38 h1Ptr = Tcl_FindHashEntry(&obj->opt->metaData, name);
60 if (clPtr->cl->object.opt) {
61 if (Tcl_FindHashEntry(&clPtr->cl->object.opt->metaData, name)) {
73 if (obj->opt)
74 Tcl_DeleteHashTable(&obj->opt->metaData);
80 Tcl_InitHashTable(&obj->opt->metaData, TCL_STRING_KEYS);
105 if (obj->opt) {
106 Tcl_HashEntry *hPtr = Tcl_FindHashEntry(&obj->opt->metaData, option);
119 if (obj->opt) {
[all...]
/macosx-10.10/ruby-106/ruby/lib/rdoc/
H A Doptions.rb541 opts = OptionParser.new do |opt|
542 @option_parser = opt
543 opt.program_name = File.basename $0
544 opt.version = RDoc::VERSION
545 opt.release = nil
546 opt.summary_indent = ' ' * 4
547 opt.banner = <<-EOF
548 Usage: #{opt.program_name} [options] [names...]
582 opt.banner << " - #{parser}: #{regexp.join ', '}\n"
585 opt
[all...]
/macosx-10.10/objc4-646/runtime/
H A Dobjc-opt.mm25 objc-opt.mm
86 // preopt: the actual opt used at runtime (nil or &_objc_opt_data)
87 // _objc_opt_data: opt data possibly written by dyld
88 // opt is initialized to ~0 to detect incorrect use before preopt_init()
90 static const objc_opt_t *opt = (objc_opt_t *)~0;
102 return opt ? opt->selopt() : nil;
107 objc_clsopt_t *classes = opt ? opt->clsopt() : nil;
138 objc_clsopt_t *classes = opt
[all...]
/macosx-10.10/cups-408/
H A Dmakefull20 opt="$1"
23 case "$opt" in
33 confopts="$confopts $opt"
36 makeopts="$makeopts $opt"
/macosx-10.10/remote_cmds-47/telnet.tproj/
H A Dexterns.h172 #define my_state_is_do(opt) (options[opt]&MY_STATE_DO)
173 #define my_state_is_will(opt) (options[opt]&MY_STATE_WILL)
174 #define my_want_state_is_do(opt) (options[opt]&MY_WANT_STATE_DO)
175 #define my_want_state_is_will(opt) (options[opt]&MY_WANT_STATE_WILL)
177 #define my_state_is_dont(opt) (!my_state_is_do(opt))
[all...]
/macosx-10.10/ncurses-44/ncurses/menu/
H A Dm_item_opt.c65 if (item->opt != opts)
69 item->opt = opts;
82 _nc_Default_Item.opt = opts;
110 opts = citem->opt & ~(opts & ALL_ITEM_OPTS);
139 opts = citem->opt | opts;
156 returnItemOpts(ALL_ITEM_OPTS & Normalize_Item(item)->opt);
/macosx-10.10/libxslt-13/libxslt/win32/
H A Dconfigure.js70 function boolToStr(opt)
72 if (opt == false)
74 else if (opt == true)
82 function strToBool(opt)
84 if (opt == "0" || opt == "no")
86 else if (opt == "1" || opt == "yes")
330 var arg, opt;
332 opt
[all...]
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/saslauthd/
H A Dcfile.c166 int opt; local
168 for (opt = 0; opt < cf->n_kv; opt++) {
169 if (*key == cf->kvlist[opt].key[0] &&
170 !strcmp(key, cf->kvlist[opt].key))
171 return cf->kvlist[opt].value;
204 int opt; local
207 for (opt = 0; opt < c
[all...]
/macosx-10.10/ruby-106/ruby/ext/dbm/
H A Dextconf.rb42 def have_declared_libvar(var, headers = nil, opt = "", &b)
43 checking_for checking_message([*var].compact.join(' '), headers, opt) do
44 try_declared_libvar(var, headers, opt, &b)
48 def try_declared_libvar(var, headers = nil, opt = "", &b)
49 if try_link(<<"SRC", opt, &b)
64 def have_undeclared_libvar(var, headers = nil, opt = "", &b)
65 checking_for checking_message([*var].compact.join(' '), headers, opt) do
66 try_undeclared_libvar(var, headers, opt, &b)
70 def try_undeclared_libvar(var, headers = nil, opt = "", &b)
72 if try_link(<<"SRC", opt,
[all...]
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/sh/
H A Dbash.c194 Shopt_t newflags=shp->options, opt; local
197 memset(&opt,0,sizeof(opt));
240 opt=newflags;
243 opt.v[n]=~newflags.v[n];
245 memset(&opt,0xff,sizeof(opt));
253 && (is_option(&opt,SH_INTERACTIVE)
254 || is_option(&opt,SH_RESTRICTED)
255 || is_option(&opt,SH_RESTRICTED
[all...]
/macosx-10.10/xnu-2782.1.97/SETUP/config/
H A Dparser.y125 struct opt *op = (struct opt *)malloc(sizeof (struct opt));
127 op->op_next = (struct opt *) 0;
129 if (opt == (struct opt *) 0)
130 opt = op;
138 struct opt *op = (struct opt *)malloc(sizeof (struct opt));
[all...]
/macosx-10.10/rsync-45/rsync/popt/
H A Dpopt.c57 static void invokeCallbacksPRE(poptContext con, const struct poptOption * opt) argument
61 if (opt != NULL)
62 for (; opt->longName || opt->shortName || opt->arg; opt++) {
63 if (opt->arg == NULL) continue; /* XXX program error. */
64 if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) {
66 invokeCallbacksPRE(con, opt->arg);
67 } else if ((opt
80 invokeCallbacksPOST(poptContext con, const struct poptOption * opt) argument
103 invokeCallbacksOPTION(poptContext con, const struct poptOption * opt, const struct poptOption * myOpt, const void * myData, int shorty) argument
434 findOption(const struct poptOption * opt, const char * longName, char shortName, poptCallbackType * callback, const void ** callbackData, int singleDash) argument
602 poptSaveLong(const struct poptOption * opt, long aLong) argument
630 poptSaveInt(const struct poptOption * opt, long aLong) argument
661 const struct poptOption * opt = NULL; local
[all...]
/macosx-10.10/apr-32/apr/apr/network_io/os2/
H A Dsockopt.c41 apr_int32_t opt, apr_int32_t on)
51 if (opt & APR_SO_KEEPALIVE) {
56 if (opt & APR_SO_DEBUG) {
61 if (opt & APR_SO_REUSEADDR) {
66 if (opt & APR_SO_SNDBUF) {
71 if (opt & APR_SO_NONBLOCK) {
78 if (opt & APR_SO_LINGER) {
85 if (opt & APR_TCP_NODELAY) {
103 apr_int32_t opt, apr_int32_t *on)
105 switch(opt) {
[all...]
/macosx-10.10/ruby-106/ruby/tool/
H A Deval.rb10 opt-direct-threaded-code
11 opt-basic-operations
12 opt-operands-unification
13 opt-instructions-unification
14 opt-inline-method-cache
15 opt-stack-caching
16 }.map{|opt|
17 '--disable-' + opt
21 Configs = OPTIONS.map{|opt|
23 opts.delete(opt)
[all...]
/macosx-10.10/rsync-45/rsync/support/
H A Drrsync140 my($opt,$arg) = /^--([^=]+)(?:=(.*))?$/;
142 if (defined $opt) {
143 my $ct = $long_opt{$opt};
149 $last_opt = $opt;
152 $arg = check_arg($opt, $arg, $ct);
157 $opt = "--$opt";
160 $opt = "-$1";
164 die "$0: option $opt has been disabled on this server.\n";
196 my($opt,
[all...]
/macosx-10.10/Heimdal-398.1.2/kuser/
H A Dkswitch.c60 kswitch(struct kswitch_options *opt, int argc, char **argv) argument
65 if(opt->version_flag) {
70 if (opt->cache_string && opt->principal_string)
74 if (opt->interactive_flag) {
137 } else if (opt->principal_string) {
140 ret = krb5_parse_name(kcc_context, opt->principal_string, &p);
143 opt->principal_string);
149 opt->principal_string);
153 } else if (opt
[all...]
H A Dkcc.c62 help(void *opt, int argc, char **argv) argument
69 kgetcred(struct kgetcred_options *opt, int argc, char **argv) argument
71 if(opt->version_flag) {
83 kvno(struct kvno_options *opt, int argc, char **argv) argument
88 if(opt->version_flag) {
93 k.cache_string = opt->cache_string;
94 k.enctype_string = opt->enctype_string;
/macosx-10.10/llvmCore-3425.0.34/tools/llc/
H A Dllc.cpp47 static cl::opt<std::string>
50 static cl::opt<std::string>
54 static cl::opt<char>
62 static cl::opt<std::string>
65 static cl::opt<std::string>
68 static cl::opt<std::string>
80 static cl::opt<Reloc::Model>
95 static cl::opt<llvm::CodeModel::Model>
111 static cl::opt<bool>
116 cl::opt<TargetMachin
[all...]
/macosx-10.10/curl-83.1.2/curl/packages/vms/
H A Dsetup_gnv_curl_build.com153 $ create 'base_dir'gnv$conftest.opt
154 $ open/append opt 'base_dir'gnv$conftest.opt
155 $ if libzshr_line .nes. "" then write opt libzshr_line
156 $ if libcryptoshr_line .nes. "" then write opt libcryptoshr_line
157 $ if libsslshr_line .nes. "" then write opt libsslshr_line
158 $ close opt
166 $ create [.src]gnv$curl.opt
167 $ open/append opt [.src]gnv$curl.opt
[all...]
/macosx-10.10/emacs-93/emacs/lisp/eshell/
H A Desh-opt.el1 ;;; esh-opt.el --- command options processing
25 (provide 'esh-opt)
29 (defgroup eshell-opt nil
67 (lambda (opt)
68 (or (and (listp opt) (nth 3 opt))
72 (eshell-do-opt ,name ,options (quote ,body-forms)))))
83 (defun eshell-do-opt (name options body-forms)
116 (let ((opt (car options)))
118 (cond ((and (nth 0 opt)
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hx509/
H A Dhxtool.c194 cms_verify_sd(struct cms_verify_sd_options *opt, int argc, char **argv) argument
208 if (opt->missing_revoke_flag)
212 lock_strings(lock, &opt->pass_strings);
225 certs_strings(hxcontext, "anchors", anchors, lock, &opt->anchors_strings);
226 certs_strings(hxcontext, "store", store, lock, &opt->certificate_strings);
228 if (opt->pem_flag) {
244 if (pd.detached_data && opt->signed_content_string == NULL) {
268 if (opt->signed_content_string) {
269 ret = _hx509_map_file_os(opt->signed_content_string, &signeddata);
271 errx(1, "map_file: %s: %d", opt
372 cms_create_sd(struct cms_create_sd_options *opt, int argc, char **argv) argument
525 cms_unenvelope(struct cms_unenvelope_options *opt, int argc, char **argv) argument
592 cms_create_enveloped(struct cms_envelope_options *opt, int argc, char **argv) argument
723 pcert_print(struct print_options *opt, int argc, char **argv) argument
766 pcert_validate(struct validate_options *opt, int argc, char **argv) argument
796 certificate_copy(struct certificate_copy_options *opt, int argc, char **argv) argument
875 pcert_verify(struct verify_options *opt, int argc, char **argv) argument
1005 query(struct query_options *opt, int argc, char **argv) argument
1097 ocsp_fetch(struct ocsp_fetch_options *opt, int argc, char **argv) argument
1166 ocsp_print(struct ocsp_print_options *opt, int argc, char **argv) argument
1197 ocsp_verify(struct ocsp_verify_options *opt, int argc, char **argv) argument
1315 request_create(struct request_create_options *opt, int argc, char **argv) argument
1393 request_print(struct request_print_options *opt, int argc, char **argv) argument
1416 info(void *opt, int argc, char **argv) argument
1448 random_data(void *opt, int argc, char **argv) argument
1481 crypto_available(struct crypto_available_options *opt, int argc, char **argv) argument
1517 crypto_select(struct crypto_select_options *opt, int argc, char **argv) argument
1553 hxtool_hex(struct hex_options *opt, int argc, char **argv) argument
1592 https_server(hx509_context context, hx509_ca_tbs tbs, struct cert_type_opt *opt) argument
1598 https_client(hx509_context context, hx509_ca_tbs tbs, struct cert_type_opt *opt) argument
1604 peap_server(hx509_context context, hx509_ca_tbs tbs, struct cert_type_opt *opt) argument
1610 pkinit_kdc(hx509_context context, hx509_ca_tbs tbs, struct cert_type_opt *opt) argument
1617 pkinit_client(hx509_context context, hx509_ca_tbs tbs, struct cert_type_opt *opt) argument
1635 email_client(hx509_context context, hx509_ca_tbs tbs, struct cert_type_opt *opt) argument
1697 eval_types(hx509_context context, hx509_ca_tbs tbs, const struct certificate_sign_options *opt) argument
1779 hxtool_ca(struct certificate_sign_options *opt, int argc, char **argv) argument
2091 test_crypto(struct test_crypto_options *opt, int argc, char ** argv) argument
2130 crl_sign(struct crl_sign_options *opt, int argc, char **argv) argument
2220 help(void *opt, int argc, char **argv) argument
[all...]
/macosx-10.10/Heimdal-398.1.2/kcm/
H A Dacquire.c48 krb5_get_init_creds_opt *opt = NULL; local
87 ret = krb5_get_init_creds_opt_alloc(context, &opt);
90 krb5_get_init_creds_opt_set_default_flags(context, "kcm", realm, opt);
92 krb5_get_init_creds_opt_set_tkt_life(opt, ccache->tkt_life);
94 krb5_get_init_creds_opt_set_renew_life(opt, ccache->renew_life);
105 opt);
113 opt);
145 if (opt)
146 krb5_get_init_creds_opt_free(context, opt);
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tk/
H A Dcomposite.rb222 opt, wins = tbl[-1]
223 opt = slot if opt == 'DEFAULT'
225 # return wins[-1].cget(opt)
226 return wins[-1].cget_strict(opt)
281 opt, wins = tbl[-1]
282 opt = slot if opt == 'DEFAULT'
284 return wins[-1].cget(opt)
319 tbl.each{|opt, win
[all...]
/macosx-10.10/cups-408/cups/ppdc/
H A Dppdi.cxx47 char *opt; // Current option local
61 for (opt = argv[i] + 1; *opt; opt ++)
62 switch (*opt)

Completed in 403 milliseconds

1234567891011>>