HomeSort by relevance Sort by last modified time
    Searched refs:EC (Results 51 - 75 of 799) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
SymbolVisitorCallbackPipeline.h 27 if (auto EC = Visitor->visitUnknownSymbol(Record))
28 return EC;
35 if (auto EC = Visitor->visitSymbolBegin(Record))
36 return EC;
43 if (auto EC = Visitor->visitSymbolEnd(Record))
44 return EC;
56 if (auto EC = Visitor->visitKnownRecord(CVR, Record)) \
57 return EC; \
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...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
SymbolVisitorCallbackPipeline.h 27 if (auto EC = Visitor->visitUnknownSymbol(Record))
28 return EC;
35 if (auto EC = Visitor->visitSymbolBegin(Record))
36 return EC;
43 if (auto EC = Visitor->visitSymbolEnd(Record))
44 return EC;
56 if (auto EC = Visitor->visitKnownRecord(CVR, Record)) \
57 return EC; \
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...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
SymbolVisitorCallbackPipeline.h 27 if (auto EC = Visitor->visitUnknownSymbol(Record))
28 return EC;
35 if (auto EC = Visitor->visitSymbolBegin(Record))
36 return EC;
43 if (auto EC = Visitor->visitSymbolEnd(Record))
44 return EC;
56 if (auto EC = Visitor->visitKnownRecord(CVR, Record)) \
57 return EC; \
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...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
SymbolVisitorCallbackPipeline.h 27 if (auto EC = Visitor->visitUnknownSymbol(Record))
28 return EC;
35 if (auto EC = Visitor->visitSymbolBegin(Record))
36 return EC;
43 if (auto EC = Visitor->visitSymbolEnd(Record))
44 return EC;
56 if (auto EC = Visitor->visitKnownRecord(CVR, Record)) \
57 return EC; \
  /external/llvm/lib/DebugInfo/CodeView/
StreamReader.cpp 21 if (auto EC = Stream.readLongestContiguousChunk(Offset, Buffer))
22 return EC;
28 if (auto EC = Stream.readBytes(Offset, Size, Buffer))
29 return EC;
36 if (auto EC = readObject(P))
37 return EC;
44 if (auto EC = readObject(P))
45 return EC;
56 if (auto EC = readObject(C))
57 return EC;
    [all...]
ModuleSubstream.cpp 25 if (auto EC = Reader.readObject(Header))
26 return EC;
30 if (auto EC = Reader.readStreamRef(Info.Data, Header->Length))
31 return EC;
  /external/llvm/lib/TableGen/
Main.cpp 57 std::error_code EC;
58 tool_output_file DepOut(DependFilename, EC, sys::fs::F_Text);
59 if (EC) {
61 << EC.message() << "\n";
79 if (std::error_code EC = FileOrErr.getError()) {
81 << "': " << EC.message() << "\n";
97 std::error_code EC;
98 tool_output_file Out(OutputFilename, EC, sys::fs::F_Text);
99 if (EC) {
101 << EC.message() << "\n"
    [all...]
  /external/llvm/lib/DebugInfo/PDB/Raw/
PDBFile.cpp 81 if (auto EC = Buffer->readBytes(StreamBlockOffset, NumBytes, Result))
82 return std::move(EC);
105 if (auto EC = Reader.readObject(SB)) {
106 consumeError(std::move(EC));
111 if (auto EC = setSuperBlock(SB))
112 return EC;
115 if (auto EC = Reader.readArray(DirectoryBlocks, getNumDirectoryBlocks()))
116 return EC;
137 if (auto EC = Reader.readInteger(NumStreams))
138 return EC;
    [all...]
DbiStream.cpp 77 if (auto EC = Reader.readArray(Output, Count))
78 return EC;
95 if (auto EC = Reader.readObject(Header))
148 if (auto EC = Reader.readArray(ModInfoArray, Header->ModiSubstreamSize))
149 return EC;
154 if (auto EC = Reader.readStreamRef(SecContrSubstream,
156 return EC;
157 if (auto EC = Reader.readStreamRef(SecMapSubstream, Header->SectionMapSize))
158 return EC;
159 if (auto EC = Reader.readStreamRef(FileInfoSubstream, Header->FileInfoSize)
    [all...]
NameHashTable.cpp 32 if (auto EC = Stream.readObject(H))
33 return EC;
44 if (auto EC = Stream.readStreamRef(NamesBuffer, H->ByteSize))
45 return joinErrors(std::move(EC),
50 if (auto EC = Stream.readObject(HashCount))
51 return EC;
53 if (auto EC = Stream.readArray(IDs, *HashCount))
54 return joinErrors(std::move(EC),
62 if (auto EC = Stream.readInteger(NameCount))
63 return EC;
    [all...]
  /external/clang/test/CodeGenCUDA/Inputs/
cuda-initializers.h 12 struct EC {
13 int ec; member in struct:EC
14 __device__ EC() {} // -- allowed
15 __device__ EC(int) {} // -- not allowed
114 struct EC_I_EC : EC {
115 __device__ EC_I_EC() : EC() {}
119 struct EC_I_EC1 : EC {
120 __device__ EC_I_EC1() : EC(1) {}
  /external/clang/test/SemaCUDA/Inputs/
cuda-initializers.h 12 struct EC {
13 int ec; member in struct:EC
14 __device__ EC() {} // -- allowed
15 __device__ EC(int) {} // -- not allowed
114 struct EC_I_EC : EC {
115 __device__ EC_I_EC() : EC() {}
119 struct EC_I_EC1 : EC {
120 __device__ EC_I_EC1() : EC(1) {}
  /external/llvm/tools/obj2yaml/
elf2yaml.cpp 87 if (std::error_code EC = TableOrErr.getError())
88 return EC;
94 if (std::error_code EC = S.getError())
95 return EC;
101 if (std::error_code EC = S.getError())
102 return EC;
108 if (std::error_code EC = G.getError())
109 return EC;
115 if (std::error_code EC = G.getError())
116 return EC;
    [all...]
  /external/llvm/lib/Support/
ToolOutputFile.cpp 37 tool_output_file::tool_output_file(StringRef Filename, std::error_code &EC,
39 : Installer(Filename), OS(Filename, EC, Flags) {
41 if (EC)
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
EdgeBundles.h 28 /// EC - Each edge bundle is an equivalence class. The keys are:
31 IntEqClasses EC;
42 unsigned getBundle(unsigned N, bool Out) const { return EC[2 * N + Out]; }
45 unsigned getNumBundles() const { return EC.getNumClasses(); }
  /external/clang/lib/Frontend/
SerializedDiagnosticReader.cpp 46 std::error_code EC;
53 if ((EC = readMetaBlock(Stream)))
54 return EC;
57 if ((EC = readDiagnosticBlock(Stream)))
58 return EC;
153 std::error_code EC;
154 if ((EC = visitStartOfDiagnostic()))
155 return EC;
168 if ((EC = readDiagnosticBlock(Stream)))
169 return EC;
    [all...]
  /external/llvm/lib/ProfileData/
SampleProfReader.cpp 246 std::error_code EC;
250 EC = sampleprof_error::malformed;
252 EC = sampleprof_error::truncated;
254 EC = sampleprof_error::success;
256 if (EC) {
257 reportError(0, EC.message());
258 return EC;
266 std::error_code EC;
269 EC = sampleprof_error::truncated;
270 reportError(0, EC.message())
    [all...]
  /external/llvm/unittests/Support/
MemoryTest.cpp 60 std::error_code EC;
61 MemoryBlock M1 = Memory::allocateMappedMemory(sizeof(int), nullptr, Flags,EC);
62 EXPECT_EQ(std::error_code(), EC);
71 std::error_code EC;
72 MemoryBlock M1 = Memory::allocateMappedMemory(16, nullptr, Flags, EC);
73 EXPECT_EQ(std::error_code(), EC);
74 MemoryBlock M2 = Memory::allocateMappedMemory(64, nullptr, Flags, EC);
75 EXPECT_EQ(std::error_code(), EC);
76 MemoryBlock M3 = Memory::allocateMappedMemory(32, nullptr, Flags, EC);
77 EXPECT_EQ(std::error_code(), EC);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/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...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/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...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/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...]
  /prebuilts/clang/host/darwin-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...]

Completed in 1002 milliseconds

1 23 4 5 6 7 8 91011>>