Searched refs:InlineCommandRenderKind (Results 1 – 6 of 6) sorted by relevance
| /src/contrib/llvm-project/clang/lib/Index/ |
| H A D | CommentToXML.cpp | 278 case InlineCommandRenderKind::Normal: in visitInlineCommandComment() 285 case InlineCommandRenderKind::Bold: in visitInlineCommandComment() 291 case InlineCommandRenderKind::Monospaced: in visitInlineCommandComment() 297 case InlineCommandRenderKind::Emphasized: in visitInlineCommandComment() 303 case InlineCommandRenderKind::Anchor: in visitInlineCommandComment() 628 case InlineCommandRenderKind::Normal: in visitInlineCommandComment() 634 case InlineCommandRenderKind::Bold: in visitInlineCommandComment() 640 case InlineCommandRenderKind::Monospaced: in visitInlineCommandComment() 646 case InlineCommandRenderKind::Emphasized: in visitInlineCommandComment() 652 case InlineCommandRenderKind::Anchor: in visitInlineCommandComment()
|
| /src/contrib/llvm-project/clang/lib/AST/ |
| H A D | CommentSema.cpp | 384 LocBegin, LocEnd, CommandID, InlineCommandRenderKind::Normal, Args); in actOnUnknownCommand() 1110 InlineCommandRenderKind Sema::getInlineCommandRenderKind(StringRef Name) const { in getInlineCommandRenderKind() 1113 return llvm::StringSwitch<InlineCommandRenderKind>(Name) in getInlineCommandRenderKind() 1114 .Case("b", InlineCommandRenderKind::Bold) in getInlineCommandRenderKind() 1115 .Cases("c", "p", InlineCommandRenderKind::Monospaced) in getInlineCommandRenderKind() 1116 .Cases("a", "e", "em", InlineCommandRenderKind::Emphasized) in getInlineCommandRenderKind() 1117 .Case("anchor", InlineCommandRenderKind::Anchor) in getInlineCommandRenderKind() 1118 .Default(InlineCommandRenderKind::Normal); in getInlineCommandRenderKind()
|
| H A D | JSONNodeDumper.cpp | 1732 case comments::InlineCommandRenderKind::Normal: in visitInlineCommandComment() 1735 case comments::InlineCommandRenderKind::Bold: in visitInlineCommandComment() 1738 case comments::InlineCommandRenderKind::Emphasized: in visitInlineCommandComment() 1741 case comments::InlineCommandRenderKind::Monospaced: in visitInlineCommandComment() 1744 case comments::InlineCommandRenderKind::Anchor: in visitInlineCommandComment()
|
| H A D | TextNodeDumper.cpp | 1002 case comments::InlineCommandRenderKind::Normal: in visitInlineCommandComment() 1005 case comments::InlineCommandRenderKind::Bold: in visitInlineCommandComment() 1008 case comments::InlineCommandRenderKind::Monospaced: in visitInlineCommandComment() 1011 case comments::InlineCommandRenderKind::Emphasized: in visitInlineCommandComment() 1014 case comments::InlineCommandRenderKind::Anchor: in visitInlineCommandComment()
|
| /src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Comment.h | 30 enum class InlineCommandRenderKind; variable 117 LLVM_PREFERRED_TYPE(InlineCommandRenderKind) 326 enum class InlineCommandRenderKind { 342 unsigned CommandID, InlineCommandRenderKind RK, 371 InlineCommandRenderKind getRenderKind() const { 372 return static_cast<InlineCommandRenderKind>(
|
| H A D | CommentSema.h | 247 InlineCommandRenderKind getInlineCommandRenderKind(StringRef Name) const;
|