HomeSort by relevance Sort by last modified time
    Searched refs:EC (Results 76 - 100 of 339) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/include/llvm/Object/
Archive.h 69 Child(const Archive *Parent, const char *Start, std::error_code *EC);
113 child_iterator(std::error_code EC) : child(EC) {}
178 Archive(MemoryBufferRef Source, std::error_code &EC);
  /external/llvm/lib/Object/
MachOUniversal.cpp 98 std::error_code EC;
100 new MachOUniversalBinary(Source, EC));
101 if (EC)
102 return EC;
107 std::error_code &ec)
110 ec = object_error::invalid_file_type;
120 ec = object_error::parse_failed;
123 ec = std::error_code();
IRObjectFile.cpp 269 if (std::error_code EC = Sec.getName(SecName))
270 return EC;
273 if (std::error_code EC = Sec.getContents(SecContents))
274 return EC;
314 if (std::error_code EC = MOrErr.getError())
315 return EC;
  /external/llvm/tools/lli/
OrcLazyJIT.cpp 109 std::error_code EC;
110 raw_fd_ostream Out(M->getModuleIdentifier() + ".ll", EC,
112 if (EC) {
114 << " for dumping.\nError:" << EC.message() << "\n";
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 182 std::error_code EC;
184 new tool_output_file(OutputFilename, EC, sys::fs::F_None));
185 if (EC) {
186 errs() << EC.message() << '\n';
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 129 directory_iterator &increment(std::error_code &EC) {
131 EC = Impl->increment();
132 if (EC || !Impl->CurrentEntry.isStatusKnown())
163 std::error_code &EC);
168 recursive_directory_iterator &increment(std::error_code &EC);
201 std::error_code &EC) = 0;
254 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override;
298 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override;
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 123 std::error_code EC;
125 llvm::raw_fd_ostream infoOut(infoFile, EC, llvm::sys::fs::F_None);
126 if (EC)
127 return report(EC.message(), Diag);
178 std::error_code EC;
179 llvm::raw_fd_ostream Out(origFE->getName(), EC, llvm::sys::fs::F_None);
180 if (EC)
181 return report(EC.message(), Diag);
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLSignature.java 41 RSA, EC,
183 case EC:
186 + " (not EC)");
218 case EC:
330 super(EVP_MD, EngineType.EC);
336 super(EVP_MD, EngineType.EC);
342 super(EVP_MD, EngineType.EC);
348 super(EVP_MD, EngineType.EC);
354 super(EVP_MD, EngineType.EC);
  /external/libnfc-nci/halimpl/pn54x/
libnfc-nxp-PN547C2_example.conf 119 A0, EC, 01, 01,
libnfc-nxp-PN548AD_example.conf 141 A0, EC, 01, 01,
libnfc-nxp-PN65T_example.conf 119 A0, EC, 01, 01,
libnfc-nxp-PN66T_example.conf 142 A0, EC, 01, 01,
  /external/llvm/lib/AsmParser/
Parser.cpp 53 if (std::error_code EC = FileOrErr.getError()) {
55 "Could not open input file: " + EC.message());
  /external/boringssl/src/crypto/ec/
ec_montgomery.c 68 #include <openssl/ec.h>
160 OPENSSL_PUT_ERROR(EC, ERR_R_BN_LIB);
192 OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
202 OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
212 OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
222 OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
232 OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
  /external/clang/lib/Driver/
Compilation.cpp 88 if (std::error_code EC = llvm::sys::fs::remove(File)) {
95 << EC.message();
135 std::error_code EC;
136 OS = new llvm::raw_fd_ostream(getDriver().CCPrintOptionsFilename, EC,
139 if (EC) {
141 << EC.message();
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 226 if (std::error_code EC = GV.materialize()) {
227 errs() << argv[0] << ": error reading input: " << EC.message() << "\n";
266 std::error_code EC;
267 tool_output_file Out(OutputFilename, EC, sys::fs::F_None);
268 if (EC) {
269 errs() << EC.message() << '\n';
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 57 static void failIfError(std::error_code EC, Twine Context = "") {
58 if (!EC)
63 fail(EC.message());
64 fail(Context + ": " + EC.message());
655 std::error_code EC = Buf.getError();
656 if (EC && EC != errc::no_such_file_or_directory)
657 fail("error opening '" + ArchiveName + "': " + EC.message() + "!");
659 if (!EC) {
660 object::Archive Archive(Buf.get()->getMemBufferRef(), EC);
    [all...]
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 165 if (std::error_code EC = ResolvedAddrOrErr.getError())
166 return EC;
169 if (std::error_code EC = Iter.getError())
170 return EC;
200 if (std::error_code EC = resolveSymbol(Rels, Offset, Sym))
201 return EC;
203 if (std::error_code EC = resolveSectionAndAddress(Obj, Sym, Section, Addr))
204 return EC;
205 if (std::error_code EC = Obj->getSectionContents(Section, Contents))
206 return EC;
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 292 if (std::error_code EC = InputBuffer.getError())
293 return Error("unable to read input: '" + EC.message() + "'");
298 if (std::error_code EC = MaybeObj.getError())
299 return Error("unable to create object file: '" + EC.message() + "'");
398 if (std::error_code EC = InputBuffer.getError())
399 return Error("unable to read input: '" + EC.message() + "'");
403 if (std::error_code EC = MaybeObj.getError())
404 return Error("unable to create object file: '" + EC.message() + "'");
450 if (std::error_code EC = CheckerFileBuf.getError())
452 EC.message())
    [all...]
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 277 std::error_code EC = sys::fs::createUniqueFile(
279 if (EC) {
280 errs() << ToolName << ": Error making unique filename: " << EC.message()
315 std::error_code EC = sys::fs::createUniqueFile(
317 if (EC) {
319 << EC.message() << "!\n";
341 std::error_code EC = sys::fs::createUniqueFile(OutputFile, UniqueFile);
342 if (EC) {
344 << EC.message() << "\n";
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 502 BitcodeDiagnosticInfo::BitcodeDiagnosticInfo(std::error_code EC,
505 : DiagnosticInfo(DK_Bitcode, Severity), Msg(Msg), EC(EC) {}
510 std::error_code EC, const Twine &Message) {
511 BitcodeDiagnosticInfo DI(EC, DS_Error, Message);
513 return EC;
517 std::error_code EC) {
518 return error(DiagnosticHandler, EC, EC.message());
521 static std::error_code error(LLVMContext &Context, std::error_code EC,
    [all...]
  /external/llvm/tools/llvm-cov/
gcov.cpp 52 if (std::error_code EC = GCNO_Buff.getError()) {
53 errs() << GCNO << ": " << EC.message() << "\n";
64 if (std::error_code EC = GCDA_Buff.getError()) {
65 if (EC != errc::no_such_file_or_directory) {
66 errs() << GCDA << ": " << EC.message() << "\n";
  /external/llvm/lib/LTO/
LTOModule.cpp 108 if (std::error_code EC = BufferOrErr.getError())
109 return EC;
126 if (std::error_code EC = BufferOrErr.getError())
127 return EC;
161 if (std::error_code EC = MBOrErr.getError())
162 return EC;
167 if (std::error_code EC = M.getError())
168 return EC;
177 if (std::error_code EC = M.getError())
178 return EC;
    [all...]
  /frameworks/compile/slang/
slang.cpp 130 std::error_code &EC,
135 EC = llvm::sys::fs::create_directories(
137 if (!EC) {
139 new llvm::tool_output_file(OutputFile, EC, Flags);
146 << OutputFile << EC.message();
313 std::error_code EC;
320 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, EC, mDiagEngine);
328 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_None, EC, mDiagEngine);
336 if (EC)
347 std::error_code EC;
    [all...]
  /external/clang/lib/AST/
InheritViz.cpp 142 if (std::error_code EC = llvm::sys::fs::createTemporaryFile(
144 llvm::errs() << "Error: " << EC.message() << "\n";

Completed in 841 milliseconds

1 2 34 5 6 7 8 91011>>