Home
last modified time | relevance | path

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

/external/clang/include/clang-c/
DDocumentation.h40 } CXComment; typedef
47 CINDEX_LINKAGE CXComment clang_Cursor_getParsedComment(CXCursor C);
213 CINDEX_LINKAGE enum CXCommentKind clang_Comment_getKind(CXComment Comment);
220 CINDEX_LINKAGE unsigned clang_Comment_getNumChildren(CXComment Comment);
230 CXComment clang_Comment_getChild(CXComment Comment, unsigned ChildIdx);
241 CINDEX_LINKAGE unsigned clang_Comment_isWhitespace(CXComment Comment);
249 unsigned clang_InlineContentComment_hasTrailingNewline(CXComment Comment);
256 CINDEX_LINKAGE CXString clang_TextComment_getText(CXComment Comment);
264 CXString clang_InlineCommandComment_getCommandName(CXComment Comment);
273 clang_InlineCommandComment_getRenderKind(CXComment Comment);
[all …]
/external/clang/tools/libclang/
DCXComment.cpp32 CXComment clang_Cursor_getParsedComment(CXCursor C) { in clang_Cursor_getParsedComment()
45 enum CXCommentKind clang_Comment_getKind(CXComment CXC) { in clang_Comment_getKind()
93 unsigned clang_Comment_getNumChildren(CXComment CXC) { in clang_Comment_getNumChildren()
101 CXComment clang_Comment_getChild(CXComment CXC, unsigned ChildIdx) { in clang_Comment_getChild()
109 unsigned clang_Comment_isWhitespace(CXComment CXC) { in clang_Comment_isWhitespace()
123 unsigned clang_InlineContentComment_hasTrailingNewline(CXComment CXC) { in clang_InlineContentComment_hasTrailingNewline()
131 CXString clang_TextComment_getText(CXComment CXC) { in clang_TextComment_getText()
139 CXString clang_InlineCommandComment_getCommandName(CXComment CXC) { in clang_InlineCommandComment_getCommandName()
149 clang_InlineCommandComment_getRenderKind(CXComment CXC) { in clang_InlineCommandComment_getRenderKind()
170 unsigned clang_InlineCommandComment_getNumArgs(CXComment CXC) { in clang_InlineCommandComment_getNumArgs()
[all …]
DCXComment.h31 static inline CXComment createCXComment(const comments::Comment *C, in createCXComment()
33 CXComment Result; in createCXComment()
39 static inline const comments::Comment *getASTNode(CXComment CXC) { in getASTNode()
44 static inline const T *getASTNodeAs(CXComment CXC) { in getASTNodeAs()
52 static inline ASTContext &getASTContext(CXComment CXC) { in getASTContext()
56 static inline comments::CommandTraits &getCommandTraits(CXComment CXC) { in getCommandTraits()
DCMakeLists.txt12 CXComment.cpp
/external/clang/tools/c-index-test/
Dc-index-test.c380 CXComment Comment) { in DumpCXCommentInternal()
554 static void DumpCXComment(CXComment Comment) { in DumpCXComment()
629 CXComment Comment = clang_Cursor_getParsedComment(Cursor); in PrintCursorComments()