Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/scripts/
Dgen_framework.py935 def writeInterfaceDecl (api, filename, functionTypes, concrete): argument
939 if not function.getType() in functionTypes:
953 def writeFunctionPointers (api, filename, functionTypes): argument
956 if function.getType() in functionTypes:
965 def writeInitFunctionPointers (api, filename, functionTypes, cond = None): argument
968 if function.getType() in functionTypes and (cond == None or cond(function)):
981 def writeFuncPtrInterfaceImpl (api, filename, functionTypes, className): argument
984 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()