Lines Matching refs:def

21             .def(constructor<>())  in bind_cln()
22 .def(constructor<const cl_I&>()) in bind_cln()
23 .def(constructor<float>()) in bind_cln()
24 .def(constructor<const char*>()) in bind_cln()
25 .def(tostring(const_self)) in bind_cln()
26 .def(-self) in bind_cln()
27 .def(const_self + const_self) in bind_cln()
28 .def(const_self - const_self) in bind_cln()
29 .def(const_self * const_self) in bind_cln()
30 .def(const_self / const_self) in bind_cln()
31 .def(const_self <= const_self) in bind_cln()
32 .def(const_self < const_self) in bind_cln()
33 .def(const_self == const_self) in bind_cln()
34 .def(other<int>() + const_self) in bind_cln()
35 .def(other<int>() - const_self) in bind_cln()
36 .def(other<int>() * const_self) in bind_cln()
37 .def(other<int>() / const_self) in bind_cln()
38 .def(other<int>() <= const_self) in bind_cln()
39 .def(other<int>() < const_self) in bind_cln()
40 .def(const_self + other<int>()) in bind_cln()
41 .def(const_self - other<int>()) in bind_cln()
42 .def(const_self * other<int>()) in bind_cln()
43 .def(const_self / other<int>()) in bind_cln()
44 .def(const_self <= other<int>()) in bind_cln()
45 .def(const_self < other<int>()) in bind_cln()
50 .def(constructor<>()) in bind_cln()
51 .def(constructor<const cl_I&>()) in bind_cln()
52 .def(constructor<int>()) in bind_cln()
53 .def(constructor<const char*>()) in bind_cln()
54 .def(tostring(const_self)) in bind_cln()
55 .def(-self) in bind_cln()
56 .def(const_self + const_self) in bind_cln()
57 .def(const_self - const_self) in bind_cln()
58 .def(const_self * const_self) in bind_cln()
59 .def(const_self / const_self) in bind_cln()
60 .def(const_self <= const_self) in bind_cln()
61 .def(const_self < const_self) in bind_cln()
62 .def(const_self == const_self) in bind_cln()
63 .def(other<int>() + const_self) in bind_cln()
64 .def(other<int>() - const_self) in bind_cln()
65 .def(other<int>() * const_self) in bind_cln()
66 .def(other<int>() / const_self) in bind_cln()
67 .def(other<int>() <= const_self) in bind_cln()
68 .def(other<int>() < const_self) in bind_cln()
69 .def(const_self + other<int>()) in bind_cln()
70 .def(const_self - other<int>()) in bind_cln()
71 .def(const_self * other<int>()) in bind_cln()
72 .def(const_self / other<int>()) in bind_cln()
73 .def(const_self <= other<int>()) in bind_cln()
74 .def(const_self < other<int>()) in bind_cln()
79 .def(constructor<>()) in bind_cln()
80 .def(constructor<const cl_I&>()) in bind_cln()
81 .def(constructor<int>()) in bind_cln()
82 .def(constructor<const char*>()) in bind_cln()
83 .def(tostring(const_self)) in bind_cln()
84 .def(-self) in bind_cln()
85 .def(const_self + const_self) in bind_cln()
86 .def(const_self - const_self) in bind_cln()
87 .def(const_self * const_self) in bind_cln()
88 .def(const_self <= const_self) in bind_cln()
89 .def(const_self < const_self) in bind_cln()
90 .def(const_self == const_self) in bind_cln()
91 .def(other<int>() + const_self) in bind_cln()
92 .def(other<int>() - const_self) in bind_cln()
93 .def(other<int>() * const_self) in bind_cln()
94 .def(other<int>() <= const_self) in bind_cln()
95 .def(other<int>() < const_self) in bind_cln()
96 .def(const_self + other<int>()) in bind_cln()
97 .def(const_self - other<int>()) in bind_cln()
98 .def(const_self * other<int>()) in bind_cln()
99 .def(const_self <= other<int>()) in bind_cln()
100 .def(const_self < other<int>()) in bind_cln()
103 def("factorial", &cln::factorial), in bind_cln()
104 def("sqrt", (const cl_R(*)(const cl_R&))&cln::sqrt) in bind_cln()