Home
last modified time | relevance | path

Searched refs:CXComment (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/llvm/clang/include/clang-c/
H A DDocumentation.h40 } CXComment; typedef
47 CINDEX_LINKAGE CXComment clang_Cursor_getParsedComment(CXCursor C);
218 CINDEX_LINKAGE enum CXCommentKind clang_Comment_getKind(CXComment Comment);
225 CINDEX_LINKAGE unsigned clang_Comment_getNumChildren(CXComment Comment);
235 CXComment clang_Comment_getChild(CXComment Comment, unsigned ChildIdx);
246 CINDEX_LINKAGE unsigned clang_Comment_isWhitespace(CXComment Comment);
254 unsigned clang_InlineContentComment_hasTrailingNewline(CXComment Comment);
261 CINDEX_LINKAGE CXString clang_TextComment_getText(CXComment Comment);
269 CXString clang_InlineCommandComment_getCommandName(CXComment Comment);
278 clang_InlineCommandComment_getRenderKind(CXComment Comment);
[all …]
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCXComment.cpp28 CXComment clang_Cursor_getParsedComment(CXCursor C) { in clang_Cursor_getParsedComment()
41 enum CXCommentKind clang_Comment_getKind(CXComment CXC) { in clang_Comment_getKind()
89 unsigned clang_Comment_getNumChildren(CXComment CXC) { in clang_Comment_getNumChildren()
97 CXComment clang_Comment_getChild(CXComment CXC, unsigned ChildIdx) { in clang_Comment_getChild()
105 unsigned clang_Comment_isWhitespace(CXComment CXC) { in clang_Comment_isWhitespace()
119 unsigned clang_InlineContentComment_hasTrailingNewline(CXComment CXC) { in clang_InlineContentComment_hasTrailingNewline()
127 CXString clang_TextComment_getText(CXComment CXC) { in clang_TextComment_getText()
135 CXString clang_InlineCommandComment_getCommandName(CXComment CXC) { in clang_InlineCommandComment_getCommandName()
145 clang_InlineCommandComment_getRenderKind(CXComment CXC) { in clang_InlineCommandComment_getRenderKind()
169 unsigned clang_InlineCommandComment_getNumArgs(CXComment CXC) { in clang_InlineCommandComment_getNumArgs()
[all …]
H A DCXComment.h30 static inline CXComment createCXComment(const comments::Comment *C, in createCXComment()
32 CXComment Result; in createCXComment()
38 static inline const comments::Comment *getASTNode(CXComment CXC) { in getASTNode()
43 static inline const T *getASTNodeAs(CXComment CXC) { in getASTNodeAs()
51 static inline ASTContext &getASTContext(CXComment CXC) { in getASTContext()
55 static inline comments::CommandTraits &getCommandTraits(CXComment CXC) { in getCommandTraits()
H A DCMakeLists.txt33 CXComment.cpp
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/clang/tools/libclang/
H A DBUILD.gn75 "CXComment.cpp",
/openbsd-src/gnu/llvm/clang/tools/c-index-test/
H A Dc-index-test.c462 CXComment Comment) { in DumpCXCommentInternal()
639 static void DumpCXComment(CXComment Comment) { in DumpCXComment()
714 CXComment Comment = clang_Cursor_getParsedComment(Cursor); in PrintCursorComments()