Searched refs:init (Results 1 - 25 of 2775) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/enc/
H A Dprelude.rb1 %w'enc/encdb.so enc/trans/transdb.so'.each do |init|
3 require(init)
/macosx-10.10/ntp-92/scripts/rc1/
H A Dpreremove2 /etc/init.d/xntp stop
H A Dpreinstall2 if [ -x /etc/init.d/xntp ]
4 /etc/init.d/xntp stop
H A Dpostinstall2 /etc/init.d/xntp start
/macosx-10.10/procmail-14/procmail/man/
H A DMakefile3 all: init
8 init:
9 cd ..; $(MAKE) make init
13 Makefile makefile Makefiles makefiles: init
15 procmail.1 procmailrc.5 procmailsc.5 procmailex.5 lockfile.1 formail.1: init
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/Foundation/Scripts/
H A Dsuper-call.py10 def init(self): member in class:MyObject
13 print "Calling super.init"
17 super(MyObject, self).init()
23 x = MyObject.alloc().init()
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/Foundation/Scripts/
H A Dsuper-call.py10 def init(self): member in class:MyObject
13 print "Calling super.init"
17 super(MyObject, self).init()
23 x = MyObject.alloc().init()
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/Foundation/Scripts/
H A Dsuper-call.py10 def init(self): member in class:MyObject
13 print "Calling super.init"
17 super(MyObject, self).init()
23 x = MyObject.alloc().init()
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOCommand.cpp46 // init - initialize our data structures
49 bool IOCommand::init(void) function in class:IOCommand
51 if (super::init()) {
/macosx-10.10/procmail-14/procmail/src/
H A DMakefile3 all: init
8 init:
9 cd ..; $(MAKE) make init
13 Makefile makefile Makefiles makefiles: init
16 ../autoconf.h autoconf.h: init
/macosx-10.10/ruby-106/ruby/ext/-test-/debug/
H A Dinit.c3 #define init(n) {void Init_##n(VALUE klass); Init_##n(klass);} macro
10 TEST_INIT_FUNCS(init);
/macosx-10.10/ruby-106/ruby/ext/-test-/exception/
H A Dinit.c3 #define init(n) {void Init_##n(VALUE klass); Init_##n(klass);} macro
10 TEST_INIT_FUNCS(init);
/macosx-10.10/ruby-106/ruby/ext/-test-/method/
H A Dinit.c3 #define init(n) {void Init_##n(VALUE klass); Init_##n(klass);} macro
10 TEST_INIT_FUNCS(init);
/macosx-10.10/ruby-106/ruby/ext/-test-/string/
H A Dinit.c3 #define init(n) {void Init_##n(VALUE klass); Init_##n(klass);} macro
10 TEST_INIT_FUNCS(init);
/macosx-10.10/ruby-106/ruby/ext/-test-/symbol/
H A Dinit.c3 #define init(n) {void Init_##n(VALUE klass); Init_##n(klass);} macro
10 TEST_INIT_FUNCS(init);
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/insert-libraries-weak-symbols/
H A Dinsert.c32 static __attribute__((constructor)) void init() function
/macosx-10.10/libffi-18.1/tests/testsuite/libffi.call/
H A Dcall.exp21 dg-init
22 libffi-init
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dcall.exp21 dg-init
22 libffi-init
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dcall.exp21 dg-init
22 libffi-init
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/libffi-src/tests/testsuite/libffi.call/
H A Dcall.exp21 dg-init
22 libffi-init
/macosx-10.10/OpenSSL098-52/src/crypto/bn/
H A Dbn_opt.c72 static int init=0; local
75 if (!init)
77 init++;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/buffer/
H A Dbuf_err.c102 static int init=1; local
104 if (init)
106 init=0;
/macosx-10.10/WebCore-7600.1.25/platform/mock/
H A DRTCDataChannelHandlerMock.cpp37 RTCDataChannelHandlerMock::RTCDataChannelHandlerMock(const String& label, const RTCDataChannelInit& init) argument
39 , m_protocol(init.protocol)
40 , m_maxRetransmitTime(init.maxRetransmitTime)
41 , m_maxRetransmits(init.maxRetransmits)
42 , m_id(init.id)
43 , m_ordered(init.ordered)
44 , m_negotiated(init.negotiated)
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_leaks.py11 def init(self): member in class:LeaksClass
12 self = super(LeaksClass, self).init()
23 def init(self): member in class:SlottedClass
24 NSObject.pyobjc_instanceMethods.init(self)
25 self.slot1 = LeaksClass.alloc().init()
30 def init(self): member in class:MemberClass
31 self = NSObject.pyobjc_instanceMethods.init(self)
32 self.slot1 = LeaksClass.alloc().init()
43 o = LeaksClass.alloc().init()
54 pool = NSAutoreleasePool.alloc().init()
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_leaks.py11 def init(self): member in class:LeaksClass
12 self = super(LeaksClass, self).init()
23 def init(self): member in class:SlottedClass
24 NSObject.pyobjc_instanceMethods.init(self)
25 self.slot1 = LeaksClass.alloc().init()
30 def init(self): member in class:MemberClass
31 self = NSObject.pyobjc_instanceMethods.init(self)
32 self.slot1 = LeaksClass.alloc().init()
43 o = LeaksClass.alloc().init()
54 pool = NSAutoreleasePool.alloc().init()
[all...]

Completed in 365 milliseconds

1234567891011>>