| /src/external/bsd/tradcpp/dist/tests/ |
| t37.c | 2 #define EC */**// 6 EC 8 BC comment? EC 11 FOO(abc BC def EC ghi) 14 BAR(abc BC def, ghi EC jkl) 18 EC
|
| /src/external/apache2/llvm/dist/clang/tools/apinotes-test/ |
| APINotesTest.cpp | 34 std::error_code EC; 35 auto Out = std::make_unique<llvm::ToolOutputFile>(OutputFileName, EC, 37 if (EC) { 38 Error("failed to open '" + OutputFileName + "': " + EC.message()); 45 if (std::error_code EC = NotesOrError.getError()) { 46 llvm::errs() << EC.message() << '\n';
|
| /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/ |
| BitWriter.cpp | 21 std::error_code EC; 22 raw_fd_ostream OS(Path, EC, sys::fs::OF_None); 24 if (EC)
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-modextract/ |
| llvm-modextract.cpp | 55 std::error_code EC; 57 new ToolOutputFile(OutputFilename, EC, sys::fs::OF_None)); 58 ExitOnErr(errorCodeToError(EC));
|
| /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| PlistReporter.cpp | 58 std::error_code EC; 59 llvm::raw_fd_ostream o(outPath, EC, llvm::sys::fs::OF_TextWithCRLF); 60 if (EC) {
|
| /src/external/apache2/llvm/dist/clang/lib/DirectoryWatcher/ |
| DirectoryScanner.cpp | 19 std::error_code EC = status(Path, Status); 20 if (EC) 29 std::error_code EC; 30 for (auto It = fs::directory_iterator(Path, EC), 32 !EC && It != End; It.increment(EC)) {
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| IntEqClasses.h | 28 /// EC - When uncompressed, map each integer to a smaller member of its 32 /// When compressed, EC[i] is the equivalence class of i. 33 SmallVector<unsigned, 8> EC; 51 EC.clear(); 77 return EC[a];
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| RecordSerialization.cpp | 40 if (auto EC = Reader.readInteger(Short)) 41 return EC; 52 if (auto EC = Reader.readInteger(N)) 53 return EC; 59 if (auto EC = Reader.readInteger(N)) 60 return EC; 66 if (auto EC = Reader.readInteger(N)) 67 return EC; 73 if (auto EC = Reader.readInteger(N)) 74 return EC; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| Main.cpp | 72 std::error_code EC; 73 ToolOutputFile DepOut(DependFilename, EC, sys::fs::OF_Text); 74 if (EC) 76 EC.message() + "\n"); 97 if (std::error_code EC = FileOrErr.getError()) 99 "': " + EC.message() + "\n"); 146 std::error_code EC; 147 ToolOutputFile OutFile(OutputFilename, EC, sys::fs::OF_Text); 148 if (EC) 150 EC.message() + "\n") [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-cat/ |
| llvm-cat.cpp | 86 std::error_code EC; 87 raw_fd_ostream OS(OutputFilename, EC, sys::fs::OpenFlags::OF_None); 88 if (EC) { 90 << EC.message();
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/ |
| llvm-mca.cpp | 249 std::error_code EC; 250 auto Out = std::make_unique<ToolOutputFile>(OutputFilename, EC, 252 if (!EC) 254 return EC; 330 if (std::error_code EC = BufferPtr.getError()) { 331 WithColor::error() << InputFilename << ": " << EC.message() << '\n'; 437 if (std::error_code EC = OF.getError()) { 438 WithColor::error() << EC.message() << '\n';
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/ |
| llvm-reduce.cpp | 95 std::error_code EC; 96 raw_fd_ostream Out(OutputFilename, EC); 97 if (EC) { 98 errs() << "Error opening output file: " << EC.message() << "!\n";
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/ |
| index.cc | 23 enum class EC { THREE, FOUR }; 24 EC ec_value = EC::THREE;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/ |
| index.cc | 23 enum class EC { THREE, FOUR }; 24 EC ec_value = EC::THREE;
|
| /src/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/ |
| cfx.h | 55 u_char EC[2];
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| DependencyGraph.cpp | 102 std::error_code EC; 103 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::OF_TextWithCRLF); 104 if (EC) { 106 << EC.message();
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| DOTGraphTraitsPass.h | 96 std::error_code EC; 100 raw_fd_ostream File(Filename, EC, sys::fs::OF_TextWithCRLF); 104 if (!EC) 159 std::error_code EC; 163 raw_fd_ostream File(Filename, EC, sys::fs::OF_TextWithCRLF); 166 if (!EC)
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| EdgeBundles.h | 27 /// EC - Each edge bundle is an equivalence class. The keys are: 30 IntEqClasses EC; 41 unsigned getBundle(unsigned N, bool Out) const { return EC[2 * N + Out]; } 44 unsigned getNumBundles() const { return EC.getNumClasses(); }
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| SymbolDeserializer.h | 40 if (auto EC = S.visitSymbolBegin(Symbol)) 41 return EC; 42 if (auto EC = S.visitKnownRecord(Symbol, Record)) 43 return EC; 44 if (auto EC = S.visitSymbolEnd(Symbol)) 45 return EC; 50 if (auto EC = deserializeAs<T>(Symbol, Record)) 51 return std::move(EC); 70 auto EC = Mapping->Mapping.visitSymbolEnd(Record); 72 return EC; [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| LLVMRemarkStreamer.h | 43 std::error_code EC; 48 EC = EIB.convertToErrorCode(); 53 std::error_code convertToErrorCode() const override { return EC; }
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| ReplayInlineAdvisor.cpp | 32 std::error_code EC = BufferOrErr.getError(); 33 if (EC) { 34 Context.emitError("Could not open remarks file: " + EC.message());
|
| /src/external/apache2/llvm/dist/llvm/lib/LTO/ |
| Caching.cpp | 33 if (std::error_code EC = sys::fs::create_directories(CacheDirectoryPath)) 34 return errorCodeToError(EC); 45 std::error_code EC; 56 EC = MBOrErr.getError(); 58 EC = errorToErrorCode(FDOrErr.takeError()); 67 if (EC != errc::no_such_file_or_directory && EC != errc::permission_denied) 69 ": " + EC.message() + "\n"); 111 std::error_code EC = E.convertToErrorCode(); 112 if (EC != errc::permission_denied [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| CodeGenCoverage.cpp | 90 std::error_code EC; 93 std::make_unique<ToolOutputFile>(CoverageFilename, EC, OpenFlags); 94 if (EC)
|
| FileOutputBuffer.cpp | 99 std::error_code EC; 100 if (auto EC = 102 return errorCodeToError(EC); 118 std::error_code EC; 120 Size, nullptr, sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC); 121 if (EC) 122 return errorCodeToError(EC); 134 if (auto EC = fs::resize_file_before_mapping_readwrite(File.FD, Size)) { 136 return errorCodeToError(EC); 140 std::error_code EC; [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
| Reproducer.cpp | 15 static std::string createReproducerDir(std::error_code &EC) { 19 EC = sys::fs::create_directory(Root); 21 EC = sys::fs::createUniqueDirectory("dsymutil", Root); 23 return EC ? "" : std::string(Root); 29 ReproducerGenerate::ReproducerGenerate(std::error_code &EC) 30 : Root(createReproducerDir(EC)), FC() { 48 ReproducerUse::ReproducerUse(StringRef Root, std::error_code &EC) { 55 EC = Buffer.getError(); 66 std::error_code EC; 68 std::make_unique<ReproducerGenerate>(EC); [all...] |