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()
1085 InlineCommandComment::RenderKind
1089 return llvm::StringSwitch<InlineCommandComment::RenderKind>(Name) in getInlineCommandRenderKind()
1090 .Case("b", InlineCommandComment::RenderBold) in getInlineCommandRenderKind()
1091 .Cases("c", "p", InlineCommandComment::RenderMonospaced) in getInlineCommandRenderKind()
1092 .Cases("a", "e", "em", InlineCommandComment::RenderEmphasized) in getInlineCommandRenderKind()
1093 .Default(InlineCommandComment::RenderNormal); in getInlineCommandRenderKind()