Lines Matching refs:InlineCommandComment
364 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin, in actOnInlineCommand()
367 ArrayRef<InlineCommandComment::Argument> Args; in actOnInlineCommand()
369 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
377 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin, in actOnInlineCommand()
383 typedef InlineCommandComment::Argument Argument; in actOnInlineCommand()
389 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
407 ArrayRef<InlineCommandComment::Argument> Args; in actOnUnknownCommand()
408 return new (Allocator) InlineCommandComment( in actOnUnknownCommand()
410 InlineCommandComment::RenderNormal, in actOnUnknownCommand()
1083 InlineCommandComment::RenderKind
1087 return llvm::StringSwitch<InlineCommandComment::RenderKind>(Name) in getInlineCommandRenderKind()
1088 .Case("b", InlineCommandComment::RenderBold) in getInlineCommandRenderKind()
1089 .Cases("c", "p", InlineCommandComment::RenderMonospaced) in getInlineCommandRenderKind()
1090 .Cases("a", "e", "em", InlineCommandComment::RenderEmphasized) in getInlineCommandRenderKind()
1091 .Default(InlineCommandComment::RenderNormal); in getInlineCommandRenderKind()