Lines Matching refs:ModuleOrErr
57 ErrorOr<std::unique_ptr<Module>> ModuleOrErr = parseBitcodeFile(Buf, Ctx); in LLVMParseBitcodeInContext() local
61 if (ModuleOrErr.getError()) { in LLVMParseBitcodeInContext()
68 *OutModule = wrap(ModuleOrErr.get().release()); in LLVMParseBitcodeInContext()
78 ErrorOr<std::unique_ptr<Module>> ModuleOrErr = parseBitcodeFile(Buf, Ctx); in LLVMParseBitcodeInContext2() local
79 if (ModuleOrErr.getError()) { in LLVMParseBitcodeInContext2()
84 *OutModule = wrap(ModuleOrErr.get().release()); in LLVMParseBitcodeInContext2()
103 ErrorOr<std::unique_ptr<Module>> ModuleOrErr = in LLVMGetBitcodeModuleInContext() local
108 if (ModuleOrErr.getError()) { in LLVMGetBitcodeModuleInContext()
115 *OutM = wrap(ModuleOrErr.get().release()); in LLVMGetBitcodeModuleInContext()
126 ErrorOr<std::unique_ptr<Module>> ModuleOrErr = in LLVMGetBitcodeModuleInContext2() local
130 if (ModuleOrErr.getError()) { in LLVMGetBitcodeModuleInContext2()
135 *OutM = wrap(ModuleOrErr.get().release()); in LLVMGetBitcodeModuleInContext2()