| /llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | Checkers.td | 222 Documentation<NotDocumented>, 232 Documentation<NotDocumented>, 237 Documentation<NotDocumented>, 300 Documentation<NotDocumented>, 318 Documentation<NotDocumented>, 348 Documentation<NotDocumented>; 360 Documentation<NotDocumented>; 382 Documentation<NotDocumented>, 388 Documentation<NotDocumented>; 393 Documentation<NotDocumented>; [all …]
|
| H A D | CheckerBase.td | 90 bits<1> Documentation = val; 95 class Documentation<DocumentationEnum val> { 96 bits<1> Documentation = val.Documentation; 116 bits<1> Documentation;
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | Attr.td | 44 class Documentation { 62 def InternalOnly : Documentation { 68 def Undocumented : Documentation { 581 list<Documentation> Documentation; 759 let Documentation = [XRayDocs]; 773 let Documentation = [XRayDocs]; 1573 let Documentation = [LeafDocs]; 2339 let Documentation = [PcsDocs]; 2884 let Documentation = [UsedDocs]; 2987 let Documentation = [WeakDocs]; [all …]
|
| H A D | DiagnosticCommentKinds.td | 10 let CategoryName = "Documentation Issue" in { 17 InGroup<Documentation>, DefaultIgnore; 21 InGroup<Documentation>, DefaultIgnore; 51 InGroup<Documentation>, DefaultIgnore; 55 InGroup<Documentation>, DefaultIgnore; 68 InGroup<Documentation>, DefaultIgnore; 77 InGroup<Documentation>, DefaultIgnore; 84 InGroup<Documentation>, DefaultIgnore; 90 InGroup<Documentation>, DefaultIgnore; 96 InGroup<Documentation>, DefaultIgnore; [all …]
|
| H A D | AttrDocs.td | 51 def SectionDocs : Documentation { 60 def UsedDocs : Documentation { 85 def RetainDocs : Documentation { 135 def InitSegDocs : Documentation { 151 def TLSModelDocs : Documentation { 198 def ThreadDocs : Documentation { 215 def NoEscapeDocs : Documentation { 2524 def PcsDocs : Documentation { 3796 def SPtrDocs : Documentation { 3804 def UPtrDocs : Documentation { [all …]
|
| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | annotate-comments-typedef.m | 11 /** Documentation for NSUInteger */ 14 /** Documentation for MyEnum */ 20 …Documentation for MyEnum </p>] FullCommentAsXML=[<Typedef file="{{[^"]+}}annotate-comments-typedef… 23 /** Documentation for E */ 30 …Documentation for E] FullCommentAsHTML=[<p class="para-brief"> Documentation for E </p>] FullComme… 31 …Documentation for E </p>] FullCommentAsXML=[<Typedef file="{{[^"]+}}annotate-comments-typedef.m" l…
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/unittests/ |
| H A D | HoverTests.cpp | 46 HI.Documentation = "Best foo ever."; in TEST() 63 HI.Documentation = "Best foo ever."; in TEST() 1071 EXPECT_EQ(H->Documentation, Expected.Documentation); in TEST() 1515 HI.Documentation = "Typedef"; in TEST() 2119 HI.Documentation = in TEST() 2626 EXPECT_EQ(H->Documentation, Expected.Documentation); in TEST() 2659 EXPECT_EQ(H->Documentation, IndexSym.Documentation); in TEST() 2684 EXPECT_EQ(H->Documentation, "doc"); in TEST() 2722 EXPECT_EQ(H->Documentation, Comment); in TEST() 3012 llvm::StringRef Documentation; in TEST() member [all …]
|
| H A D | IndexTests.cpp | 394 R.Documentation = "--doc--"; in TEST() 405 EXPECT_EQ(M.Documentation, "--doc--"); in TEST() 549 R.Documentation = "Forward declarations because x.h is too big to include"; in TEST() 553 EXPECT_EQ(mergeSymbol(L, R).Documentation, ""); in TEST() 557 R.Documentation = "Documentation from non-class symbols should be included"; in TEST() 558 EXPECT_EQ(mergeSymbol(L, R).Documentation, R.Documentation); in TEST()
|
| /llvm-project-15.0.7/clang/utils/TableGen/ |
| H A D | ClangOptionDocEmitter.cpp | 31 struct Documentation { struct 35 struct DocumentedGroup : Documentation { 40 Documentation extractDocumentation(RecordKeeper &Records) { in extractDocumentation() 41 Documentation Result; in extractDocumentation() 116 std::function<Documentation(Record *)> DocumentationForGroup = in extractDocumentation() 117 [&](Record *R) -> Documentation { in extractDocumentation() 118 Documentation D; in extractDocumentation() 125 Documentation &Base = D.Groups.back(); in extractDocumentation() 399 void emitDocumentation(int Depth, const Documentation &Doc, 423 void emitDocumentation(int Depth, const Documentation &Doc, in emitDocumentation()
|
| /llvm-project-15.0.7/clang-tools-extra/docs/ |
| H A D | clang-doc.rst | 88 =yaml - Documentation in YAML format. 89 =md - Documentation in MD format. 90 =html - Documentation in HTML format.
|
| H A D | README.txt | 2 Documentation in clang-tools-extra
|
| H A D | index.rst | 27 Doxygen Documentation
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/index/ |
| H A D | Merge.cpp | 230 if (S.Documentation == "") { in mergeSymbol() 239 S.Documentation = O.Documentation; in mergeSymbol()
|
| H A D | Symbol.h | 76 llvm::StringRef Documentation; member 153 CB(S.Documentation); in visitStrings()
|
| H A D | SymbolCollector.cpp | 915 std::string Documentation = in addDeclaration() local 920 S.Documentation = Documentation; in addDeclaration() 924 S.Documentation = Documentation; in addDeclaration()
|
| /llvm-project-15.0.7/lld/docs/ |
| H A D | README.txt | 1 lld Documentation
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | Hover.cpp | 320 if (!Hover.Documentation.empty() || !Index) in enhanceFromIndex() 335 Hover.Documentation = std::string(S.Documentation); in enhanceFromIndex() 593 HI.Documentation = getDeclComment(Ctx, *CommentD); in getHoverContents() 595 if (HI.Documentation.empty()) in getHoverContents() 596 HI.Documentation = synthesizeDocumentation(D); in getHoverContents() 723 HI.Documentation = getDeclComment(ASTCtx, *CommentD); in getDeducedTypeHoverContents() 788 HI.Documentation = Attr::getDocumentation(A->getKind()).str(); in getHoverContents() 1152 if (!Documentation.empty()) in present() 1153 parseDocumentation(Documentation, Output); in present()
|
| H A D | Hover.h | 71 std::string Documentation; member
|
| H A D | CodeComplete.h | 174 llvm::Optional<markup::Document> Documentation; member
|
| /llvm-project-15.0.7/libc/docs/ |
| H A D | README.txt | 1 libc Documentation
|
| /llvm-project-15.0.7/libunwind/docs/ |
| H A D | README.txt | 1 libunwind Documentation
|
| /llvm-project-15.0.7/libcxx/docs/ |
| H A D | README.txt | 1 libc++ Documentation
|
| /llvm-project-15.0.7/flang/ |
| H A D | README.md | 263 # How to Generate Documentation 265 ## Generate FIR Documentation 270 ## Generate Doxygen-based Documentation 285 ## Generate Sphinx-based Documentation
|
| /llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/ELFRelocs/ |
| H A D | LoongArch.def | 6 // https://github.com/loongson/LoongArch-Documentation
|
| /llvm-project-15.0.7/libcxx/docs/DesignDocs/ |
| H A D | FeatureTestMacros.rst | 33 * Documentation of libc++'s implementation of each macro.
|