Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DComment.h227 SourceLocation LocBegin,
229 Loc(LocBegin), Range(SourceRange(LocBegin, LocEnd)) {
268 SourceLocation LocBegin,
270 Comment(K, LocBegin, LocEnd) {
397 SourceLocation LocBegin,
402 InlineContentComment(K, LocBegin, LocEnd),
541 SourceLocation LocBegin,
543 Comment(K, LocBegin, LocEnd)
613 SourceLocation LocBegin,
617 BlockContentComment(K, LocBegin, LocEnd),
[all …]
H A DCommentSema.h89 BlockCommandComment *actOnBlockCommandStart(SourceLocation LocBegin,
100 ParamCommandComment *actOnParamCommandStart(SourceLocation LocBegin,
118 TParamCommandComment *actOnTParamCommandStart(SourceLocation LocBegin,
136 InlineContentComment *actOnUnknownCommand(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,
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.cpp51 SourceLocation LocBegin, in actOnBlockCommandStart() argument
81 SourceLocation LocBegin, in actOnParamCommandStart() argument
86 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID, in actOnParamCommandStart()
281 SourceLocation LocBegin, in actOnTParamCommandStart() argument
376 return actOnUnknownCommand(LocBegin, LocEnd, CommandID); in actOnUnknownCommand()
387 TextComment *Sema::actOnText(SourceLocation LocBegin, in actOnText() argument
390 return new (Allocator) TextComment(LocBegin, LocEnd, Text); in actOnText()
421 LocBegin, in actOnVerbatimLine()
433 return new (Allocator) HTMLStartTagComment(LocBegin, TagName); in actOnHTMLStartTagStart()
449 HTMLEndTagComment *Sema::actOnHTMLEndTag(SourceLocation LocBegin, in actOnHTMLEndTag() argument
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp278 size_t LocBegin; in getFunctionLineEntries() local
280 std::tie(LocBegin, LocEnd) = getLineExtentIncludingInlinees(FuncId); in getFunctionLineEntries()
281 if (LocBegin >= LocEnd) { in getFunctionLineEntries()
286 for (size_t Idx = LocBegin; Idx != LocEnd; ++Idx) { in getFunctionLineEntries()
324 size_t LocBegin; in getLineExtentIncludingInlinees() local
326 std::tie(LocBegin, LocEnd) = getLineExtent(FuncId); in getLineExtentIncludingInlinees()
334 LocBegin = std::min(LocBegin, Extent.first); in getLineExtentIncludingInlinees()
339 return {LocBegin, LocEnd}; in getLineExtentIncludingInlinees()
487 size_t LocBegin; in encodeInlineLineTable() local
491 if (LocBegin >= LocEnd) in encodeInlineLineTable()
[all …]