Searched refs:ExpectedData (Results 1 – 6 of 6) sorted by relevance
| /src/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | GsymReader.cpp | 323 if (auto ExpectedData = getFunctionInfoDataForAddress(Addr, FuncStartAddr)) in getFunctionInfo() local 324 return FunctionInfo::decode(*ExpectedData, FuncStartAddr); in getFunctionInfo() 326 return ExpectedData.takeError(); in getFunctionInfo() 332 if (auto ExpectedData = getFunctionInfoDataAtIndex(Idx, FuncStartAddr)) in getFunctionInfoAtIndex() local 333 return FunctionInfo::decode(*ExpectedData, FuncStartAddr); in getFunctionInfoAtIndex() 335 return ExpectedData.takeError(); in getFunctionInfoAtIndex() 340 if (auto ExpectedData = getFunctionInfoDataForAddress(Addr, FuncStartAddr)) in lookup() local 341 return FunctionInfo::lookup(*ExpectedData, *this, FuncStartAddr, Addr); in lookup() 343 return ExpectedData.takeError(); in lookup()
|
| /src/contrib/llvm-project/llvm/lib/Object/ |
| H A D | Minidump.cpp | 41 auto ExpectedData = in getString() local 43 if (!ExpectedData) in getString() 44 return ExpectedData.takeError(); in getString() 47 copy(*ExpectedData, WStr.begin()); in getString()
|
| /src/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | VerifyDiagnosticConsumer.h | 88 struct ExpectedData { struct 122 ExpectedData ED;
|
| /src/contrib/kyua/utils/cmdline/ |
| H A D | base_command_test.cpp | 50 template< typename Data, Data ExpectedData > 82 ATF_REQUIRE_EQ(ExpectedData, data); in run()
|
| /src/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | BytesOutputStyle.cpp | 215 auto ExpectedData = File.getBlockData(I, File.getBlockSize()); in dumpBlockRanges() local 216 if (!ExpectedData) { in dumpBlockRanges() 218 toString(ExpectedData.takeError())); in dumpBlockRanges() 222 P.formatBinary(Label, *ExpectedData, Base, 0); in dumpBlockRanges()
|
| /src/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | VerifyDiagnosticConsumer.cpp | 51 using ExpectedData = VerifyDiagnosticConsumer::ExpectedData; typedef 409 static bool ParseDirective(StringRef S, ExpectedData *ED, SourceManager &SM, in ParseDirective() 1000 ExpectedData &ED) { in CheckResults()
|