/external/python/cpython3/Doc/includes/ |
D | custom.c | 8 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()
|
D | custom2.c | 97 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()
|
D | custom3.c | 147 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()
|
D | custom4.c | 159 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/ |
D | RPCUtilsTest.cpp | 144 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/ |
D | PDBSymbolTypeCustom.cpp | 23 assert(RawSymbol->getSymTag() == PDB_SymType::CustomType); in PDBSymbolTypeCustom()
|
D | PDBSymbol.cpp | 97 FACTORY_SYMTAG_CASE(CustomType, PDBSymbolTypeCustom) in create()
|
D | PDBExtras.cpp | 202 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, CustomType, OS) in operator <<()
|
/external/llvm/include/llvm/DebugInfo/PDB/ |
D | PDBSymbolTypeCustom.h | 26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::CustomType)
|
D | PDBTypes.h | 197 CustomType, enumerator
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/ |
D | PDBSymbolTypeCustom.h | 26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::CustomType)
|
D | PDBTypes.h | 208 CustomType, enumerator
|
/external/llvm/unittests/DebugInfo/PDB/ |
D | PDBApiTest.cpp | 355 InsertItemWithTag(PDB_SymType::CustomType); in SetUp() 417 VerifyDyncast<PDBSymbolTypeCustom>(PDB_SymType::CustomType); in TEST_F()
|
/external/llvm/lib/DebugInfo/PDB/ |
D | PDBSymbol.cpp | 96 FACTORY_SYMTAG_CASE(CustomType, PDBSymbolTypeCustom) in create()
|
D | PDBExtras.cpp | 243 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, CustomType, OS) in operator <<()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/PDB/ |
D | PDBApiTest.cpp | 437 InsertItemWithTag(PDB_SymType::CustomType); in SetUp() 499 VerifyDyncast<PDBSymbolTypeCustom>(PDB_SymType::CustomType); in TEST_F()
|
/external/python/cpython3/Doc/extending/ |
D | newtypes_tutorial.rst | 55 #. 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``,
|