/external/clang/lib/Driver/ |
MinGWToolChain.cpp | 28 std::error_code EC; 29 for (llvm::sys::fs::directory_iterator LI(LibDir, EC), LE; !EC && LI != LE; 30 LI = LI.increment(EC)) {
|
/external/clang/lib/Frontend/Rewrite/ |
FixItRewriter.cpp | 95 std::error_code EC; 100 OS.reset(new llvm::raw_fd_ostream(Filename, EC, llvm::sys::fs::F_None)); 102 if (EC) { 104 << EC.message();
|
/external/llvm/lib/Support/ |
FileUtilities.cpp | 180 if (std::error_code EC = F1OrErr.getError()) { 182 *Error = EC.message(); 188 if (std::error_code EC = F2OrErr.getError()) { 190 *Error = EC.message();
|
/external/llvm/lib/Target/ |
TargetMachineC.cpp | 213 std::error_code EC; 214 raw_fd_ostream dest(Filename, EC, sys::fs::F_None); 215 if (EC) { 216 *ErrorMessage = strdup(EC.message().c_str());
|
/external/llvm/tools/llvm-dis/ |
llvm-dis.cpp | 209 std::error_code EC; 211 new tool_output_file(OutputFilename, EC, sys::fs::F_None)); 212 if (EC) { 213 errs() << EC.message() << '\n';
|
/prebuilts/go/darwin-x86/src/crypto/x509/ |
sec1_test.go | 33 t.Fatalf("#%d: failed to decode EC private key: %s", i, err) 37 t.Fatalf("#%d: failed to encode EC private key: %s", i, err)
|
/prebuilts/go/linux-x86/src/crypto/x509/ |
sec1_test.go | 33 t.Fatalf("#%d: failed to decode EC private key: %s", i, err) 37 t.Fatalf("#%d: failed to encode EC private key: %s", i, err)
|
/external/llvm/tools/llvm-readobj/ |
llvm-readobj.cpp | 271 void error(std::error_code EC) { 272 if (!EC) 275 reportError(EC.message()); 284 static void reportError(StringRef Input, std::error_code EC) { 288 reportError(Twine(Input) + ": " + EC.message()); 344 if (std::error_code EC = createDumper(Obj, Writer, Dumper)) 345 reportError(Obj->getFileName(), EC);
|
COFFDumper.cpp | 229 if (std::error_code EC = resolveSymbol(Section, Offset, Symbol)) 230 return EC; [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
HTMLDiagnostics.cpp | 108 if (std::error_code ec = llvm::sys::fs::create_directories(Directory)) { 110 << Directory << "': " << ec.message() << '\n'; 296 if (std::error_code EC = 299 << "' absolute: " << EC.message() << '\n'; 302 if (std::error_code EC = 305 << "': " << EC.message() << '\n'; 311 std::error_code EC; 323 EC = llvm::sys::fs::openFileForWrite(Model, 327 if (EC && EC != llvm::errc::file_exists) [all...] |
/external/llvm/tools/verify-uselistorder/ |
verify-uselistorder.cpp | 112 if (auto EC = sys::fs::createTemporaryFile("uselistorder", Ext, Vector)) { 113 errs() << "verify-uselistorder: error: " << EC.message() << "\n"; 127 std::error_code EC; 128 raw_fd_ostream OS(Filename, EC, sys::fs::F_None); 129 if (EC) { 130 errs() << "verify-uselistorder: error: " << EC.message() << "\n"; 140 std::error_code EC; 141 raw_fd_ostream OS(Filename, EC, sys::fs::F_Text); 142 if (EC) { 143 errs() << "verify-uselistorder: error: " << EC.message() << "\n" [all...] |
/external/llvm/include/llvm/Object/ |
ELFObjectFile.h | 308 ELFObjectFile(MemoryBufferRef Object, std::error_code &EC); 417 if (std::error_code EC = SectionOrErr.getError()) 418 return errorCodeToError(EC); 537 if (std::error_code EC = ESecOrErr.getError()) 538 return errorCodeToError(EC); 648 if (std::error_code EC = SymSecOrErr.getError()) 649 report_fatal_error(EC.message()); 667 if (std::error_code EC = R.getError()) 668 report_fatal_error(EC.message()); 752 ELFObjectFile<ELFT>::ELFObjectFile(MemoryBufferRef Object, std::error_code &EC) [all...] |
/external/clang/lib/Frontend/ |
CompilerInstance.cpp | 147 std::error_code EC; 153 DiagOpts->DiagnosticLogFile, EC, 155 if (EC) { 157 << DiagOpts->DiagnosticLogFile << EC.message(); 563 if (std::error_code ec = 566 << OF.TempFilename << OF.Filename << ec.message(); 600 std::error_code EC; 602 OutputPath, EC, Binary, RemoveFileOnSignal, InFile, Extension, 606 << EC.message(); 670 std::error_code EC [all...] |
/external/boringssl/src/crypto/fipsmodule/ec/ |
p256-x86_64.c | 23 #include <openssl/ec.h> 242 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE); 251 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE); 255 OPENSSL_PUT_ERROR(EC, ERR_R_BN_LIB); 290 OPENSSL_PUT_ERROR(EC, EC_R_COORDINATES_OUT_OF_RANGE); 401 OPENSSL_PUT_ERROR(EC, ERR_R_BN_LIB); 505 OPENSSL_PUT_ERROR(EC, EC_R_POINT_AT_INFINITY); 512 OPENSSL_PUT_ERROR(EC, EC_R_COORDINATES_OUT_OF_RANGE); 529 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE); 539 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE) [all...] |
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
Error.h | 870 void setErrorCode(std::error_code EC) { this->EC = EC; } 871 std::error_code convertToErrorCode() const override { return EC; } 872 void log(raw_ostream &OS) const override { OS << EC.message(); } 879 ECError(std::error_code EC) : EC(EC) {} 881 std::error_code EC; 893 Error errorCodeToError(std::error_code EC); [all...] |
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
Error.h | 870 void setErrorCode(std::error_code EC) { this->EC = EC; } 871 std::error_code convertToErrorCode() const override { return EC; } 872 void log(raw_ostream &OS) const override { OS << EC.message(); } 879 ECError(std::error_code EC) : EC(EC) {} 881 std::error_code EC; 893 Error errorCodeToError(std::error_code EC); [all...] |
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
Error.h | 870 void setErrorCode(std::error_code EC) { this->EC = EC; } 871 std::error_code convertToErrorCode() const override { return EC; } 872 void log(raw_ostream &OS) const override { OS << EC.message(); } 879 ECError(std::error_code EC) : EC(EC) {} 881 std::error_code EC; 893 Error errorCodeToError(std::error_code EC); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
Error.h | 870 void setErrorCode(std::error_code EC) { this->EC = EC; } 871 std::error_code convertToErrorCode() const override { return EC; } 872 void log(raw_ostream &OS) const override { OS << EC.message(); } 879 ECError(std::error_code EC) : EC(EC) {} 881 std::error_code EC; 893 Error errorCodeToError(std::error_code EC); [all...] |
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
Error.h | 870 void setErrorCode(std::error_code EC) { this->EC = EC; } 871 std::error_code convertToErrorCode() const override { return EC; } 872 void log(raw_ostream &OS) const override { OS << EC.message(); } 879 ECError(std::error_code EC) : EC(EC) {} 881 std::error_code EC; 893 Error errorCodeToError(std::error_code EC); [all...] |
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
Error.h | 870 void setErrorCode(std::error_code EC) { this->EC = EC; } 871 std::error_code convertToErrorCode() const override { return EC; } 872 void log(raw_ostream &OS) const override { OS << EC.message(); } 879 ECError(std::error_code EC) : EC(EC) {} 881 std::error_code EC; 893 Error errorCodeToError(std::error_code EC); [all...] |
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
Error.h | 870 void setErrorCode(std::error_code EC) { this->EC = EC; } 871 std::error_code convertToErrorCode() const override { return EC; } 872 void log(raw_ostream &OS) const override { OS << EC.message(); } 879 ECError(std::error_code EC) : EC(EC) {} 881 std::error_code EC; 893 Error errorCodeToError(std::error_code EC); [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
Error.h | 870 void setErrorCode(std::error_code EC) { this->EC = EC; } 871 std::error_code convertToErrorCode() const override { return EC; } 872 void log(raw_ostream &OS) const override { OS << EC.message(); } 879 ECError(std::error_code EC) : EC(EC) {} 881 std::error_code EC; 893 Error errorCodeToError(std::error_code EC); [all...] |
/external/llvm/unittests/Support/ |
Path.cpp | 521 std::error_code EC = fs::status(TempPath2.c_str(), B); 522 EXPECT_EQ(EC, errc::no_such_file_or_directory); 651 std::error_code ec; local 652 for (fs::directory_iterator i(".", ec), e; i != e; i.increment(ec)) 653 ASSERT_NO_ERROR(ec); 669 + "/recursive", ec), e; i != e; i.increment(ec)){ 670 ASSERT_NO_ERROR(ec); 723 fs::recursive_directory_iterator I(Twine(TestDirectory) + "/reclevel", ec), E [all...] |
/external/llvm/lib/Transforms/IPO/ |
SampleProfile.cpp | 689 const BasicBlock *EC = EquivalenceClass[BB1]; 690 uint64_t Weight = BlockWeights[EC]; 695 EquivalenceClass[BB2] = EC; 708 BlockWeights[EC] = Weight; 806 const BasicBlock *EC = EquivalenceClass[BB]; 866 uint64_t &BBWeight = BlockWeights[EC] [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
BitcodeReader.cpp | 361 std::error_code EC, const Twine &Message) { 362 BitcodeDiagnosticInfo DI(EC, DS_Error, Message); 364 return EC; 368 std::error_code EC) { 369 return Error(DiagnosticHandler, EC, EC.message()); [all...] |