Searched refs:LocEnd (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DCommentSema.h90 SourceLocation LocEnd,
101 SourceLocation LocEnd,
119 SourceLocation LocEnd,
143 SourceLocation LocEnd,
147 SourceLocation LocEnd,
151 SourceLocation LocEnd,
179 SourceLocation LocEnd,
H A DComment.h199 SourceLocation LocEnd) :
200 Loc(LocBegin), Range(SourceRange(LocBegin, LocEnd)) {
242 SourceLocation LocEnd) :
243 Comment(K, LocBegin, LocEnd) {
268 SourceLocation LocEnd,
270 InlineContentComment(TextCommentKind, LocBegin, LocEnd),
324 SourceLocation LocEnd,
328 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd),
380 SourceLocation LocEnd,
384 InlineContentComment(K, LocBegin, LocEnd),
197 Comment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd) argument
240 InlineContentComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd) argument
267 TextComment(SourceLocation LocBegin, SourceLocation LocEnd, StringRef Text) argument
323 InlineCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, RenderKind RK, ArrayRef<Argument> Args) argument
378 HTMLTagComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd, StringRef TagName, SourceLocation TagNameBegin, SourceLocation TagNameEnd) argument
511 HTMLEndTagComment(SourceLocation LocBegin, SourceLocation LocEnd, StringRef TagName) argument
534 BlockContentComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd) argument
615 BlockCommandComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
628 BlockCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
724 ParamCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
818 TParamCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
900 VerbatimBlockComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID) argument
951 VerbatimLineComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, SourceLocation TextBegin, StringRef Text) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.cpp51 SourceLocation LocEnd,
54 BlockCommandComment *BC = new (Allocator) BlockCommandComment(LocBegin, LocEnd,
81 SourceLocation LocEnd,
85 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID,
282 SourceLocation LocEnd,
286 new (Allocator) TParamCommandComment(LocBegin, LocEnd, CommandID,
397 SourceLocation LocEnd,
400 return actOnUnknownCommand(LocBegin, LocEnd, CommandID);
404 SourceLocation LocEnd,
408 LocBegin, LocEnd, CommandI
49 actOnBlockCommandStart( SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
79 actOnParamCommandStart( SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
280 actOnTParamCommandStart( SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
396 actOnUnknownCommand(SourceLocation LocBegin, SourceLocation LocEnd, StringRef CommandName) argument
403 actOnUnknownCommand(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID) argument
413 actOnText(SourceLocation LocBegin, SourceLocation LocEnd, StringRef Text) argument
475 actOnHTMLEndTag(SourceLocation LocBegin, SourceLocation LocEnd, StringRef TagName) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp45 Optional<SourceLocation> LocEnd; member in class:__anon436::SourceMappingRegion
56 Optional<SourceLocation> LocEnd, bool DeferRegion = false,
58 : Count(Count), LocStart(LocStart), LocEnd(LocEnd),
74 bool hasEndLoc() const { return LocEnd.hasValue(); }
78 LocEnd = Loc;
82 assert(LocEnd && "Region has no end location");
83 return *LocEnd;
110 SourceLocation LocEnd) {
113 LineEnd = SM.getSpellingLineNumber(LocEnd);
55 SourceMappingRegion(Counter Count, Optional<SourceLocation> LocStart, Optional<SourceLocation> LocEnd, bool DeferRegion = false, bool GapRegion = false) argument
109 SpellingRegion(SourceManager &SM, SourceLocation LocStart, SourceLocation LocEnd) argument
289 auto LocEnd = I.getEnd(); local
325 SourceLocation LocEnd = Region.getEndLoc(); local
367 SourceLocation LocEnd = getPreciseTokenLocEnd(ParentLoc); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp464 size_t LocEnd;
465 std::tie(LocBegin, LocEnd) = getLineExtent(Frag.SiteFuncId);
473 LocEnd = std::max(LocEnd, Extent.second);
476 if (LocBegin >= LocEnd)
478 ArrayRef<MCCVLoc> Locs = getLinesForExtent(LocBegin, LocEnd);
596 ArrayRef<MCCVLoc> LocAfter = getLinesForExtent(LocEnd, LocEnd + 1);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp950 SourceLocation LocEnd = Method->getEndLoc(); local
952 if (SM->getExpansionLineNumber(LocEnd) >
955 ReplaceText(LocEnd, 1, ";\n#endif\n");
1001 SourceLocation LocEnd = PDecl->getAtEndRange().getBegin(); local
1002 ReplaceText(LocEnd, strlen("@end"), "/* @end */");
1006 const char *endBuf = SM->getCharacterData(LocEnd);
1178 SourceLocation LocEnd = OMD->getCompoundBody()->getBeginLoc(); local
1181 const char *endBuf = SM->getCharacterData(LocEnd);
1191 SourceLocation LocEnd = OMD->getCompoundBody()->getBeginLoc(); local
1194 const char *endBuf = SM->getCharacterData(LocEnd);
3102 SourceLocation LocEnd = CDecl->getEndOfDefinitionLoc(); local
3890 SourceLocation LocEnd = CE->getRParenLoc(); local
[all...]
H A DRewriteModernObjC.cpp1109 SourceLocation LocEnd = Method->getEndLoc(); local
1111 if (SM->getExpansionLineNumber(LocEnd) >
1114 ReplaceText(LocEnd, 1, ";\n#endif\n");
1167 SourceLocation LocEnd = PDecl->getAtEndRange().getBegin(); local
1168 ReplaceText(LocEnd, strlen("@end"), "/* @end */\n");
1172 const char *endBuf = SM->getCharacterData(LocEnd);
1354 SourceLocation LocEnd = OMD->getCompoundBody()->getBeginLoc(); local
1357 const char *endBuf = SM->getCharacterData(LocEnd);
1367 SourceLocation LocEnd = OMD->getCompoundBody()->getBeginLoc(); local
1370 const char *endBuf = SM->getCharacterData(LocEnd);
3890 SourceLocation LocEnd = CDecl->getEndOfDefinitionLoc(); local
4719 SourceLocation LocEnd = CE->getRParenLoc(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp2381 Comps.back().LocStart = Comps.back().LocEnd = ConsumeToken();
2397 Comps.back().LocEnd = ConsumeToken();
2417 Comps.back().LocEnd = ST.getCloseLocation();
H A DParseExprCXX.cpp1131 SourceLocation LocEnd = PrevTokLocation;
1134 InitCaptureType, SourceRange(LocStart, LocEnd));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp14018 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
14038 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd));
14047 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd));
14060 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
14080 << SourceRange(Components[0].LocStart, OC.LocEnd)
14098 OC.LocEnd));
14105 Diag(OC.LocEnd, diag::err_offsetof_bitfield)
14122 Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base)
14137 cast<FieldDecl>(FI), OC.LocEnd));
14140 Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd));
[all...]
H A DSemaTemplate.cpp2249 SourceLocation LocEnd) {
2257 TInfo->getType(), TInfo, LocEnd);
2246 buildDeductionGuide(TemplateParameterList *TemplateParams, ExplicitSpecifier ES, TypeSourceInfo *TInfo, SourceLocation LocStart, SourceLocation Loc, SourceLocation LocEnd) argument
H A DTreeTransform.h9628 Comp.LocEnd = ON.getSourceRange().getEnd();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4964 SourceLocation LocStart, LocEnd; member in struct:clang::final::OffsetOfComponent

Completed in 598 milliseconds