Searched refs:EC (Results 276 - 300 of 485) sorted by relevance

<<11121314151617181920

/openbsd-current/gnu/llvm/llvm/tools/llvm-ifs/
H A Dllvm-ifs.cpp147 ErrorCollector EC(/*UseFatalErrors=*/false);
158 EC.addError(StubFromELF.takeError(), "BinaryRead");
168 EC.addError(
177 EC.addError(StubFromIFS.takeError(), "YamlParse");
182 EC.addError(createStringError(errc::not_supported,
187 EC.escalateToFatal();
188 return EC.makeError();
/openbsd-current/gnu/llvm/llvm/tools/llvm-rc/
H A Dllvm-rc.cpp130 std::error_code EC; local
132 if ((EC = sys::fs::createTemporaryFile(Prefix, Suffix, FileName)))
133 fatalError("Unable to create temp file: " + EC.message());
666 std::error_code EC; local
668 Dest, EC, sys::fs::FA_Read | sys::fs::FA_Write);
669 if (EC)
670 fatalError("Error opening output file '" + Dest + "': " + EC.message());
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DTimer.cpp107 std::error_code EC;
109 OutputFilename, EC, sys::fs::OF_Append | sys::fs::OF_TextWithCRLF);
110 if (!EC)
H A DYAMLParser.cpp250 std::error_code *EC = nullptr);
252 std::error_code *EC = nullptr);
271 if (EC)
272 *EC = make_error_code(std::errc::invalid_argument);
565 std::error_code *EC; member in class:llvm::yaml::Scanner
850 std::error_code *EC)
851 : SM(sm), ShowColors(ShowColors), EC(EC) {
856 std::error_code *EC)
857 : SM(SM_), ShowColors(ShowColors), EC(E
849 Scanner(StringRef Input, SourceMgr &sm, bool ShowColors, std::error_code *EC) argument
855 Scanner(MemoryBufferRef Buffer, SourceMgr &SM_, bool ShowColors, std::error_code *EC) argument
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DGraphWriter.h386 std::error_code EC = sys::fs::openFileForWrite( local
390 if (EC == std::errc::file_exists) {
392 } else if (EC) {
/openbsd-current/gnu/llvm/llvm/tools/llvm-gsymutil/
H A Dllvm-gsymutil.cpp144 static void error(StringRef Prefix, std::error_code EC) { argument
145 if (!EC)
147 errs() << Prefix << ": " << EC.message() << "\n";
/openbsd-current/include/arpa/
H A Dtelnet.h49 #define EC 247 /* erase the current character */ macro
67 "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
219 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
/openbsd-current/gnu/llvm/clang/lib/Lex/
H A DPPLexerChange.cpp303 std::error_code EC;
304 for (llvm::vfs::recursive_directory_iterator Entry(FS, Dir->getName(), EC),
306 Entry != End && !EC; Entry.increment(EC)) {
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/
H A DWebAssembly.cpp510 std::error_code EC; local
515 for (llvm::vfs::directory_iterator LI = getVFS().dir_begin(Path, EC), LE;
516 !EC && LI != LE; LI = LI.increment(EC)) {
/openbsd-current/gnu/llvm/clang/tools/clang-format/
H A DClangFormat.cpp411 if (std::error_code EC = CodeOrErr.getError()) {
412 errs() << EC.message() << "\n";
559 if (std::error_code EC = CodeOrErr.getError()) {
560 llvm::errs() << EC.message() << "\n";
/openbsd-current/gnu/llvm/clang/tools/clang-refactor/
H A DClangRefactor.cpp503 std::error_code EC; local
504 llvm::raw_fd_ostream OS(File, EC, llvm::sys::fs::OF_TextWithCRLF);
505 if (EC) {
506 llvm::errs() << EC.message() << "\n";
/openbsd-current/gnu/llvm/llvm/lib/Target/ARM/
H A DA15SDOptimizer.cpp260 MachineInstr *EC = elideCopies(SPRMI); local
262 if (EC && EC->isCopy() &&
263 EC->getOperand(1).getSubReg() == ARM::ssub_0) {
/openbsd-current/gnu/llvm/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp299 std::error_code EC; local
302 llvm::vfs::recursive_directory_iterator Iter(*vfs, buffer.str(), EC);
304 for (; Iter != End && !EC; Iter.increment(EC)) {
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1104 ElementCount EC = VT.getVectorElementCount(); local
1111 if (VT.isScalableVector() && !isPowerOf2_32(EC.getKnownMinValue()))
1117 if (!isPowerOf2_32(EC.getKnownMinValue())) {
1118 // Split EC to unit size (scalable property is preserved).
1119 NumVectorRegs = EC.getKnownMinValue();
1120 EC = ElementCount::getFixed(1);
1124 // always end up with an EC that represent a scalar or a scalable
1126 while (EC.getKnownMinValue() > 1 &&
1127 !TLI->isTypeLegal(MVT::getVectorVT(EltTy, EC))) {
1128 EC
1419 ElementCount EC = VT.getVectorElementCount(); local
[all...]
/openbsd-current/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-account.cpp463 std::error_code EC;
464 raw_fd_ostream OS(AccountOutput, EC, sys::fs::OpenFlags::OF_TextWithCRLF);
465 if (EC)
467 Twine("Cannot open file '") + AccountOutput + "' for writing.", EC);
H A Dxray-graph-diff.cpp459 std::error_code EC;
460 raw_fd_ostream OS(GraphDiffOutput, EC, sys::fs::OpenFlags::OF_TextWithCRLF);
461 if (EC)
463 Twine("Cannot open file '") + GraphDiffOutput + "' for writing.", EC);
/openbsd-current/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DExplainOutputStyle.cpp75 if (auto EC = Dbi.reload(nullptr))
76 return EC;
82 if (auto EC = Info.reload())
83 return EC;
H A DBytesOutputStyle.cpp345 if (auto EC = ModStream.reload()) {
439 auto EC = Reader.readBytes(Data, Size); local
440 assert(!EC);
441 consumeError(std::move(EC));
/openbsd-current/gnu/llvm/llvm/lib/WindowsDriver/
H A DMSVCPaths.cpp67 std::error_code EC; local
68 for (llvm::vfs::directory_iterator DirIt = VFS.dir_begin(Directory, EC),
70 !EC && DirIt != DirEnd; DirIt.increment(EC)) {
/openbsd-current/gnu/llvm/llvm/utils/FileCheck/
H A DFileCheck.cpp829 if (std::error_code EC = CheckFileOrErr.getError()) {
831 << "': " << EC.message() << '\n';
853 if (std::error_code EC = InputFileOrErr.getError()) {
855 << "': " << EC.message() << '\n';
/openbsd-current/libexec/getty/
H A Dgettytab.h135 #define EC gettyflags[5].value macro
/openbsd-current/gnu/llvm/compiler-rt/lib/xray/tests/unit/
H A Dbuffer_queue_test.cpp94 auto EC = Buffers.getBuffer(B);
95 if (EC != BufferQueue::ErrorCode::Ok)
/openbsd-current/gnu/usr.bin/perl/cpan/Unicode-Collate/Collate/Locale/
H A Dzh.pl96 00EC ; [.2090.001F.0002] # LATIN SMALL LETTER I WITH GRAVE
/openbsd-current/gnu/llvm/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.h364 getOrEmplaceSharedEntryForFilename(StringRef Filename, std::error_code EC) { argument
366 .getOrEmplaceEntryForFilename(Filename, EC);
/openbsd-current/gnu/llvm/clang/tools/driver/
H A Dcc1as_main.cpp364 std::error_code EC; local
366 Path, EC, (Binary ? sys::fs::OF_None : sys::fs::OF_TextWithCRLF));
367 if (EC) {
368 Diags.Report(diag::err_fe_unable_to_open_output) << Path << EC.message();
386 if (std::error_code EC = Buffer.getError()) {
387 Error = EC.message();

Completed in 499 milliseconds

<<11121314151617181920