Home
last modified time | relevance | path

Searched refs:LocBegin (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DComment.h198 SourceLocation LocBegin, in Comment() argument
200 Loc(LocBegin), Range(SourceRange(LocBegin, LocEnd)) { in Comment()
239 SourceLocation LocBegin, in InlineContentComment() argument
241 Comment(K, LocBegin, LocEnd) { in InlineContentComment()
265 TextComment(SourceLocation LocBegin, in TextComment() argument
268 InlineContentComment(TextCommentKind, LocBegin, LocEnd), in TextComment()
321 InlineCommandComment(SourceLocation LocBegin, in InlineCommandComment() argument
326 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), in InlineCommandComment()
377 SourceLocation LocBegin, in HTMLTagComment() argument
382 InlineContentComment(K, LocBegin, LocEnd), in HTMLTagComment()
[all …]
H A DCommentSema.h89 BlockCommandComment *actOnBlockCommandStart(SourceLocation LocBegin,
100 ParamCommandComment *actOnParamCommandStart(SourceLocation LocBegin,
118 TParamCommandComment *actOnTParamCommandStart(SourceLocation LocBegin,
142 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
146 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
150 TextComment *actOnText(SourceLocation LocBegin,
165 VerbatimLineComment *actOnVerbatimLine(SourceLocation LocBegin,
170 HTMLStartTagComment *actOnHTMLStartTagStart(SourceLocation LocBegin,
178 HTMLEndTagComment *actOnHTMLEndTag(SourceLocation LocBegin,
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DCommentSema.cpp51 SourceLocation LocBegin, in actOnBlockCommandStart() argument
55 BlockCommandComment *BC = new (Allocator) BlockCommandComment(LocBegin, LocEnd, in actOnBlockCommandStart()
81 SourceLocation LocBegin, in actOnParamCommandStart() argument
86 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID, in actOnParamCommandStart()
284 SourceLocation LocBegin, in actOnTParamCommandStart() argument
289 new (Allocator) TParamCommandComment(LocBegin, LocEnd, CommandID, in actOnTParamCommandStart()
399 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand() argument
403 return actOnUnknownCommand(LocBegin, LocEnd, CommandID); in actOnUnknownCommand()
406 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand() argument
411 LocBegin, LocEnd, CommandID, in actOnUnknownCommand()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCCodeView.cpp463 size_t LocBegin; in encodeInlineLineTable() local
465 std::tie(LocBegin, LocEnd) = getLineExtent(Frag.SiteFuncId); in encodeInlineLineTable()
472 LocBegin = std::min(LocBegin, Extent.first); in encodeInlineLineTable()
476 if (LocBegin >= LocEnd) in encodeInlineLineTable()
478 ArrayRef<MCCVLoc> Locs = getLinesForExtent(LocBegin, LocEnd); in encodeInlineLineTable()