Home
last modified time | relevance | path

Searched refs:byconstref2 (Results 1 – 9 of 9) sorted by relevance

/dports/devel/swig/swig-4.0.2/Examples/test-suite/
H A Doverload_null.i28 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 Doverload_null_runme.R26 unittest(11, o$byconstref2(NULL))
27 unittest(12, o$byconstref2(x))
/dports/devel/swig/swig-4.0.2/Examples/test-suite/ruby/
H A Doverload_null_runme.rb33 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 Doverload_null_runme.lua22 assert(11 == o:byconstref2(nil))
23 assert(12 == o:byconstref2(x))
/dports/devel/swig/swig-4.0.2/Examples/test-suite/python/
H A Doverload_null_runme.py25 check(11, o.byconstref2(None))
26 check(12, o.byconstref2(x))
/dports/devel/swig/swig-4.0.2/Examples/test-suite/perl5/
H A Doverload_null_runme.pl25 is(11, $o->byconstref2(undef));
26 is(12, $o->byconstref2($x));
/dports/devel/swig/swig-4.0.2/Examples/test-suite/tcl/
H A Doverload_null_runme.tcl33 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 Doverload_null_runme.php24 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 Doverload_null_runme.m33 check(11, o.byconstref2(null));
34 check(12, o.byconstref2(x));