Searched refs:LocBegin (Results 1 – 3 of 3) sorted by relevance
/external/clang/include/clang/AST/ |
D | Comment.h | 160 SourceLocation LocBegin, in Comment() argument 162 Loc(LocBegin), Range(SourceRange(LocBegin, LocEnd)) { in Comment() 208 SourceLocation LocBegin, in InlineContentComment() argument 210 Comment(K, LocBegin, LocEnd) { in InlineContentComment() 236 TextComment(SourceLocation LocBegin, in TextComment() argument 239 InlineContentComment(TextCommentKind, LocBegin, LocEnd), in TextComment() 293 InlineCommandComment(SourceLocation LocBegin, in InlineCommandComment() argument 298 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), in InlineCommandComment() 353 SourceLocation LocBegin, in HTMLTagComment() argument 358 InlineContentComment(K, LocBegin, LocEnd), in HTMLTagComment() [all …]
|
D | CommentSema.h | 90 BlockCommandComment *actOnBlockCommandStart(SourceLocation LocBegin, 100 ParamCommandComment *actOnParamCommandStart(SourceLocation LocBegin, 117 TParamCommandComment *actOnTParamCommandStart(SourceLocation LocBegin, 140 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin, 144 TextComment *actOnText(SourceLocation LocBegin, 159 VerbatimLineComment *actOnVerbatimLine(SourceLocation LocBegin, 164 HTMLStartTagComment *actOnHTMLStartTagStart(SourceLocation LocBegin, 172 HTMLEndTagComment *actOnHTMLEndTag(SourceLocation LocBegin,
|
/external/clang/lib/AST/ |
D | CommentSema.cpp | 45 BlockCommandComment *Sema::actOnBlockCommandStart(SourceLocation LocBegin, in actOnBlockCommandStart() argument 48 return new (Allocator) BlockCommandComment(LocBegin, LocEnd, CommandID); in actOnBlockCommandStart() 64 ParamCommandComment *Sema::actOnParamCommandStart(SourceLocation LocBegin, in actOnParamCommandStart() argument 68 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID); in actOnParamCommandStart() 157 TParamCommandComment *Sema::actOnTParamCommandStart(SourceLocation LocBegin, in actOnTParamCommandStart() argument 161 new (Allocator) TParamCommandComment(LocBegin, LocEnd, CommandID); in actOnTParamCommandStart() 273 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand() argument 279 LocBegin, LocEnd, CommandID, in actOnUnknownCommand() 284 TextComment *Sema::actOnText(SourceLocation LocBegin, in actOnText() argument 287 return new (Allocator) TextComment(LocBegin, LocEnd, Text); in actOnText() [all …]
|