/llvm-project/llvm/test/tools/llvm-readobj/ELF/ |
H A D | note-amd-valid-v2.test | 13 # LLVM-NEXT: Notes [ 26 # LLVM-NEXT: Notes [ 39 # LLVM-NEXT: Notes [ 52 # LLVM-NEXT: Notes [ 65 # LLVM-NEXT: Notes [ 78 # LLVM-NEXT: Notes [ 91 # LLVM-NEXT: Notes [ 104 # LLVM-NEXT: Notes [ 171 Notes: 177 Notes: [all …]
|
H A D | note-amd-invalid-v2.test | 13 # LLVM-NEXT: Notes [ 26 # LLVM-NEXT: Notes [ 39 # LLVM-NEXT: Notes [ 52 # LLVM-NEXT: Notes [ 65 # LLVM-NEXT: Notes [ 78 # LLVM-NEXT: Notes [ 91 # LLVM-NEXT: Notes [ 104 # LLVM-NEXT: Notes [ 117 # LLVM-NEXT: Notes [ 190 Notes: [all …]
|
H A D | note-multiple-sections.test | 7 # CHECK-JSON-NEXT: "Notes": [ 28 Notes: 33 Notes:
|
H A D | gnu-notes.test | 36 # LLVM-NEXT: Notes [ 50 # LLVM-NEXT: Notes [ 63 # LLVM-NEXT: Notes [ 76 # LLVM-NEXT: Notes [ 95 # LLVM-STRIPPED-NEXT: Notes [ 162 # ERR1-LLVM-NEXT: Notes [ 176 Notes: [] 197 # ERR2-LLVM-NEXT: Notes [ 220 # ERR3-LLVM-NEXT: Notes [ 253 # ERR4-LLVM-NEXT: Notes [
|
H A D | note-freebsd-core.test | 14 Notes: 39 Notes: 76 # LLVM-NEXT: Notes [ 138 # LLVM-NEXT: Notes [
|
H A D | note-amdgpu-invalid.s | 38 # LLVM-NEXT: Notes [ 65 # LLVM-NEXT: Notes [ 100 Notes: label
|
H A D | note-amdgpu.test | 39 # LLVM-NEXT: Notes [ 69 # LLVM-NEXT: Notes [ 119 Notes:
|
H A D | note-amd-invalid-v3.test | 13 # LLVM-NEXT: Notes [ 47 Notes:
|
H A D | note-netbsd-core.test | 14 Notes: 38 # LLVM-NEXT: Notes [
|
/llvm-project/clang/unittests/Tooling/ |
H A D | DiagnosticsYamlTest.cpp | 95 " Notes:\n" 139 TUD.Diagnostics.back().Notes.push_back( in TEST() 141 TUD.Diagnostics.back().Notes.push_back( in TEST() 210 EXPECT_EQ(2u, D3.Notes.size()); in TEST() 211 EXPECT_EQ("Note1", D3.Notes[0].Message); in TEST() 212 EXPECT_EQ(88u, D3.Notes[0].FileOffset); in TEST() 213 EXPECT_EQ("path/to/note1.cpp", D3.Notes[0].FilePath); in TEST() 214 EXPECT_EQ("Note2", D3.Notes[1].Message); in TEST() 215 EXPECT_EQ(99u, D3.Notes[1].FileOffset); in TEST() 216 EXPECT_EQ("path/to/note2.cpp", D3.Notes[ in TEST() [all...] |
/llvm-project/clang/lib/Tooling/Core/ |
H A D | Diagnostic.cpp | 55 const SmallVector<DiagnosticMessage, 1> &Notes, in Diagnostic() argument 57 : DiagnosticName(DiagnosticName), Message(Message), Notes(Notes), in Diagnostic() 63 auto Iter = llvm::find_if(D.Notes, [](const tooling::DiagnosticMessage &D) { in selectFirstFix() 66 if (Iter != D.Notes.end()) in selectFirstFix()
|
/llvm-project/clang/include/clang/Tooling/ |
H A D | DiagnosticsYaml.h | 69 : DiagnosticName(D.DiagnosticName), Message(D.Message), Notes(D.Notes), in LLVM_YAML_IS_SEQUENCE_VECTOR() 73 return clang::tooling::Diagnostic(DiagnosticName, Message, Notes, in LLVM_YAML_IS_SEQUENCE_VECTOR() 79 SmallVector<clang::tooling::DiagnosticMessage, 1> Notes; in LLVM_YAML_IS_SEQUENCE_VECTOR() 89 Io.mapOptional("Notes", Keys->Notes); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/llvm-project/lldb/source/Plugins/Process/elf-core/ |
H A D | RegisterUtilities.cpp | 29 DataExtractor lldb_private::getRegset(llvm::ArrayRef<CoreNote> Notes, in getRegset() argument 37 Notes, [Type](const CoreNote &Note) { return Note.info.n_type == Type; }); in getRegset() 38 return Iter == Notes.end() ? DataExtractor() : DataExtractor(Iter->data); in getRegset()
|
/llvm-project/clang/include/clang/Frontend/ |
H A D | TextDiagnosticBuffer.h | 32 DiagList Errors, Warnings, Remarks, Notes; 50 const_iterator note_begin() const { return Notes.begin(); } in note_begin() 51 const_iterator note_end() const { return Notes.end(); } in note_end()
|
/llvm-project/clang/lib/Frontend/ |
H A D | TextDiagnosticBuffer.cpp | 34 All.emplace_back(Level, Notes.size()); in HandleDiagnostic() 35 Notes.emplace_back(Info.getLocation(), std::string(Buf)); in HandleDiagnostic() 60 Diag << Notes[I.second].second; in FlushDiagnostics()
|
/llvm-project/clang-tools-extra/clangd/ |
H A D | Diagnostics.cpp | 82 for (auto &N : D.Notes) { in mentionsMainFile() 150 for (const auto &N : D.Notes) { in getMainFileRange() 222 D.Notes.emplace(D.Notes.begin()); in tryMoveToMainFile() 223 Note &N = D.Notes.front(); in tryMoveToMainFile() 318 for (auto &Note : D.Notes) { in mainMessage() 420 if (!D.Notes.empty()) { in operator <<() 423 for (auto &Note : D.Notes) { in operator <<() 489 llvm::find_if(D.Notes, [](const Note &N) { return N.InsideMainFile; }); in toLSPDiags() 490 assert(It != D.Notes in toLSPDiags() [all...] |
/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | FuchsiaHandleChecker.cpp | 373 std::vector<std::function<std::string(BugReport & BR)>> Notes; in checkPostCall() local 382 Notes.push_back([RetSym, FuncDecl](BugReport &BR) -> std::string { in checkPostCall() 398 Notes.push_back([RetSym, FuncDecl](BugReport &BR) -> std::string { in checkPostCall() 432 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string { in checkPostCall() 446 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string { in checkPostCall() 460 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string { in checkPostCall() 484 if (!Notes.empty()) { in checkPostCall() 485 T = C.getNoteTag([this, Notes{std::move(Notes)}]( in checkPostCall() 492 for (auto &Note : Notes) { in checkPostCall()
|
/llvm-project/llvm/lib/Support/Unix/ |
H A D | Signals.inc | 567 ArrayRef<uint8_t> Notes( 570 while (Notes.size() > 12) { 571 uint32_t NameSize = *reinterpret_cast<const uint32_t *>(Notes.data()); 572 Notes = Notes.drop_front(4); 573 uint32_t DescSize = *reinterpret_cast<const uint32_t *>(Notes.data()); 574 Notes = Notes.drop_front(4); 575 uint32_t Type = *reinterpret_cast<const uint32_t *>(Notes.data()); 576 Notes [all...] |
/llvm-project/clang/include/clang/Tooling/Core/ |
H A D | Diagnostic.h | 81 const SmallVector<DiagnosticMessage, 1> &Notes, Level DiagLevel, 91 SmallVector<DiagnosticMessage, 1> Notes; member
|
/llvm-project/clang/test/APINotes/ |
H A D | broken_types.m | 7 // CHECK: <API Notes>:1:1: error: unknown type name 'not_a_type' 11 // CHECK: <API Notes>:1:7: error: unparsed tokens following type
|
/llvm-project/clang/tools/apinotes-test/ |
H A D | APINotesTest.cpp | 42 for (const std::string &Notes : APINotes) { in main() local 44 llvm::MemoryBuffer::getFileOrSTDIN(Notes); in main()
|
/llvm-project/llvm/test/tools/llvm-readobj/ELF/AArch64/ |
H A D | note-android-unknown.test | 15 # LLVM-NEXT: Notes [ 36 Notes:
|
/llvm-project/llvm/docs/ |
H A D | Atomics.rst | 159 Notes for frontends 169 Notes for optimizers 174 Notes for code generation 197 Notes for frontends 206 Notes for optimizers 216 Notes for code generation 236 Notes for frontends 243 Notes for optimizers 251 Notes for code generation 266 Notes for frontends [all …]
|
H A D | UserGuides.rst | 86 Notes on building and testing LLVM/Clang on ARM. 89 Notes on building LLVM/Clang with PGO. 92 Notes on cross-building and testing LLVM/Clang. 252 Notes on assembling a Windows Itanium environment. 255 Notes on cross-building and testing the compiler-rt builtins for Arm.
|
/llvm-project/clang-tools-extra/unittests/clang-tidy/ |
H A D | TransformerClangTidyCheckTest.cpp | 90 EXPECT_THAT(Errors[0].Notes, testing::IsEmpty()); in TEST() 136 EXPECT_EQ(Errors[0].Notes.size(), 1U); in TEST() 137 EXPECT_EQ(Errors[0].Notes[0].Message, "some note"); in TEST() 140 EXPECT_EQ(Errors[0].Notes[0].FileOffset, 10U); in TEST()
|