Searched refs:bar (Results 251 - 275 of 741) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/non-lazy-weak/
H A DMakefile36 libfoo.dylib : foo.c bar.c
37 ${CC} ${CCFLAGS} -dynamiclib foo.c bar.c -o libfoo.dylib
/macosx-10.10.1/ruby-106/ruby/sample/drb/
H A Dgw_ct.rb10 def bar(n) method in class:Foo
26 p it.bar('2') {|n| n * 3}
H A Dgw_cu.rb11 def bar(n) method in class:Foo
27 p it.bar('2') {|n| n * 3}
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/python/
H A Dmetakit.py70 f = db.getas('frequents[drinker,bar,perweek:I]')
71 s = db.getas('serves[bar,beer,quantity:I]')
73 f.append(drinker='adam', bar='lolas', perweek=1)
74 f.append(drinker='woody', bar='cheers', perweek=5)
75 f.append(drinker='sam', bar='cheers', perweek=5)
76 f.append(drinker='lola', bar='lolas', perweek=6)
78 s.append(bar='cheers', beer='bud', quantity=500)
79 s.append(bar='cheers', beer='samaddams', quantity=255)
80 s.append(bar='lolas', beer='mickies', quantity=1515)
84 dump(f.join(s, s.bar), 'joi
[all...]
/macosx-10.10.1/CPANInternal-159.1/Data-Dump-1.21/t/
H A Dhash.t26 ok(dump({a => 1, bar => $DOTS, baz => $DOTS, foo => 2 })."\n", <<EOT);
29 bar => "$DOTS",
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-sh/
H A Dintegration_test.sh79 >>>foo bar<<<
81 atf_check -s eq:0 -o file:expout -e empty atf-sh tp ' hello bye ' 'foo bar'
/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dtool_cb_prg.h38 void progressbarinit(struct ProgressData *bar,
/macosx-10.10.1/dtrace-147/test/tst/common/scalars/
H A Dtst.selfarray2.d33 struct bar {
38 self struct bar foo[int];
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/coreSymbolication-notify/
H A DMakefile33 grep " load" notifications.log | grep bar.dylib | wc -l | grep 1 >/dev/null
35 grep " unload" notifications.log | grep bar.dylib | wc -l | grep 1 >/dev/null
46 libbar.dylib : bar.c
47 ${CC} ${CCFLAGS} -dynamiclib -I${TESTROOT}/include -o libbar.dylib bar.c
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dladdr/
H A Dmain.c34 int bar() function
53 if ( dladdr(&bar, &info) == 0 ) {
54 FAIL("dladdr(&bar, xx) failed");
57 if ( strcmp(info.dli_sname, "bar") != 0 ) {
59 XFAIL("dladdr()->dli_sname is \"%s\" instead of \"bar\"", info.dli_sname);
62 FAIL("dladdr()->dli_sname is \"%s\" instead of \"bar\"", info.dli_sname);
66 if ( info.dli_saddr != &bar) {
67 FAIL("dladdr()->dli_saddr is not &bar");
71 if ( info.dli_fbase != _dyld_get_image_header_containing_address(&bar) ) {
72 FAIL("dladdr()->dli_fbase is not image that contains &bar");
[all...]
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/partial-library-load/
H A DMakefile51 libbar_missing.dylib : bar.c
52 ${CC} ${CCFLAGS} bar.c -dynamiclib -o libbar_missing.dylib -install_name libbar.dylib
54 libbar.dylib : bar.c
55 ${CC} ${CCFLAGS} bar.c -dynamiclib -o libbar.dylib -DHAS_BAR2=1
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/rpath-dlopen-in-dylib/
H A Dbar.c30 void bar() function
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/rpath-dlopen-indirect/
H A Dbar.c8 void bar() function
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/unloadable-library-residue/
H A DMakefile47 libbar_missing.dylib : bar.c
48 ${CC} ${CCFLAGS} bar.c -dynamiclib -o libbar_missing.dylib -install_name libbar.dylib
50 libbar.dylib : bar.c
51 ${CC} ${CCFLAGS} bar.c -dynamiclib -o libbar.dylib -DHAS_BAR2=1
/macosx-10.10.1/postfix-255/postfix/src/smtpd/
H A Dsmtpd_acl.in15 helo bar.dunno.com
25 client bar.dunno.com 131.155.210.17
27 client bar.dunno.com 131.155.210.19
32 client bar.duno.com 131.155.210.17
34 client bar.duno.com 131.155.210.19
36 client bar.duno.com 44.33.22.11
38 client bar.duno.com 44.33.22.55
40 client bar.duno.com 44.33.44.33
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/test/
H A Dopaque.m25 +(void)getFirst:(double*)first andSecond:(double*)second of:(BarHandle)bar;
26 +(void)setFirst:(double)first andSecond:(double)second of:(BarHandle)bar;
117 +(void)getFirst:(double*)first andSecond:(double*)second of:(BarHandle)bar
119 *first = bar->first;
120 *second = bar->second;
123 +(void)setFirst:(double)first andSecond:(double)second of:(BarHandle)bar
125 bar->first = first;
126 bar->second = second;
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/test/
H A Dopaque.m25 +(void)getFirst:(double*)first andSecond:(double*)second of:(BarHandle)bar;
26 +(void)setFirst:(double)first andSecond:(double)second of:(BarHandle)bar;
170 +(void)getFirst:(double*)first andSecond:(double*)second of:(BarHandle)bar
172 *first = bar->first;
173 *second = bar->second;
176 +(void)setFirst:(double)first andSecond:(double)second of:(BarHandle)bar
178 bar->first = first;
179 bar->second = second;
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/test/
H A Dopaque.m25 +(void)getFirst:(double*)first andSecond:(double*)second of:(BarHandle)bar;
26 +(void)setFirst:(double)first andSecond:(double)second of:(BarHandle)bar;
170 +(void)getFirst:(double*)first andSecond:(double*)second of:(BarHandle)bar
172 *first = bar->first;
173 *second = bar->second;
176 +(void)setFirst:(double)first andSecond:(double)second of:(BarHandle)bar
178 bar->first = first;
179 bar->second = second;
/macosx-10.10.1/ksh-23/ksh/src/cmd/ksh93/tests/
H A Darrays.sh102 foo[3]=bar
109 foo[3]=bar
132 x[2]=foo x[4]=bar
183 typeset foo=bar
185 if [[ ${foo[0]} != bar ]]
233 : $(set -A list foo bar)
238 list= (foo bar bam)
240 if [[ ${list[1]} != bar ]]
325 x=([foo]=bar)
338 [[ $($SHELL -c "var=(foo bar);expor
[all...]
H A Dfunctions.sh40 bar=bye
45 1) print -r - "$foo" "$bar";;
48 integer bar=10
49 print -r - "$foo" "$bar";;
71 if [[ $(bar=foo foobar 1) != '33 foo' ]]
74 if [[ $bar == foo ]]
124 print bar
132 if [[ $(foo) != bar ]]
191 print bar
193 if [[ $(foo) != bar ]]
201 function bar function
872 function bar function
911 function bar function
990 bar() { caller;} function
1033 function bar function
1062 function bar function
[all...]
H A Dcomvar.sh64 x=( [foo]=bar )
65 if [[ ${x[@]} != bar ]]
79 x.foo.bar=7
80 [[ ${x.foo.bar} == 7 ]] || err_exit '[[ ${x.foo.bar} != 7 ]]'
81 (( x.foo.bar == 7 ))|| err_exit '(( x.foo.bar != 7 ))'
82 [[ ${x.foo} == *bar=7* ]] || err_exit '[[ ${x.foo} != *bar=7* ]]'
88 $SHELL -c $'x=(foo=bar)\
[all...]
/macosx-10.10.1/Heimdal-398.1.2/tests/kdc/
H A Dcheck-cc.in81 ${kadmin} add -p foo --use-defaults bar@${R} || exit 1
117 ${kswitch} -p bar@${R} 2>/dev/null && ${kdestroy}
118 ${kswitch} -p bar@${R} 2>/dev/null && ${kdestroy}
128 ${kinit} -c SCC:2 bar@${R} || { ec=1 ; eval "${testfailed}"; }
133 ${klist} -l | grep bar@ >/dev/null || { ec=1 ; eval "${testfailed}"; }
134 echo "switch bar"
135 ${kswitch} -p bar@${R} || { ec=1 ; eval "${testfailed}"; }
136 ${klist} | head -2 | grep bar@ >/dev/null || { ec=1 ; eval "${testfailed}"; }
138 ${klist} -l | grep bar@ >/dev/null || { ec=1 ; eval "${testfailed}"; }
139 echo "delete bar"
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/bwidget/bwidget/
H A Dprogressbar.tcl39 Widget::addmap ProgressBar "" .bar {
57 array set maps [list ProgressBar {} :cmd {} .bar {}]
64 set c [eval [list canvas $path.bar] $maps(.bar) -highlightthickness 0]
67 $path.bar create rectangle -1 0 0 0 -fill $fg -outline $fg -tags rect
69 $path.bar create rectangle 0 1 0 0 -fill $fg -outline $fg -tags rect
82 bind $path.bar <Destroy> [list ProgressBar::_destroy $path]
83 bind $path.bar <Configure> [list ProgressBar::_modify $path]
130 $path.bar itemconfigure rect -fill $fg -outline $fg
134 $path.bar configur
[all...]
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/t/
H A Dstring.t214 [% USE str=String('foo bar') -%]
215 [[% str.copy.pop(' bar') %]]
219 [bar]
244 [% USE String('foo bar foo baz') -%]
247 [oof bar oof baz]
250 [% USE String('foo bar foo baz') -%]
254 [bar baz]
258 [% USE String('foo bar foo baz') -%]
261 [foo, bar, foo, baz]
264 [% USE String('foo bar fo
[all...]
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_alias.rb12 alias bar foo
29 def bar method in class:TestAlias.Alias3
40 assert_equal "foo", x.bar
46 assert_equal "foo", x.bar
96 def bar method in class:test_alias_with_zsuper_method
104 alias bar foo
106 assert_equal(:ok, d.new.bar)
115 alias bar foo
131 assert_equal([:Base, :M], SuperInAliasedModuleMethod::Derived.new.bar)

Completed in 149 milliseconds

<<11121314151617181920>>