Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/Lib/test/test_capi/
Dtest_misc.py47 def testfunction(self): function
54 testfunction = _testcapi.instancemethod(testfunction) variable in InstanceMethod
61 self.assertTrue(inst.testfunction() is inst)
62 self.assertEqual(inst.testfunction.__doc__, testfunction.__doc__)
63 self.assertEqual(InstanceMethod.testfunction.__doc__, testfunction.__doc__)
65 InstanceMethod.testfunction.attribute = "test"
66 self.assertEqual(testfunction.attribute, "test")
67 self.assertRaises(AttributeError, setattr, inst.testfunction, "attribute", "test")
/aosp_15_r20/external/intel-media-driver/media_driver/linux/ult/ult_app/
H A Dddi_test_caps.cpp119 int testfunction(int a) in testfunction() function
162 TR_FILL_PARAM(b, testfunction(2)); in TEST_F()
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_call.py572 def testfunction(self): function
586 cached = functools.lru_cache(1)(testfunction)
591 self.assertTrue(type(testfunction).__flags__ & Py_TPFLAGS_METHOD_DESCRIPTOR)
638 (testfunction, (42,), {}, 42),
/aosp_15_r20/external/llvm/test/Feature/
H A Dtestconstants.ll9 define [2 x i32]* @testfunction(i32 %i0, i32 %j0) {
H A Dtestalloca.ll8 define i32 @testfunction(i32 %i0, i32 %j0) {
/aosp_15_r20/external/llvm/test/Transforms/GVN/
H A Dlpre-call-wrap.ll14 ; void testfunction(A& iter) { A const end; while (iter != end) ++iter; }