Searched refs:mod (Results 1 - 25 of 526) sorted by relevance

1234567891011>>

/macosx-10.9.5/CPANInternal-140/Bencode-1.4/
H A DMakefile.PL35 for my $mod ( keys %$br ) {
36 if ( exists $pp->{$mod} ) {
37 $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
40 $pp->{$mod} = $br->{$mod};
/macosx-10.9.5/CPANInternal-140/Class-Unload-0.07/
H A DMakefile.PL37 for my $mod ( keys %$br ) {
38 if ( exists $pp->{$mod} ) {
39 $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
42 $pp->{$mod} = $br->{$mod};
/macosx-10.9.5/CPANInternal-140/DateTime-Format-Strptime/
H A DMakefile.PL40 for my $mod ( keys %$br ) {
41 if ( exists $pp->{$mod} ) {
42 $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
45 $pp->{$mod} = $br->{$mod};
/macosx-10.9.5/CPANInternal-140/DateTime-Format-Strptime-1.52/
H A DMakefile.PL44 for my $mod ( keys %$br ) {
45 if ( exists $pp->{$mod} ) {
46 $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
49 $pp->{$mod} = $br->{$mod};
/macosx-10.9.5/CPANInternal-140/Log-Dispatch-2.34/
H A DMakefile.PL39 for my $mod ( keys %$br ) {
40 if ( exists $pp->{$mod} ) {
41 $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
44 $pp->{$mod} = $br->{$mod};
/macosx-10.9.5/CPANInternal-140/Pod-WSDL-0.061/
H A DMakefile.PL40 for my $mod ( keys %$br ) {
41 if ( exists $pp->{$mod} ) {
42 $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
45 $pp->{$mod} = $br->{$mod};
/macosx-10.9.5/cctools-845/include/stuff/
H A Dlto.h12 void **mod); /* maybe NULL */
15 void *mod);
18 void *mod,
24 void *mod,
28 void *mod,
32 void *mod);
/macosx-10.9.5/ruby-104/ruby/ext/-test-/method/
H A Darity.c11 mod_method_arity(VALUE self, VALUE mod, VALUE mid) argument
13 int arity = rb_mod_method_arity(mod, rb_check_id(&mid));
18 Init_arity(VALUE mod) argument
20 rb_define_module_function(mod, "obj_method_arity", obj_method_arity, 2);
21 rb_define_module_function(mod, "mod_method_arity", mod_method_arity, 2);
/macosx-10.9.5/msdosfs-198/fsck_msdos.tproj/
H A Dcheck.c75 int mod = 0; local
101 mod = readboot(dosfs, &boot);
102 if (mod & FSFATAL) {
136 mod = 0; /* make sure its reset */
154 mod |= fat_init(dosfs, &boot);
156 if (mod & FSFATAL) {
164 mod |= resetDosDirSection(&boot);
166 if (mod & FSFATAL)
170 mod |= handleDirTree(dosfs, &boot);
171 if (mod
[all...]
/macosx-10.9.5/ruby-104/ruby/bootstraptest/
H A Dtest_gc.rb4 ("A".."Z").each do |mod|
5 mod = eval("module #{mod}; self; end")
7 iseq = RubyVM::InstructionSequence.compile("module #{mod}; def #{meth}; end; end")
12 o = Object.new.extend(mod)
22 ("A".."Z").each do |mod|
23 mod = eval("module #{mod}; self; end")
26 mod.module_eval {define_method(meth) {}}
29 o = Object.new.extend(mod)
[all...]
/macosx-10.9.5/Heimdal-323.92.1/kadmin/
H A Dkadmin.local25 mod=''
29 mod="+requires-pre-auth${mod:+,}${mod}"
33 mod="+disallow-svr${mod:+,}${mod}"
51 mod="${mod:+--attributes=}${mod}"
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/docs_src/ref/ext/
H A DMakefile3 BUILD= mod.html perl.html php.html
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_normal_module.rb8 @mod = RDoc::NormalModule.new 'Mod'
13 mod = top_level.add_module RDoc::NormalModule, 'Mod'
16 mod.add_include incl
18 assert_equal [incl.name], mod.ancestors
22 mod.add_include inc2
23 assert_equal [mod2, incl.name], mod.ancestors
33 assert @mod.module?
/macosx-10.9.5/tcl-102/tcl_ext/sdx/sdx/lib/app-sdx/
H A Dversion.tcl13 set mod 0
25 if {$m > $mod} { set mod $m }
31 list $c $mod
35 lassign [traverse $fn] sig mod
36 set time [clock format $mod -format {%Y/%m/%d %H:%M:%S} -gmt 1]
40 return $mod
58 set mod [showvers $fn $fn]
59 if {[info exists fixtime] && $mod} {
60 file mtime $fn $mod
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-monitor/
H A Dlog.c50 static int add_values( Operation *op, Entry *e, Modification *mod, int *newlevel );
51 static int delete_values( Operation *op, Entry *e, Modification *mod, int *newlevel );
52 static int replace_values( Operation *op, Entry *e, Modification *mod, int *newlevel );
123 Modification *mod = &ml->sml_mod; local
130 if ( is_at_operational( mod->sm_desc->ad_type ) ) {
131 ( void ) attr_delete( &e->e_attrs, mod->sm_desc );
132 rc = rs->sr_err = attr_merge( e, mod->sm_desc,
133 mod->sm_values, mod->sm_nvalues );
142 } else if ( mod
224 check_constraints( Modification *mod, int *newlevel ) argument
257 add_values( Operation *op, Entry *e, Modification *mod, int *newlevel ) argument
319 delete_values( Operation *op, Entry *e, Modification *mod, int *newlevel ) argument
427 replace_values( Operation *op, Entry *e, Modification *mod, int *newlevel ) argument
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/addpartial/
H A Daddpartial-overlay.c84 Modifications *mod = NULL; local
100 mod = (Modifications *) ch_malloc(sizeof(
102 mod->sml_flags = 0;
103 mod->sml_op = LDAP_MOD_REPLACE | LDAP_MOD_BVALUES;
104 mod->sml_op &= LDAP_MOD_OP;
105 mod->sml_next = NULL;
106 mod->sml_desc = attr->a_desc;
107 mod->sml_type = attr->a_desc->ad_cname;
108 mod->sml_values = attr->a_vals;
109 mod
[all...]
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/bundle-terminator/
H A Dmain.c42 NSModule mod = NSLinkModule(ofi, "test.bundle", NSLINKMODULE_OPTION_NONE); local
43 if ( mod == NULL ) {
49 if ( !NSUnLinkModule(mod, NSUNLINKMODULE_OPTION_KEEP_MEMORY_MAPPED) ) {
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/bundle-basic/
H A Dmain.c42 NSModule mod = NSLinkModule(ofi, "test.bundle", NSLINKMODULE_OPTION_NONE); local
43 if ( mod == NULL ) {
48 NSSymbol sym = NSLookupSymbolInModule(mod, "_checkdata");
60 if ( !NSUnLinkModule(mod, NSUNLINKMODULE_OPTION_NONE) ) {
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/bundle-unload-keep-mapped/
H A Dmain.c42 NSModule mod = NSLinkModule(ofi, "test.bundle", NSLINKMODULE_OPTION_NONE); local
43 if ( mod == NULL ) {
48 NSSymbol sym = NSLookupSymbolInModule(mod, "_checkdata");
60 if ( !NSUnLinkModule(mod, NSUNLINKMODULE_OPTION_KEEP_MEMORY_MAPPED) ) {
/macosx-10.9.5/llvmCore-3425.0.33/examples/BrainF/
H A DBrainFDriver.cpp57 void addMainFunction(Module *mod) { argument
59 Function *main_func = cast<Function>(mod->
60 getOrInsertFunction("main", IntegerType::getInt32Ty(mod->getContext()),
61 IntegerType::getInt32Ty(mod->getContext()),
63 IntegerType::getInt8Ty(mod->getContext()))), NULL));
73 BasicBlock *bb = BasicBlock::Create(mod->getContext(), "main.0", main_func);
77 CallInst *brainf_call = CallInst::Create(mod->getFunction("brainf"),
83 ReturnInst::Create(mod->getContext(),
84 ConstantInt::get(mod->getContext(), APInt(32, 0)), bb);
127 Module *mod local
[all...]
/macosx-10.9.5/CPANInternal-140/JSON-Any-1.29/inc/Module/Install/
H A DAutoInstall.pm48 while (my ($mod, $ver) = splice(@requires, 0, 2)) {
49 $seen{$mod}{$ver}++;
52 while (my ($mod, $ver) = splice(@build_requires, 0, 2)) {
53 $seen{$mod}{$ver}++;
56 while (my ($mod, $ver) = splice(@configure_requires, 0, 2)) {
57 $seen{$mod}{$ver}++;
61 while (my ($mod, $ver) = splice(@features_require, 0, 2)) {
62 push @deduped, $mod => $ver unless $seen{$mod}{$ver}++;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/
H A Dmods.c36 Modification *mod,
45 Modification pmod = *mod;
47 switch ( mod->sm_op ) {
61 if ( !BER_BVISNULL( &mod->sm_values[mod->sm_numvals] )) {
63 for ( i = 0; !BER_BVISNULL( &mod->sm_values[i] ); i++ );
64 assert( mod->sm_numvals == i );
68 a = attr_find( e->e_attrs, mod->sm_desc );
75 mr = mod->sm_desc->ad_type->sat_equality;
82 op, mod
34 modify_add_values( Entry *e, Modification *mod, int permissive, const char **text, char *textbuf, size_t textlen ) argument
193 modify_delete_vindex( Entry *e, Modification *mod, int permissive, const char **text, char *textbuf, size_t textlen, int *idx ) argument
366 modify_replace_values( Entry *e, Modification *mod, int permissive, const char **text, char *textbuf, size_t textlen ) argument
383 modify_increment_values( Entry *e, Modification *mod, int permissive, const char **text, char *textbuf, size_t textlen ) argument
457 slap_mod_free( Modification *mod, int freeit ) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/tools/lto/
H A Dlto.cpp94 void lto_module_dispose(lto_module_t mod) { argument
95 delete mod;
100 const char* lto_module_get_target_triple(lto_module_t mod) { argument
101 return mod->getTargetTriple();
106 void lto_module_set_target_triple(lto_module_t mod, const char *triple) { argument
107 return mod->setTargetTriple(triple);
112 unsigned int lto_module_get_num_symbols(lto_module_t mod) { argument
113 return mod->getSymbolCount();
118 const char* lto_module_get_symbol_name(lto_module_t mod, unsigned int index) { argument
119 return mod
124 lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index) argument
144 lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod) argument
[all...]
/macosx-10.9.5/CPANInternal-140/DateTime-Locale/
H A DBuild.PL39 for my $mod ( sort keys %conflicts ) {
40 eval "require $mod";
43 my $installed = $mod->VERSION();
44 if ( $installed le $conflicts{$mod} ) {
50 $mod ($installed) you have installed.
52 You will need to upgrade $mod after installing this version of
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-shell/
H A Dmodify.c46 Modification *mod; local
88 mod = &ml->sml_mod;
92 switch ( mod->sm_op ) {
94 fprintf( wfp, "add: %s\n", mod->sm_desc->ad_cname.bv_val );
98 fprintf( wfp, "delete: %s\n", mod->sm_desc->ad_cname.bv_val );
102 fprintf( wfp, "replace: %s\n", mod->sm_desc->ad_cname.bv_val );
106 if( mod->sm_values != NULL ) {
107 for ( i = 0; mod->sm_values[i].bv_val != NULL; i++ ) {
108 fprintf( wfp, "%s: %s\n", mod->sm_desc->ad_cname.bv_val,
109 mod
[all...]

Completed in 190 milliseconds

1234567891011>>