Searched refs:EC (Results 201 - 225 of 341) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DMiscompilation.cpp949 std::error_code EC = sys::fs::createTemporaryFile("bugpoint.test", "bc", local
951 if (EC) {
953 << "Error making unique filename: " << EC.message() << "\n";
967 EC = sys::fs::createTemporaryFile("bugpoint.safe", "bc", SafeModuleFD,
969 if (EC) {
971 << "Error making unique filename: " << EC.message() << "\n";
1041 std::error_code EC = sys::fs::createTemporaryFile("bugpoint.test", "bc", local
1043 if (EC) {
1044 errs() << getToolName() << "Error making unique filename: " << EC.message()
1057 EC
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp382 std::error_code EC; local
383 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::OF_Text);
384 if (EC) {
385 llvm::errs() << "warning: could not create file: " << EC.message() << '\n';
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp187 std::error_code EC = fs::current_path(OutInc);
188 if (EC)
347 if (std::error_code EC = writeFileWithEncoding(
350 *ErrMsg = EC.message();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp146 std::error_code EC; local
147 object::COFFObjectFile Obj(MB, EC);
148 if (EC) {
150 << ": failed to open: " << EC.message() << '\n';
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-converter.cpp382 std::error_code EC;
383 raw_fd_ostream OS(ConvertOutput, EC,
387 if (EC)
389 Twine("Cannot open file '") + ConvertOutput + "' for writing.", EC);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorOr.h82 ErrorOr(std::error_code EC) : HasError(true) { argument
83 new (getErrorStorage()) std::error_code(EC);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DGDBRemote.cpp152 std::error_code EC; local
153 m_stream_up = std::make_unique<raw_fd_ostream>(history_file.GetPath(), EC,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DSpecialCaseList.cpp105 if (std::error_code EC = FileOrErr.getError()) {
106 Error = (Twine("can't open file '") + Path + "': " + EC.message()).str();
H A DTimer.cpp69 std::error_code EC;
71 OutputFilename, EC, sys::fs::OF_Append | sys::fs::OF_Text);
72 if (!EC)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DFuzzerCLI.cpp157 if (std::error_code EC = BufOrErr.getError()) {
158 errs() << "Error reading file: " << Arg << ": " << EC.message() << "\n";
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DObjectFile.cpp178 if (std::error_code EC = FileOrErr.getError())
179 return errorCodeToError(EC);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InsertPrefetch.cpp163 if (std::error_code EC = ReaderOrErr.getError()) {
164 std::string Msg = "Could not open profile: " + EC.message();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp327 // For rare, surprising errors (e.g. "out of file handles"), diag the EC
329 std::error_code EC = llvm::errorToErrorCode(File.takeError()); local
330 if (EC != llvm::errc::no_such_file_or_directory &&
331 EC != llvm::errc::invalid_argument &&
332 EC != llvm::errc::is_a_directory && EC != llvm::errc::not_a_directory) {
334 << FileName << EC.message();
1637 std::error_code EC; local
1644 for (llvm::vfs::directory_iterator Dir = FS.dir_begin(DirNative, EC),
1646 Dir != DirEnd && !EC; Di
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp1205 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
1207 << "': " << EC.message() << '\n';
1247 std::error_code EC;
1248 raw_fd_ostream OS(NewModulePath + ".thinlto.bc", EC,
1250 if (EC)
1251 return errorCodeToError(EC);
1255 EC = EmitImportsFiles(ModulePath, NewModulePath + ".imports",
1257 if (EC)
1258 return errorCodeToError(EC);
1430 std::error_code EC;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp611 VectorType::VectorType(Type *ElType, ElementCount EC) argument
612 : SequentialType(VectorTyID, ElType, EC.Min), Scalable(EC.Scalable) {}
614 VectorType *VectorType::get(Type *ElementType, ElementCount EC) { argument
615 assert(EC.Min > 0 && "#Elements of a VectorType must be greater than 0");
622 ->VectorTypes[std::make_pair(ElementType, EC)];
624 Entry = new (pImpl->Alloc) VectorType(ElementType, EC);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp43 static void error(std::error_code EC) { argument
44 if (!EC)
46 WithColor::error(outs(), "") << "reading file: " << EC.message() << ".\n";
75 static void reportError(StringRef Input, std::error_code EC) { argument
76 reportError(Input, EC.message());
529 auto EC = errorToErrorCode(BinaryOrErr.takeError()); local
530 reportError(File, EC);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DVectorUtils.h100 // parameters are mapped to VFParamKind::Vector with \p EC
103 static VFShape get(const CallInst &CI, ElementCount EC, bool HasGlobalPred) { argument
111 return {EC.Min, EC.Scalable, Parameters};
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DInputFile.cpp59 if (auto EC = ModS.reload())
261 if (auto EC = identify_magic(Path, Magic))
263 formatv("Unable to identify file type for file {0}", Path), EC);
/freebsd-11-stable/crypto/heimdal/appl/telnet/arpa/
H A Dtelnet.h50 #define EC 247 /* erase the current character */ macro
68 "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
207 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
/freebsd-11-stable/include/arpa/
H A Dtelnet.h47 #define EC 247 /* erase the current character */ macro
65 "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
222 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
/freebsd-11-stable/contrib/telnet/arpa/
H A Dtelnet.h47 #define EC 247 /* erase the current character */ macro
65 "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
223 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMinGW.cpp316 std::error_code EC; local
317 for (llvm::sys::fs::directory_iterator LI(LibDir, EC), LE; !EC && LI != LE;
318 LI = LI.increment(EC)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DA15SDOptimizer.cpp261 MachineInstr *EC = elideCopies(SPRMI); local
263 if (EC && EC->isCopy() &&
264 EC->getOperand(1).getSubReg() == ARM::ssub_0) {
/freebsd-11-stable/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp350 if (std::error_code EC = CodeOrErr.getError()) {
351 errs() << EC.message() << "\n";
460 if (std::error_code EC = CodeOrErr.getError()) {
461 llvm::errs() << EC.message() << "\n";
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp234 if (auto EC = FS.makeAbsolute(AbsolutePath))
235 return llvm::errorCodeToError(EC);
560 if (auto EC =
563 << EC.message() << "\n";

Completed in 457 milliseconds

1234567891011>>