/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
CodeViewRecordIO.h | 54 if (auto EC = Reader->readObject(ValuePtr)) 55 return EC; 76 if (auto EC = mapInteger(X)) 77 return EC; 96 if (auto EC = Writer->writeInteger(Size)) 97 return EC; 100 if (auto EC = Mapper(*this, X)) 101 return EC; 104 if (auto EC = Reader->readInteger(Size)) 105 return EC; [all...] |
/external/llvm/include/llvm/DebugInfo/CodeView/ |
ModuleSubstreamVisitor.h | 37 if (auto EC = Reader.readObject(BlockHeader)) 38 return EC; 54 if (auto EC = Reader.readArray(Item.LineNumbers, BlockHeader->NumLines)) 55 return EC; 57 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines)) 58 return EC; 79 if (auto EC = Reader.readObject(Header)) 80 return EC; 83 if (auto EC = Reader.readBytes(Item.Checksum, Header->ChecksumSize)) 84 return EC; [all...] |
CVRecord.h | 37 if (auto EC = Reader.readObject(Prefix)) 38 return EC; 45 if (auto EC = 47 return EC;
|
/external/llvm/lib/Object/ |
ModuleSummaryIndexObjectFile.cpp | 41 if (std::error_code EC = Sec.getContents(SecContents)) 42 return EC; 98 if (std::error_code EC = IOrErr.getError()) 99 return EC; 113 std::error_code EC = FileOrErr.getError(); 114 if (EC) 115 return EC; 120 EC = ObjOrErr.getError(); 121 if (EC) 122 return EC; [all...] |
/external/llvm/lib/ProfileData/ |
SampleProfWriter.cpp | 75 if (std::error_code EC = write(CalleeSamples)) 76 return EC; 121 if (auto EC = writeSummary()) 122 return EC; 158 if (std::error_code EC = writeNameIdx(S.getName())) 159 return EC; 175 if (std::error_code EC = writeNameIdx(Callee)) 176 return EC; 188 if (std::error_code EC = writeBody(CalleeSamples)) 189 return EC; [all...] |
/external/spirv-llvm/tools/llvm-spirv/ |
llvm-spirv.cpp | 131 if (std::error_code EC = MOrErr.getError()) { 132 errs() << "Fails to load bitcode: " << EC.message(); 138 if (std::error_code EC = M->materializeAll()){ 139 errs() << "Fails to materialize: " << EC.message(); 152 std::error_code EC; 153 llvm::raw_fd_ostream OFS(outFile, EC, llvm::sys::fs::F_None); 189 std::error_code EC; 190 tool_output_file Out(OutputFile.c_str(), EC, sys::fs::F_None); 191 if (EC) { 192 errs() << "Fails to open output file: " << EC.message() [all...] |
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p3.cpp | 11 enum class EC { ec }; // expected-warning 0-1 {{C++11}} 44 using B::EC; 45 using B::EC::ec; // expected-error {{not a class}} expected-warning 0-1 {{C++11}}
|
/external/llvm/lib/Bitcode/Writer/ |
BitWriter.cpp | 21 std::error_code EC; 22 raw_fd_ostream OS(Path, EC, sys::fs::F_None); 24 if (EC)
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
PublicsStream.cpp | 110 if (auto EC = Reader.readArray(HashRecords, NumHashRecords)) 111 return joinErrors(std::move(EC), 118 if (auto EC = Reader.readBytes(Bitmap, NumBitmapEntries)) 119 return joinErrors(std::move(EC), 131 if (auto EC = Reader.readArray(HashBuckets, NumBuckets)) 132 return joinErrors(std::move(EC), 138 if (auto EC = Reader.readArray(AddressMap, NumAddressMapEntries)) 139 return joinErrors(std::move(EC), 144 if (auto EC = Reader.readArray(ThunkMap, Header->NumThunks)) 145 return joinErrors(std::move(EC), [all...] |
SymbolStream.cpp | 35 if (auto EC = Reader.readArray(SymbolRecords, Stream->getLength())) 36 return EC;
|
InfoStream.cpp | 31 if (auto EC = Reader.readObject(H)) 33 std::move(EC), 86 if (auto EC = Writer.writeObject(H)) 87 return EC;
|
/external/llvm/unittests/ExecutionEngine/Orc/ |
RPCUtilsTest.cpp | 91 auto EC = expect<VoidBool>(C2, [&](bool &B) { 95 EXPECT_FALSE(EC) << "Simple expect over queue failed"; 100 auto EC = waitForResult(C1, ResOrErr->second, handleNone); 101 EXPECT_FALSE(EC) << "Could not read result."; 120 auto EC = expect<IntInt>(C2, [&](int32_t I) -> Expected<int32_t> { 124 EXPECT_FALSE(EC) << "Simple expect over queue failed"; 129 auto EC = waitForResult(C1, ResOrErr->second, handleNone); 130 EXPECT_FALSE(EC) << "Could not read result."; 153 auto EC = expect<AllTheTypes>( 172 EXPECT_FALSE(EC) << "Big (serialization test) call over queue failed" [all...] |
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
BinaryStreamReader.h | 66 if (auto EC = readBytes(Bytes, sizeof(T))) 67 return EC; 79 if (auto EC = readInteger(N)) 80 return EC; 129 if (auto EC = readBytes(Buffer, sizeof(T))) 130 return EC; 156 if (auto EC = readBytes(Bytes, NumElements * sizeof(T))) 157 return EC; 177 if (auto EC = readStreamRef(S, Size)) 178 return EC; [all...] |
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
BinaryStreamReader.h | 66 if (auto EC = readBytes(Bytes, sizeof(T))) 67 return EC; 79 if (auto EC = readInteger(N)) 80 return EC; 129 if (auto EC = readBytes(Buffer, sizeof(T))) 130 return EC; 156 if (auto EC = readBytes(Bytes, NumElements * sizeof(T))) 157 return EC; 177 if (auto EC = readStreamRef(S, Size)) 178 return EC; [all...] |
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
BinaryStreamReader.h | 66 if (auto EC = readBytes(Bytes, sizeof(T))) 67 return EC; 79 if (auto EC = readInteger(N)) 80 return EC; 129 if (auto EC = readBytes(Buffer, sizeof(T))) 130 return EC; 156 if (auto EC = readBytes(Bytes, NumElements * sizeof(T))) 157 return EC; 177 if (auto EC = readStreamRef(S, Size)) 178 return EC; [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
BinaryStreamReader.h | 66 if (auto EC = readBytes(Bytes, sizeof(T))) 67 return EC; 79 if (auto EC = readInteger(N)) 80 return EC; 129 if (auto EC = readBytes(Buffer, sizeof(T))) 130 return EC; 156 if (auto EC = readBytes(Bytes, NumElements * sizeof(T))) 157 return EC; 177 if (auto EC = readStreamRef(S, Size)) 178 return EC; [all...] |
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
BinaryStreamReader.h | 66 if (auto EC = readBytes(Bytes, sizeof(T))) 67 return EC; 79 if (auto EC = readInteger(N)) 80 return EC; 129 if (auto EC = readBytes(Buffer, sizeof(T))) 130 return EC; 156 if (auto EC = readBytes(Bytes, NumElements * sizeof(T))) 157 return EC; 177 if (auto EC = readStreamRef(S, Size)) 178 return EC; [all...] |
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
BinaryStreamReader.h | 66 if (auto EC = readBytes(Bytes, sizeof(T))) 67 return EC; 79 if (auto EC = readInteger(N)) 80 return EC; 129 if (auto EC = readBytes(Buffer, sizeof(T))) 130 return EC; 156 if (auto EC = readBytes(Bytes, NumElements * sizeof(T))) 157 return EC; 177 if (auto EC = readStreamRef(S, Size)) 178 return EC; [all...] |
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
BinaryStreamReader.h | 66 if (auto EC = readBytes(Bytes, sizeof(T))) 67 return EC; 79 if (auto EC = readInteger(N)) 80 return EC; 129 if (auto EC = readBytes(Buffer, sizeof(T))) 130 return EC; 156 if (auto EC = readBytes(Bytes, NumElements * sizeof(T))) 157 return EC; 177 if (auto EC = readStreamRef(S, Size)) 178 return EC; [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
BinaryStreamReader.h | 66 if (auto EC = readBytes(Bytes, sizeof(T))) 67 return EC; 79 if (auto EC = readInteger(N)) 80 return EC; 129 if (auto EC = readBytes(Buffer, sizeof(T))) 130 return EC; 156 if (auto EC = readBytes(Bytes, NumElements * sizeof(T))) 157 return EC; 177 if (auto EC = readStreamRef(S, Size)) 178 return EC; [all...] |
/external/llvm/lib/Support/ |
CachePruning.cpp | 31 std::error_code EC; 32 raw_fd_ostream Out(TimestampFile.str(), EC, sys::fs::F_None); 58 if (auto EC = sys::fs::status(TimestampFile, FileStatus)) { 59 if (EC == errc::no_such_file_or_directory) { 102 std::error_code EC; 107 for (sys::fs::directory_iterator File(CachePathNative, EC), FileEnd; 108 File != FileEnd && !EC; File.increment(EC)) {
|
/external/llvm/tools/llvm-split/ |
llvm-split.cpp | 57 std::error_code EC; 59 OutputFilename + utostr(I++), EC, sys::fs::F_None)); 60 if (EC) { 61 errs() << EC.message() << '\n';
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
CVRecord.h | 60 if (auto EC = Reader.readObject(Prefix)) 61 return EC; 68 if (auto EC = 70 return EC;
|
SymbolDeserializer.h | 47 auto EC = Mapping->Mapping.visitSymbolEnd(Record); 49 return EC; 64 if (auto EC = Mapping->Mapping.visitKnownRecord(CVR, Record)) 65 return EC;
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
CVRecord.h | 60 if (auto EC = Reader.readObject(Prefix)) 61 return EC; 68 if (auto EC = 70 return EC;
|