Searched refs:bar (Results 151 - 175 of 741) sorted by relevance

1234567891011>>

/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-RTLD_LOCAL-ignore/
H A DMakefile33 main : main.c foo.dylib bar.dylib
40 bar.dylib : bar.c
41 ${CC} ${CCFLAGS} -dynamiclib bar.c -o bar.dylib
45 ${RM} ${RMFLAGS} *~ main foo.dylib bar.dylib
/macosx-10.10.1/ruby-106/ruby/test/psych/
H A Dtest_psych.rb92 docs = Psych.load_documents("--- foo\n...\n--- bar\n...")
93 assert_equal %w{ foo bar }, docs
97 docs = Psych.parse_stream("--- foo\n...\n--- bar\n...")
98 assert_equal %w{ foo bar }, docs.children.map { |x| x.transform }
114 Psych.add_domain_type 'foo.bar,2002', 'foo' do |type, val|
118 Psych.load('--- !foo.bar,2002/foo hello')
121 Psych.load("--- !foo.bar,2002/foo\n- hello\n- world")
124 Psych.load("--- !foo.bar,2002/foo\nhello: world")
160 - !tag:yaml.org,2002:foo bar
161 - !tag:example.com,2002:foo bar
[all...]
H A Dtest_struct.rb4 attr_reader :bar
7 @bar = 'hello'
14 def initialize foo, bar
16 @bar = bar
31 thing = PsychStructWithIvar.new('bar')
34 assert_equal 'hello', struct.bar
35 assert_equal 'bar', struct.foo
41 :foo: bar
42 :@bar
[all...]
/macosx-10.10.1/CPANInternal-159.1/Class-Std-0.011/demo/
H A Ddemo_perlify.pl5 my %bar : ATTR( :init_arg<bar> );
28 my $obj = Der->new({foo=>'foo val', bar=>42});
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/stress/
H A Dinfinite-loop-that-uses-captured-variables-before-throwing.js3 function bar(f) { function
14 noInline(bar);
19 bar(function() { return x; });
H A Dis-undefined-exit-on-masquerader.js3 function bar(o) { function
9 noInline(bar);
12 o = bar(o);
H A Druntime-throw-through-optimized-code.js6 function bar() { function
13 a.__defineGetter__("bar", bar);
16 noInline(bar);
19 var result = foo(a, "bar");
27 foo(a, "bar");
H A Dsimple-polyvariant-put-by-id-inlining-example.js2 bar(o);
6 bar(o);
9 function bar(o) { function
H A Dtricky-indirectly-inferred-infinite-loop-that-uses-captured-variables-and-creates-the-activation-outside-the-loop.js3 function bar(f) { function
10 noInline(bar);
21 bar(f);
H A Duint32-to-number-fold-constant-with-do-overflow.js5 function bar(a, b) { function
9 noInline(bar);
12 var result = bar(-1, 0);
H A Dinline-call-varargs.js2 return bar(a, b);
5 function bar(a, b) { function
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/re-export-symbol-dylib/
H A Dmain.c11 extern int bar();
16 int (*pbar)() = &bar;
25 else if ( bar() != 2 )
26 FAIL("re-export-symbol-dylib: bar() returned wrong value");
/macosx-10.10.1/libunwind-35.3/testsuite/
H A Dfind_enclosing.c22 int bar(int x) function
39 uint8_t* addrInBar = (uint8_t*)bar + 4;
41 if ( _Unwind_FindEnclosingFunction(addrInBar) != &bar )
/macosx-10.10.1/CPANInternal-159.1/Class-Trigger-0.14/t/lib/Foo/
H A DValid.pm5 sub bar { subroutine
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/t/lib/Template/Plugin/
H A DProcBar.pm5 sub bar { "This is procbarbar" } subroutine
H A DProcFoo.pm6 sub bar { "This is procfoobar" } subroutine
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLayoutTimelineOverviewGraph.css26 .timeline-overview-graph.layout > .timeline-record-bar {
31 .timeline-overview-graph.layout > .timeline-record-bar > .segment {
H A DScriptTimelineOverviewGraph.css26 .timeline-overview-graph.script > .timeline-record-bar {
31 .timeline-overview-graph.script > .timeline-record-bar > .segment {
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/flat-private-extern/
H A Dmain.c29 // foo() internally calls bar()
30 // libfoobar.dylib is build flat with bar() that is private_extern
31 // The bar() in the main executable should not override the one in libfoobar
38 FAIL("flat-private-extern found wrong bar");
45 int bar() function
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/lazy-dylib-init-order/
H A Dfoo.c9 int bar() { return 1; } function
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/weak-override/
H A Dfoo.c39 int bar() function
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_clone.rb15 bar = foo.clone
16 def bar.test2
20 assert_equal("test2", bar.test2)
21 assert_equal("test", bar.test)
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Examples/Scripts/
H A Dkvo-debugging.py65 def setBar_(self, bar):
66 print 'setBar_ ->', bar
68 #print '->', bar
69 self._kvc_bar = bar
72 def bar(self): member in class:FooClass
73 print 'bar', self._kvc_bar
76 bar = objc.accessor(bar) variable in class:FooClass
92 print foo.bar()
94 print foo.bar()
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Examples/Scripts/
H A Dkvo-debugging.py65 def setBar_(self, bar):
66 print 'setBar_ ->', bar
68 #print '->', bar
69 self._kvc_bar = bar
72 def bar(self): member in class:FooClass
73 print 'bar', self._kvc_bar
76 bar = objc.accessor(bar) variable in class:FooClass
92 print foo.bar()
94 print foo.bar()
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Examples/Scripts/
H A Dkvo-debugging.py65 def setBar_(self, bar):
66 print 'setBar_ ->', bar
68 #print '->', bar
69 self._kvc_bar = bar
72 def bar(self): member in class:FooClass
73 print 'bar', self._kvc_bar
76 bar = objc.accessor(bar) variable in class:FooClass
92 print foo.bar()
94 print foo.bar()
[all...]

Completed in 218 milliseconds

1234567891011>>