HomeSort by relevance Sort by last modified time
    Searched refs:binaryfunc (Results 1 - 6 of 6) sorted by null

  /prebuilts/misc/common/swig/include/2.0.11/python/
pyopers.swg 99 %pybinoperator(__add__, *::operator+, binaryfunc, nb_add);
102 %pybinoperator(__sub__, *::operator-, binaryfunc, nb_subtract);
105 %pybinoperator(__mul__, *::operator*, binaryfunc, nb_multiply);
106 %pybinoperator(__div__, *::operator/, binaryfunc, nb_div);
107 %pybinoperator(__mod__, *::operator%, binaryfunc, nb_remainder);
108 %pybinoperator(__lshift__, *::operator<<, binaryfunc, nb_lshift);
109 %pybinoperator(__rshift__, *::operator>>, binaryfunc, nb_rshift);
110 %pybinoperator(__and__, *::operator&, binaryfunc, nb_and);
111 %pybinoperator(__or__, *::operator|, binaryfunc, nb_or);
112 %pybinoperator(__xor__, *::operator^, binaryfunc, nb_xor)
    [all...]
pyrun.swg 676 (binaryfunc)0, /*nb_add*/
677 (binaryfunc)0, /*nb_subtract*/
678 (binaryfunc)0, /*nb_multiply*/
681 (binaryfunc)0, /*nb_divide*/
683 (binaryfunc)0, /*nb_remainder*/
684 (binaryfunc)0, /*nb_divmod*/
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
object.h 134 typedef PyObject * (*binaryfunc)(PyObject *, PyObject *); typedef
228 binaryfunc nb_add;
229 binaryfunc nb_subtract;
230 binaryfunc nb_multiply;
231 binaryfunc nb_divide;
232 binaryfunc nb_remainder;
233 binaryfunc nb_divmod;
240 binaryfunc nb_lshift;
241 binaryfunc nb_rshift;
242 binaryfunc nb_and
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
object.h 134 typedef PyObject * (*binaryfunc)(PyObject *, PyObject *); typedef
228 binaryfunc nb_add;
229 binaryfunc nb_subtract;
230 binaryfunc nb_multiply;
231 binaryfunc nb_divide;
232 binaryfunc nb_remainder;
233 binaryfunc nb_divmod;
240 binaryfunc nb_lshift;
241 binaryfunc nb_rshift;
242 binaryfunc nb_and
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
TypeSlots.py 586 binaryfunc = Signature("OO", "O") # typedef PyObject * (*binaryfunc)(PyObject *, PyObject *); variable
587 ibinaryfunc = Signature("TO", "O") # typedef PyObject * (*binaryfunc)(PyObject *, PyObject *);
661 MethodSlot(binaryfunc, "nb_add", "__add__"),
662 MethodSlot(binaryfunc, "nb_subtract", "__sub__"),
663 MethodSlot(binaryfunc, "nb_multiply", "__mul__"),
664 MethodSlot(binaryfunc, "nb_divide", "__div__", py3 = False),
665 MethodSlot(binaryfunc, "nb_remainder", "__mod__"),
666 MethodSlot(binaryfunc, "nb_divmod", "__divmod__"),
673 MethodSlot(binaryfunc, "nb_lshift", "__lshift__")
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Utility/
CythonFunction.c     [all...]

Completed in 204 milliseconds