Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/scripts/
Dgen_framework.py863 def writeInterfaceDecl (api, filename, functionTypes, concrete): argument
867 if not function.getType() in functionTypes:
881 def writeFunctionPointers (api, filename, functionTypes): argument
884 if function.getType() in functionTypes:
893 def writeInitFunctionPointers (api, filename, functionTypes, cond = None): argument
896 if function.getType() in functionTypes and (cond == None or cond(function)):
909 def writeFuncPtrInterfaceImpl (api, filename, functionTypes, className): argument
912 if function.getType() in functionTypes and not function.isAlias:
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DWasm.h127 ArrayRef<uint32_t> functionTypes() const { return FunctionTypes; } in functionTypes() function
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Dwasm2yaml.cpp192 for (const auto &Func : Obj.functionTypes()) { in dump()