Home | History | Annotate | Download | only in AST

Lines Matching refs:InlineCommandComment

369 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin,
372 ArrayRef<InlineCommandComment::Argument> Args;
374 return new (Allocator) InlineCommandComment(
382 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin,
388 typedef InlineCommandComment::Argument Argument;
394 return new (Allocator) InlineCommandComment(
412 ArrayRef<InlineCommandComment::Argument> Args;
413 return new (Allocator) InlineCommandComment(
415 InlineCommandComment::RenderNormal,
1033 InlineCommandComment::RenderKind
1037 return llvm::StringSwitch<InlineCommandComment::RenderKind>(Name)
1038 .Case("b", InlineCommandComment::RenderBold)
1039 .Cases("c", "p", InlineCommandComment::RenderMonospaced)
1040 .Cases("a", "e", "em", InlineCommandComment::RenderEmphasized)
1041 .Default(InlineCommandComment::RenderNormal);