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()
1115 InlineCommandComment::RenderKind
1119 return llvm::StringSwitch<InlineCommandComment::RenderKind>(Name) in getInlineCommandRenderKind()
1120 .Case("b", InlineCommandComment::RenderBold) in getInlineCommandRenderKind()
1121 .Cases("c", "p", InlineCommandComment::RenderMonospaced) in getInlineCommandRenderKind()
1122 .Cases("a", "e", "em", InlineCommandComment::RenderEmphasized) in getInlineCommandRenderKind()
1123 .Default(InlineCommandComment::RenderNormal); in getInlineCommandRenderKind()