Home
last modified time | relevance | path

Searched refs:freefunc (Results 1 – 6 of 6) sorted by relevance

/external/clang/test/CodeGenCXX/
Ddebug-info-codeview-display-name.cpp10 void freefunc() { } in freefunc() function
92 template void fn_tmpl<int, freefunc>();
/external/libcups/cups/
Darray.c61 cups_afree_func_t freefunc; /* Free function */ member
227 if (a->freefunc) in cupsArrayClear()
233 (a->freefunc)(*e, a->data); in cupsArrayClear()
327 if (a->freefunc) in cupsArrayDelete()
333 (a->freefunc)(*e, a->data); in cupsArrayDelete()
775 a->freefunc = ff; in cupsArrayNew3()
916 if (a->freefunc) in cupsArrayRemove()
917 (a->freefunc)(a->elements[current], a->data); in cupsArrayRemove()
/external/python/cpython2/Doc/includes/
Dtypestruct.h68 freefunc tp_free; /* Low-level free-memory routine */
/external/libxml2/os400/
Drpgsupport.h20 XMLPUBFUN void __set_xmlFree(xmlFreeFunc freefunc);
/external/python/cpython2/Include/
Dobject.h305 typedef void (*freefunc)(void *); typedef
391 freefunc tp_free; /* Low-level free-memory routine */
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst25 freefunc, printfunc, getattrfunc, getattrofunc, setattrfunc, setattrofunc,
1048 In Python 2.3 and beyond, its signature is :c:type:`freefunc`::