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

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
objimpl.h 29 - PyObject_New(type, typeobj) allocates memory for a new object of the given
31 to represent the object, and 'typeobj' the address of the corresponding
37 - PyObject_NewVar(type, typeobj, n) is similar but allocates a variable-size
44 - PyObject_Init(op, typeobj) and PyObject_InitVar(op, typeobj, n) don't
156 #define PyObject_New(type, typeobj) \
157 ( (type *) _PyObject_New(typeobj) )
158 #define PyObject_NewVar(type, typeobj, n) \
159 ( (type *) _PyObject_NewVar((typeobj), (n)) )
163 #define PyObject_INIT(op, typeobj) \
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
objimpl.h 29 - PyObject_New(type, typeobj) allocates memory for a new object of the given
31 to represent the object, and 'typeobj' the address of the corresponding
37 - PyObject_NewVar(type, typeobj, n) is similar but allocates a variable-size
44 - PyObject_Init(op, typeobj) and PyObject_InitVar(op, typeobj, n) don't
156 #define PyObject_New(type, typeobj) \
157 ( (type *) _PyObject_New(typeobj) )
158 #define PyObject_NewVar(type, typeobj, n) \
159 ( (type *) _PyObject_NewVar((typeobj), (n)) )
163 #define PyObject_INIT(op, typeobj) \
    [all...]
  /external/lldb/test/unittest2/
case.py 239 def addTypeEqualityFunc(self, typeobj, function):
246 typeobj: The data type to call this function on when both values
252 self._type_equality_funcs[typeobj] = function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
case.py 210 def addTypeEqualityFunc(self, typeobj, function):
217 typeobj: The data type to call this function on when both values
223 self._type_equality_funcs[typeobj] = function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
case.py 210 def addTypeEqualityFunc(self, typeobj, function):
217 typeobj: The data type to call this function on when both values
223 self._type_equality_funcs[typeobj] = function
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Debugger/
libpython.py 478 def _PyObject_VAR_SIZE(typeobj, nitems):
479 return ( ( typeobj.field('tp_basicsize') +
480 nitems * typeobj.field('tp_itemsize') +
494 typeobj = self.type()
495 dictoffset = int_from_int(typeobj.field('tp_dictoffset'))
502 size = _PyObject_VAR_SIZE(typeobj, tsize)
    [all...]

Completed in 404 milliseconds