Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DComment.h199 SourceLocation LocEnd) : in Comment() argument
200 Loc(LocBegin), Range(SourceRange(LocBegin, LocEnd)) { in Comment()
240 SourceLocation LocEnd) : in InlineContentComment() argument
241 Comment(K, LocBegin, LocEnd) { in InlineContentComment()
266 SourceLocation LocEnd, in TextComment() argument
268 InlineContentComment(TextCommentKind, LocBegin, LocEnd), in TextComment()
322 SourceLocation LocEnd, in InlineCommandComment() argument
326 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), in InlineCommandComment()
378 SourceLocation LocEnd, in HTMLTagComment() argument
382 InlineContentComment(K, LocBegin, LocEnd), in HTMLTagComment()
[all …]
H A DCommentSema.h90 SourceLocation LocEnd,
101 SourceLocation LocEnd,
119 SourceLocation LocEnd,
143 SourceLocation LocEnd,
147 SourceLocation LocEnd,
151 SourceLocation LocEnd,
179 SourceLocation LocEnd,
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp105 Optional<SourceLocation> LocEnd; member in __anon8c3eb65b0211::SourceMappingRegion
113 Optional<SourceLocation> LocEnd, bool GapRegion = false) in SourceMappingRegion() argument
114 : Count(Count), LocStart(LocStart), LocEnd(LocEnd), GapRegion(GapRegion) { in SourceMappingRegion()
119 Optional<SourceLocation> LocEnd, bool GapRegion = false) in SourceMappingRegion() argument
121 LocEnd(LocEnd), GapRegion(GapRegion) {} in SourceMappingRegion()
141 bool hasEndLoc() const { return LocEnd.hasValue(); } in hasEndLoc()
145 LocEnd = Loc; in setEndLoc()
149 assert(LocEnd && "Region has no end location"); in getEndLoc()
150 return *LocEnd; in getEndLoc()
175 SourceLocation LocEnd) { in SpellingRegion()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DCommentSema.cpp52 SourceLocation LocEnd, in actOnBlockCommandStart() argument
55 BlockCommandComment *BC = new (Allocator) BlockCommandComment(LocBegin, LocEnd, in actOnBlockCommandStart()
82 SourceLocation LocEnd, in actOnParamCommandStart() argument
86 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID, in actOnParamCommandStart()
285 SourceLocation LocEnd, in actOnTParamCommandStart() argument
289 new (Allocator) TParamCommandComment(LocBegin, LocEnd, CommandID, in actOnTParamCommandStart()
400 SourceLocation LocEnd, in actOnUnknownCommand() argument
403 return actOnUnknownCommand(LocBegin, LocEnd, CommandID); in actOnUnknownCommand()
407 SourceLocation LocEnd, in actOnUnknownCommand() argument
411 LocBegin, LocEnd, CommandID, in actOnUnknownCommand()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCCodeView.cpp464 size_t LocEnd; in encodeInlineLineTable() local
465 std::tie(LocBegin, LocEnd) = getLineExtent(Frag.SiteFuncId); in encodeInlineLineTable()
473 LocEnd = std::max(LocEnd, Extent.second); in encodeInlineLineTable()
476 if (LocBegin >= LocEnd) in encodeInlineLineTable()
478 ArrayRef<MCCVLoc> Locs = getLinesForExtent(LocBegin, LocEnd); in encodeInlineLineTable()
593 ArrayRef<MCCVLoc> LocAfter = getLinesForExtent(LocEnd, LocEnd + 1); in encodeInlineLineTable()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp952 SourceLocation LocEnd = Method->getEndLoc(); in RewriteMethodDeclaration() local
954 if (SM->getExpansionLineNumber(LocEnd) > in RewriteMethodDeclaration()
957 ReplaceText(LocEnd, 1, ";\n#endif\n"); in RewriteMethodDeclaration()
1003 SourceLocation LocEnd = PDecl->getAtEndRange().getBegin(); in RewriteProtocolDecl() local
1004 ReplaceText(LocEnd, strlen("@end"), "/* @end */"); in RewriteProtocolDecl()
1008 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteProtocolDecl()
1180 SourceLocation LocEnd = OMD->getCompoundBody()->getBeginLoc(); in RewriteImplementationDecl() local
1183 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
1193 SourceLocation LocEnd = OMD->getCompoundBody()->getBeginLoc(); in RewriteImplementationDecl() local
1196 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
[all …]
H A DRewriteModernObjC.cpp1111 SourceLocation LocEnd = Method->getEndLoc(); in RewriteMethodDeclaration() local
1113 if (SM->getExpansionLineNumber(LocEnd) > in RewriteMethodDeclaration()
1116 ReplaceText(LocEnd, 1, ";\n#endif\n"); in RewriteMethodDeclaration()
1169 SourceLocation LocEnd = PDecl->getAtEndRange().getBegin(); in RewriteProtocolDecl() local
1170 ReplaceText(LocEnd, strlen("@end"), "/* @end */\n"); in RewriteProtocolDecl()
1174 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteProtocolDecl()
1356 SourceLocation LocEnd = OMD->getCompoundBody()->getBeginLoc(); in RewriteImplementationDecl() local
1359 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
1369 SourceLocation LocEnd = OMD->getCompoundBody()->getBeginLoc(); in RewriteImplementationDecl() local
1372 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseExpr.cpp2526 Comps.back().LocStart = Comps.back().LocEnd = ConsumeToken(); in ParseBuiltinPrimaryExpression()
2542 Comps.back().LocEnd = ConsumeToken(); in ParseBuiltinPrimaryExpression()
2562 Comps.back().LocEnd = ST.getCloseLocation(); in ParseBuiltinPrimaryExpression()
H A DParseExprCXX.cpp1146 SourceLocation LocEnd = PrevTokLocation; in ParseLambdaIntroducer() local
1149 InitCaptureType, SourceRange(LocStart, LocEnd)); in ParseLambdaIntroducer()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp15084 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) in BuildBuiltinOffsetOf()
15104 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); in BuildBuiltinOffsetOf()
15113 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); in BuildBuiltinOffsetOf()
15126 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) in BuildBuiltinOffsetOf()
15146 << SourceRange(Components[0].LocStart, OC.LocEnd) in BuildBuiltinOffsetOf()
15164 OC.LocEnd)); in BuildBuiltinOffsetOf()
15171 Diag(OC.LocEnd, diag::err_offsetof_bitfield) in BuildBuiltinOffsetOf()
15188 Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base) in BuildBuiltinOffsetOf()
15203 cast<FieldDecl>(FI), OC.LocEnd)); in BuildBuiltinOffsetOf()
15206 Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd)); in BuildBuiltinOffsetOf()
H A DSemaTemplate.cpp2430 SourceLocation Loc, SourceLocation LocEnd, in buildDeductionGuide()
2439 TInfo->getType(), TInfo, LocEnd, Ctor);
H A DTreeTransform.h10393 Comp.LocEnd = ON.getSourceRange().getEnd(); in TransformOffsetOfExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h5477 SourceLocation LocStart, LocEnd; member