Home
last modified time | relevance | path

Searched refs:CustomType (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython3/Doc/includes/
Dcustom.c8 static PyTypeObject CustomType = { variable
29 if (PyType_Ready(&CustomType) < 0) in PyInit_custom()
36 Py_INCREF(&CustomType); in PyInit_custom()
37 PyModule_AddObject(m, "Custom", (PyObject *) &CustomType); in PyInit_custom()
Dcustom2.c97 static PyTypeObject CustomType = { variable
122 if (PyType_Ready(&CustomType) < 0) in PyInit_custom2()
129 Py_INCREF(&CustomType); in PyInit_custom2()
130 PyModule_AddObject(m, "Custom", (PyObject *) &CustomType); in PyInit_custom2()
Dcustom3.c147 static PyTypeObject CustomType = { variable
173 if (PyType_Ready(&CustomType) < 0) in PyInit_custom3()
180 Py_INCREF(&CustomType); in PyInit_custom3()
181 PyModule_AddObject(m, "Custom", (PyObject *) &CustomType); in PyInit_custom3()
Dcustom4.c159 static PyTypeObject CustomType = { variable
187 if (PyType_Ready(&CustomType) < 0) in PyInit_custom4()
194 Py_INCREF(&CustomType); in PyInit_custom4()
195 PyModule_AddObject(m, "Custom", (PyObject *) &CustomType); in PyInit_custom4()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
DRPCUtilsTest.cpp144 class CustomType : public Function<CustomType, RPCFoo(RPCFoo)> { class
526 Server.addHandler<DummyRPCAPI::CustomType>( in TEST()
544 auto Err = Client.callAsync<DummyRPCAPI::CustomType>( in TEST()
569 Server.addHandler<DummyRPCAPI::CustomType>( in TEST()
587 auto Err = Client.callAsync<DummyRPCAPI::CustomType>( in TEST()
815 using DummyCalls3 = APICalls<DummyCalls1, DummyRPCAPI::CustomType>; in TEST()
816 using DummyCallsAll = APICalls<DummyCalls1, DummyCalls2, DummyRPCAPI::CustomType>; in TEST()
820 static_assert(!DummyCalls1::Contains<DummyRPCAPI::CustomType>::value, in TEST()
831 Server.addHandler<DummyRPCAPI::CustomType>([](RPCFoo F) {}); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/
DPDBSymbolTypeCustom.cpp23 assert(RawSymbol->getSymTag() == PDB_SymType::CustomType); in PDBSymbolTypeCustom()
DPDBSymbol.cpp97 FACTORY_SYMTAG_CASE(CustomType, PDBSymbolTypeCustom) in create()
DPDBExtras.cpp202 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, CustomType, OS) in operator <<()
/external/llvm/include/llvm/DebugInfo/PDB/
DPDBSymbolTypeCustom.h26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::CustomType)
DPDBTypes.h197 CustomType, enumerator
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/
DPDBSymbolTypeCustom.h26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::CustomType)
DPDBTypes.h208 CustomType, enumerator
/external/llvm/unittests/DebugInfo/PDB/
DPDBApiTest.cpp355 InsertItemWithTag(PDB_SymType::CustomType); in SetUp()
417 VerifyDyncast<PDBSymbolTypeCustom>(PDB_SymType::CustomType); in TEST_F()
/external/llvm/lib/DebugInfo/PDB/
DPDBSymbol.cpp96 FACTORY_SYMTAG_CASE(CustomType, PDBSymbolTypeCustom) in create()
DPDBExtras.cpp243 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, CustomType, OS) in operator <<()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/PDB/
DPDBApiTest.cpp437 InsertItemWithTag(PDB_SymType::CustomType); in SetUp()
499 VerifyDyncast<PDBSymbolTypeCustom>(PDB_SymType::CustomType); in TEST_F()
/external/python/cpython3/Doc/extending/
Dnewtypes_tutorial.rst55 #. How the :class:`Custom` **type** behaves: this is the ``CustomType`` struct,
89 static PyTypeObject CustomType = {
174 if (PyType_Ready(&CustomType) < 0)
181 PyModule_AddObject(m, "Custom", (PyObject *) &CustomType);
275 the object's type might not be :class:`CustomType`, because the object may
321 ``tp_new`` is passed the type being instantiated (not necessarily ``CustomType``,