Home
last modified time | relevance | path

Searched refs:functionTypes (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/
H A Dobject.d1402 alias functionTypes = typeof(__traits(getVirtualFunctions, C, "func")); variable
1403 assert(typeid(functionTypes[0]).toString() == "void function()");
1404 assert(typeid(functionTypes[1]).toString() == "void function(int)");
1405 assert(typeid(functionTypes[2]).toString() == "int function(int, int)");
1416 alias functionTypes = typeof(__traits(getVirtualFunctions, C, "func")); variable
1418 Object obj = typeid(functionTypes[0]);
1419 assert(obj.opEquals(typeid(functionTypes[0])));
1420 assert(typeid(functionTypes[0]) == typeid(functionTypes[0]));
1421 assert(typeid(functionTypes[0]) != typeid(functionTypes[1]));
1423 assert(typeid(functionTypes[0]).tsize() == 0);
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DWasm.h141 ArrayRef<uint32_t> functionTypes() const { return FunctionTypes; } in functionTypes() function
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/
H A Dobject.d787 alias functionTypes = typeof(__traits(getVirtualFunctions, C, "func")); variable
788 assert(typeid(functionTypes[0]).toString() == "void function()");
789 assert(typeid(functionTypes[1]).toString() == "void function(int)");
790 assert(typeid(functionTypes[2]).toString() == "int function(int, int)");
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp261 for (const auto &Func : Obj.functionTypes()) { in dump()