Home
last modified time | relevance | path

Searched refs:xfunc (Results 1 – 4 of 4) sorted by relevance

/external/python/cffi/c/
Dlib_obj.c129 struct CPyExtFunc_s *xfunc; in lib_build_cpython_func() local
173 xfunc = PyMem_Malloc(sizeof(struct CPyExtFunc_s) + in lib_build_cpython_func()
176 if (xfunc == NULL) { in lib_build_cpython_func()
180 memset((char *)xfunc, 0, sizeof(struct CPyExtFunc_s)); in lib_build_cpython_func()
182 xfunc->md.ml_meth = (PyCFunction)g->address; in lib_build_cpython_func()
183 xfunc->md.ml_flags = flags; in lib_build_cpython_func()
184 xfunc->md.ml_name = g->name; in lib_build_cpython_func()
185 xfunc->md.ml_doc = xfunc->doc; in lib_build_cpython_func()
186 xfunc->direct_fn = g->size_or_direct_fn; in lib_build_cpython_func()
187 xfunc->type_index = type_index; in lib_build_cpython_func()
[all …]
/external/libcxx/test/support/
Dassert_checkpoint.h15 Checkpoint(const char* xfile, const char* xfunc, int xline, const char* xmsg) in Checkpoint()
16 : file(xfile), func(xfunc), line(xline), msg(xmsg) in Checkpoint()
Dverbose_assert.h40 AssertData(const char* xcheck, const char* xfile, const char* xfunc,
42 : passed(xpassed), check(xcheck), file(xfile), func(xfunc), line(xline),
/external/clang/test/SemaCXX/
Dabstract.cpp200 virtual void xfunc(void) = 0; // expected-note {{unimplemented pure virtual method}}
207 virtual void xfunc(void) = 0; // expected-note {{unimplemented pure virtual method}}