Lines Matching refs:InlineCommandComment
366 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin, in actOnInlineCommand()
369 ArrayRef<InlineCommandComment::Argument> Args; in actOnInlineCommand()
371 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
379 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin, in actOnInlineCommand()
385 typedef InlineCommandComment::Argument Argument; in actOnInlineCommand()
391 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
409 ArrayRef<InlineCommandComment::Argument> Args; in actOnUnknownCommand()
410 return new (Allocator) InlineCommandComment( in actOnUnknownCommand()
412 InlineCommandComment::RenderNormal, in actOnUnknownCommand()
1176 InlineCommandComment::RenderKind
1180 return llvm::StringSwitch<InlineCommandComment::RenderKind>(Name) in getInlineCommandRenderKind()
1181 .Case("b", InlineCommandComment::RenderBold) in getInlineCommandRenderKind()
1182 .Cases("c", "p", InlineCommandComment::RenderMonospaced) in getInlineCommandRenderKind()
1183 .Cases("a", "e", "em", InlineCommandComment::RenderEmphasized) in getInlineCommandRenderKind()
1184 .Case("anchor", InlineCommandComment::RenderAnchor) in getInlineCommandRenderKind()
1185 .Default(InlineCommandComment::RenderNormal); in getInlineCommandRenderKind()