Searched refs:byconstref2 (Results 1 – 9 of 9) sorted by relevance
/dports/devel/swig/swig-4.0.2/Examples/test-suite/ |
H A D | overload_null.i | 28 int byconstref2(Y* y) { return 11; } in byconstref2() function 29 int byconstref2(const X& x) { return 12; } in byconstref2() function
|
/dports/devel/swig/swig-4.0.2/Examples/test-suite/r/ |
H A D | overload_null_runme.R | 26 unittest(11, o$byconstref2(NULL)) 27 unittest(12, o$byconstref2(x))
|
/dports/devel/swig/swig-4.0.2/Examples/test-suite/ruby/ |
H A D | overload_null_runme.rb | 33 swig_assert(11 == o.byconstref2(nil)) 34 swig_assert(12 == o.byconstref2(x))
|
/dports/devel/swig/swig-4.0.2/Examples/test-suite/lua/ |
H A D | overload_null_runme.lua | 22 assert(11 == o:byconstref2(nil)) 23 assert(12 == o:byconstref2(x))
|
/dports/devel/swig/swig-4.0.2/Examples/test-suite/python/ |
H A D | overload_null_runme.py | 25 check(11, o.byconstref2(None)) 26 check(12, o.byconstref2(x))
|
/dports/devel/swig/swig-4.0.2/Examples/test-suite/perl5/ |
H A D | overload_null_runme.pl | 25 is(11, $o->byconstref2(undef)); 26 is(12, $o->byconstref2($x));
|
/dports/devel/swig/swig-4.0.2/Examples/test-suite/tcl/ |
H A D | overload_null_runme.tcl | 33 check "testX" 11 [$o byconstref2 "NULL"] 34 check "testX" 12 [$o byconstref2 $x]
|
/dports/devel/swig/swig-4.0.2/Examples/test-suite/php/ |
H A D | overload_null_runme.php | 24 check::equal(11, $o->byconstref2(null), "test 11"); 25 check::equal(12, $o->byconstref2($x), "test 12");
|
/dports/devel/swig/swig-4.0.2/Examples/test-suite/octave/ |
H A D | overload_null_runme.m | 33 check(11, o.byconstref2(null)); 34 check(12, o.byconstref2(x));
|