Home
last modified time | relevance | path

Searched refs:FunctionTypes (Results 1 – 16 of 16) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DWasm.h137 ArrayRef<uint32_t> functionTypes() const { return FunctionTypes; } in functionTypes()
267 std::vector<uint32_t> FunctionTypes; variable
/external/pdfium/third_party/pymock/
Dmock.py161 elif not isinstance(func, FunctionTypes):
2188 if isinstance(spec, FunctionTypes):
2207 if isinstance(spec, FunctionTypes) and entry in FunctionAttributes:
2229 if not isinstance(original, FunctionTypes):
2234 if isinstance(spec, FunctionTypes):
2247 if isinstance(new, FunctionTypes):
2296 FunctionTypes = ( variable
/external/llvm/lib/IR/
DType.cpp295 auto I = pImpl->FunctionTypes.find_as(Key); in get()
298 if (I == pImpl->FunctionTypes.end()) { in get()
303 pImpl->FunctionTypes.insert(FT); in get()
DLLVMContextImpl.h1120 FunctionTypeSet FunctionTypes;
/external/python/cpython3/Lib/unittest/
Dmock.py82 if isinstance(obj, FunctionTypes) and hasattr(obj, 'mock'):
99 elif not isinstance(func, FunctionTypes):
2688 if isinstance(spec, FunctionTypes):
2727 if not isinstance(original, FunctionTypes):
2732 if isinstance(spec, FunctionTypes):
2751 if isinstance(new, FunctionTypes):
2774 elif isinstance(result, FunctionTypes):
2797 FunctionTypes = ( variable
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DWasmObjectFile.cpp346 if (FunctionTypes.size() && !SeenCodeSection) { in parseNameSection()
392 if (FunctionTypes.size() && !SeenCodeSection) { in parseLinkingSection()
505 Signature = &Signatures[FunctionTypes[FuncIndex]]; in parseLinkingSectionSymtab()
942 FunctionTypes.reserve(Count); in parseFunctionSection()
950 FunctionTypes.push_back(Type); in parseFunctionSection()
1065 return Index < NumImportedFunctions + FunctionTypes.size(); in isValidFunctionIndex()
1141 if (FunctionCount != FunctionTypes.size()) { in parseCodeSection()
/external/pdfium/third_party/lcms/src/
Dcmsgamma.c48 cmsInt32Number FunctionTypes[MAX_TYPES_IN_LCMS_PLUGIN]; // The identification types member
151 memmove(fl->FunctionTypes, Plugin ->FunctionTypes, fl->nFunctions * sizeof(cmsUInt32Number)); in _cmsRegisterParametricCurvesPlugin()
170 if (abs(Type) == c ->FunctionTypes[i]) return i; in IsInSet()
/external/python/cpython2/Lib/test/
D_mock_backport.py88 elif not isinstance(func, FunctionTypes):
2142 if isinstance(spec, FunctionTypes):
2179 if not isinstance(original, FunctionTypes):
2184 if isinstance(spec, FunctionTypes):
2199 if isinstance(new, FunctionTypes):
2254 FunctionTypes = ( variable
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dmetafunctions.cpp236 namespace FunctionTypes { namespace
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmEmitter.cpp381 encodeULEB128(Section.FunctionTypes.size(), OS); in writeSectionContent()
382 for (uint32_t FuncType : Section.FunctionTypes) in writeSectionContent()
DWasmYAML.cpp108 IO.mapOptional("FunctionTypes", Section.FunctionTypes); in sectionMapping()
/external/pdfium/third_party/lcms/include/
Dlcms2_plugin.h329 cmsUInt32Number FunctionTypes[MAX_TYPES_IN_LCMS_PLUGIN]; // The identification types member
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h289 std::vector<uint32_t> FunctionTypes; member
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DType.cpp311 auto Insertion = pImpl->FunctionTypes.insert_as(nullptr, Key); in get()
DLLVMContextImpl.h1330 FunctionTypeSet FunctionTypes;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp497 DenseMap<Function *, FunctionType *> FunctionTypes; member in __anon019681780411::BitcodeReader
3227 FunctionTypes[Func] = cast<FunctionType>(FullFTy); in parseFunctionRecord()
3710 FunctionType *FullFTy = FunctionTypes[F]; in parseFunctionBody()