Searched refs:cfunc (Results 1 – 8 of 8) sorted by relevance
/external/vboot_reference/tests/ |
D | common.sh | 55 local cfunc=${x#* } 56 cfunc=${cfunc##*/} 59 echo -e "${COL_RED}ERROR at ${cfunc}, line ${cline}${spacer}${args}" \
|
/external/mesa3d/prebuilt-intermediates/main/ |
D | enums.c | 7366 typedef int (*cfunc)(const void *, const void *); typedef 7398 (cfunc) compar_nr); in _mesa_enum_to_string()
|
/external/python/cpython2/Lib/ |
D | trace.py | 285 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) in calls: 294 print " %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc)
|
/external/python/cpython3/Lib/ |
D | trace.py | 226 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \ 236 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
|
/external/python/cpython3/Modules/_decimal/tests/ |
D | deccheck.py | 548 cfunc = "c_func: %s(" % t.funcname 553 cfunc = "c_func: %s.%s(" % (repr(cself), t.funcname) 556 err = cfunc
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7rc1.rst | 99 A new C API function, :cfunc:`PySys_SetArgvEx`, allows embedders of the
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 4793 PyObject *cfunc = PyCFunction_NewEx(meth, (PyObject*)type, NULL); in add_methods() local 4794 if (cfunc == NULL) in add_methods() 4796 descr = PyStaticMethod_New(cfunc); in add_methods() 4798 Py_DECREF(cfunc); in add_methods()
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 3746 PyObject *cfunc = PyCFunction_New(meth, NULL); local 3747 if (cfunc == NULL) 3749 descr = PyStaticMethod_New(cfunc); 3750 Py_DECREF(cfunc);
|