Home
last modified time | relevance | path

Searched refs:d_method (Results 1 – 5 of 5) sorted by relevance

/external/clang/test/CodeGenCUDA/
Ddevice-vtable.cu38 __device__ virtual void d_method();
55 void __device__ HD::d_method() {} in d_method() function in HD
/external/python/cpython3/Objects/
Ddescrobject.c125 if (descr->d_method->ml_flags & METH_METHOD) { in classmethod_get()
128 return PyCMethod_New(descr->d_method, type, NULL, cls); in classmethod_get()
140 if (descr->d_method->ml_flags & METH_METHOD) { in method_get()
142 return PyCMethod_New(descr->d_method, obj, NULL, descr->d_common.d_type); in method_get()
151 return PyCFunction_NewEx(descr->d_method, obj, NULL); in method_get()
289 return (funcptr)((PyMethodDescrObject *)func)->d_method->ml_meth; in method_enter_call()
561 return _PyType_GetDocFromInternalDoc(descr->d_method->ml_name, descr->d_method->ml_doc); in method_get_doc()
567 … return _PyType_GetTextSignatureFromInternalDoc(descr->d_method->ml_name, descr->d_method->ml_doc); in method_get_text_signature()
940 descr->d_method = method; in PyDescr_NewMethod()
954 descr->d_method = method; in PyDescr_NewClassMethod()
/external/python/cpython2/Objects/
Ddescrobject.c115 return PyCFunction_New(descr->d_method, type); in classmethod_get()
125 return PyCFunction_New(descr->d_method, obj); in method_get()
239 func = PyCFunction_New(descr->d_method, self); in methoddescr_call()
291 func = PyCFunction_New(descr->d_method, self); in classmethoddescr_call()
352 if (descr->d_method->ml_doc == NULL) { in method_get_doc()
356 return PyString_FromString(descr->d_method->ml_doc); in method_get_doc()
635 descr->d_method = method; in PyDescr_NewMethod()
647 descr->d_method = method; in PyDescr_NewClassMethod()
/external/python/cpython2/Include/
Ddescrobject.h51 PyMethodDef *d_method; member
/external/python/cpython3/Include/
Ddescrobject.h55 PyMethodDef *d_method; member