Home
last modified time | relevance | path

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

/aosp_15_r20/external/bcc/tests/cc/
H A DCMakeLists.txt34 test_c_api.cc
/aosp_15_r20/external/python/cpython2/Objects/
Dsetobject.c2029 static PyObject *test_c_api(PySetObject *so);
2073 {"test_c_api", (PyCFunction)test_c_api, METH_NOARGS,
2399 test_c_api(PySetObject *so) in test_c_api() function
/aosp_15_r20/external/python/cpython3/Objects/
Dsetobject.c2034 static PyObject *test_c_api(PySetObject *so, PyObject *Py_UNUSED(ignored));
2078 {"test_c_api", (PyCFunction)test_c_api, METH_NOARGS,
2392 test_c_api(PySetObject *so, PyObject *Py_UNUSED(ignored)) in test_c_api() function
/aosp_15_r20/external/python/cpython2/Lib/test/
Dtest_set.py584 def test_c_api(self): member in TestSet
585 self.assertEqual(set().test_c_api(), True)
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_set.py640 def test_c_api(self): member in TestSet
641 self.assertEqual(set().test_c_api(), True)
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dintro.rst614 In addition, the set object acquires a :meth:`test_c_api` method.