Searched refs:called (Results 1 - 25 of 246) sorted by relevance

12345678910

/macosx-10.10/ruby-106/ruby/test/rake/
H A Dtest_rake_top_level_functions.rb10 def @app.called
11 @called
15 @called ||= []
16 @called << [a, b]
32 assert_equal expected, @app.called
44 assert_equal expected, @app.called
75 assert_equal expected, @app.called
85 assert_equal expected, @app.called
95 assert_equal expected, @app.called
105 assert_equal expected, @app.called
[all...]
/macosx-10.10/libxml2-26/libxml2/python/tests/
H A Dtstxpath.py8 called = "" variable
11 global called
18 called = ctxt.function()
52 if called != "foo":
54 print("xpath function: %s" % (called))
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A Dtstxpath.py8 called = "" variable
11 global called
18 called = ctxt.function()
52 if called != "foo":
54 print "xpath function: %s" % (called)
/macosx-10.10/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread_atfork.c332 struct called_s called = {0,0,0}; local
335 MU_TRY_DCETHREAD( dcethread_atfork(&called, pre_handler, parent_handler, child_handler) );
344 if (waitpid(child, &called.child, 0) != child)
349 called.child = WEXITSTATUS(called.child);
351 MU_ASSERT(called.pre);
352 MU_ASSERT(called.parent);
353 MU_ASSERT(called.child);
357 exit(called.child);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/
H A Dpt_peg_op.tcl19 flatten called reachable realizable \
48 proc ::pt::peg::op::called {container} {
54 lappend dict {} [pt::pe::op called [$container start]]
57 lappend dict $symbol [pt::pe::op called $rule]
66 # inlining the called symbol in its callers. This works if and
80 array set caller [Invert [called $container]]
91 set called [lindex $rule 1]
97 ($mode($called) ne "void"))
100 # We have the chain symbol -> called.
101 # Replace all users of 'symbol' with 'called'
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/tests/
H A Dtest_ewk2_view.cpp37 bool called; member in struct:__anon5980
43 bool called; member in struct:__anon5981
50 bool called; member in struct:__anon5982
128 alertCallbackData.called = true;
134 confirmCallbackData.called = true;
141 promptCallbackData.called = true;
508 alertCallbackData.called = false;
511 EXPECT_TRUE(alertCallbackData.called);
515 alertCallbackData.called = false;
518 EXPECT_TRUE(alertCallbackData.called);
[all...]
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_lambda.rb69 called = false
70 BasicObject.new.instance_eval {->() {called = true}.()}
71 assert_equal(true, called, bug5966)
76 called = 0
78 called += 1
85 assert_equal(0, called)
90 assert_equal(0, called)
/macosx-10.10/ruby-106/ruby/test/dl/
H A Dtest_callback.rb59 called = false
62 called = true
69 assert called, 'function should be called'
/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dtest_ssl_session.rb275 called = {}
281 called[:new] = [sock, sess]
286 called[:remove] = [ctx, sess]
297 assert_equal([ssl, ssl.session], called[:new])
300 assert_equal([ctx, ssl.session], called[:remove])
306 called = {}
312 # get_cb is called whenever a client proposed to resume a session but
317 called[:get2] = [sess, data]
320 called[:get1] = [sess, data]
328 called[
[all...]
/macosx-10.10/OpenSSL098-52/src/ms/
H A Dtenc.bat1 rem called by testenc
H A Dtencce.bat1 rem called by testencce
/macosx-10.10/Security-57031.1.35/Security/utilities/Regressions/
H A Dsu-07-debugging.c156 __block bool called = false; local
160 called = true;
172 called = false; CFReleaseNull(scope); CFReleaseNull(message); CFReleaseNull(file); CFReleaseNull(function); level = -1; line = 0;
177 is(called, true, "Handler called");
183 is(called, false, "Handler not called");
186 called = false;
193 is(called, true, "Handler called");
[all...]
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DProcedural.pm44 # work out what the method is called
99 plugins that causes defined subroutines to be called directly rather
107 Despite the fact that subroutines will not be called in an OO manner,
111 will be available to the Template Toolkit and will be called without
/macosx-10.10/bash-94.1.2/bash-3.2/lib/malloc/
H A Dx386-alloca.s10 ;;called "masm". MASM's assembler syntax is quite different from AT&T's
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DBase.pm73 # May be called as a class or object method to set or retrieve the
101 # Initialisation method called by the new() constructor and passing a
178 C<_init()> method is then called, passing the configuration hash and should
192 May be called as an object method to get/set the internal C<_ERROR> member
202 When called with parameters (multiple params are concatenated), this
228 $self->debug('called foobar()');
233 When the C<foobar()> method is called, the following message
236 [My::Module] called foobar()
253 [My::Module] called foobar() at My/Module.pm line 6
H A DPlugin.pm40 # Class method called when the plugin module is first loaded. It
43 # method is then called against the class name (class method) or
56 # Object constructor which is called by the Template::Context to
144 # warn "no such '$method' method called on $self at $file line $line\n";
204 This method is called by the Template Toolkit when the plugin module
205 is first loaded. It is called as a package method and thus implicitly
214 sub load { # called as MyPlugin->load($context)
221 This method is called to instantiate a new plugin object for the C<USE>
222 directive. It is called as a package method against the class name returned by
227 sub new { # called a
[all...]
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/HeaderFilter/
H A Dsimple.pm15 croak "Constructor called without argument" unless @_;
75 The constructor is called with a single code reference.
100 and are called automatically:
112 methods. If called with any other name than C<begin> and C<filter>,
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/HeaderFilter/
H A Dsimple.pm15 croak "Constructor called without argument" unless @_;
75 The constructor is called with a single code reference.
100 and are called automatically:
112 methods. If called with any other name than C<begin> and C<filter>,
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/inc/Test/Builder/Tester/
H A DColor.pm20 to be called with a true value causing colour highlighting to be turned
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/BodyFilter/
H A Dcomplete.pm70 Also note that all filters after C<complete> are still called when the
72 the complete data when the filter chain is called for the very last time
78 This filter defines two methods, called automatically:
H A Dsimple.pm15 croak "Constructor called without argument" unless @_;
81 The constructor can be called in several ways, which are shown in the
124 and are called automatically:
136 methods. If called with any other name than C<begin>, C<end> and
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/
H A DHeaderFilter.pm54 called by the proxy. Of all the methods presented below, only
74 The init() method (if it exists) is called by the new() constructeur
75 to perform all initisalisation tasks. It's called once in the filter
88 This method is called by the C<new()> constructeur to perform all
89 initisalisation tasks. It's called once in the filter lifetime.
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/BodyFilter/
H A Dcomplete.pm70 Also note that all filters after C<complete> are still called when the
72 the complete data when the filter chain is called for the very last time
78 This filter defines two methods, called automatically:
H A Dsimple.pm15 croak "Constructor called without argument" unless @_;
81 The constructor can be called in several ways, which are shown in the
124 and are called automatically:
136 methods. If called with any other name than C<begin>, C<end> and
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/
H A DHeaderFilter.pm54 called by the proxy. Of all the methods presented below, only
74 The C<init()> method (if it exists) is called by the C<new()> constructeur
75 to perform all initisalisation tasks. It's called once in the filter
88 This method is called by the C<new()> constructeur to perform all
89 initisalisation tasks. It's called once in the filter lifetime.

Completed in 159 milliseconds

12345678910