Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp277 case InlineCommandRenderKind::Normal: in visitInlineCommandComment()
284 case InlineCommandRenderKind::Bold: in visitInlineCommandComment()
290 case InlineCommandRenderKind::Monospaced: in visitInlineCommandComment()
296 case InlineCommandRenderKind::Emphasized: in visitInlineCommandComment()
302 case InlineCommandRenderKind::Anchor: in visitInlineCommandComment()
626 case InlineCommandRenderKind::Normal: in visitInlineCommandComment()
632 case InlineCommandRenderKind::Bold: in visitInlineCommandComment()
638 case InlineCommandRenderKind::Monospaced: in visitInlineCommandComment()
644 case InlineCommandRenderKind::Emphasized: in visitInlineCommandComment()
650 case InlineCommandRenderKind::Anchor: in visitInlineCommandComment()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.cpp384 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 DJSONNodeDumper.cpp1689 case comments::InlineCommandRenderKind::Normal: in visitInlineCommandComment()
1692 case comments::InlineCommandRenderKind::Bold: in visitInlineCommandComment()
1695 case comments::InlineCommandRenderKind::Emphasized: in visitInlineCommandComment()
1698 case comments::InlineCommandRenderKind::Monospaced: in visitInlineCommandComment()
1701 case comments::InlineCommandRenderKind::Anchor: in visitInlineCommandComment()
H A DTextNodeDumper.cpp865 case comments::InlineCommandRenderKind::Normal: in visitInlineCommandComment()
868 case comments::InlineCommandRenderKind::Bold: in visitInlineCommandComment()
871 case comments::InlineCommandRenderKind::Monospaced: in visitInlineCommandComment()
874 case comments::InlineCommandRenderKind::Emphasized: in visitInlineCommandComment()
877 case comments::InlineCommandRenderKind::Anchor: in visitInlineCommandComment()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DComment.h30 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 DCommentSema.h247 InlineCommandRenderKind getInlineCommandRenderKind(StringRef Name) const;