Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DComment.h197 SourceLocation LocEnd) : in Comment() argument
198 Loc(LocBegin), Range(SourceRange(LocBegin, LocEnd)) { in Comment()
244 SourceLocation LocEnd) : in InlineContentComment() argument
245 Comment(K, LocBegin, LocEnd) { in InlineContentComment()
270 SourceLocation LocEnd, in TextComment() argument
272 InlineContentComment(TextCommentKind, LocBegin, LocEnd), in TextComment()
325 SourceLocation LocEnd, in InlineCommandComment() argument
329 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), in InlineCommandComment()
382 SourceLocation LocEnd, in HTMLTagComment() argument
386 InlineContentComment(K, LocBegin, LocEnd), in HTMLTagComment()
[all …]
DCommentSema.h95 SourceLocation LocEnd,
106 SourceLocation LocEnd,
124 SourceLocation LocEnd,
148 SourceLocation LocEnd,
152 SourceLocation LocEnd,
156 SourceLocation LocEnd,
184 SourceLocation LocEnd,
/external/clang/lib/AST/
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()
283 SourceLocation LocEnd, in actOnTParamCommandStart() argument
287 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 …]
/external/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp957 SourceLocation LocEnd = Method->getLocEnd(); in RewriteMethodDeclaration() local
959 if (SM->getExpansionLineNumber(LocEnd) > in RewriteMethodDeclaration()
962 ReplaceText(LocEnd, 1, ";\n#endif\n"); in RewriteMethodDeclaration()
1008 SourceLocation LocEnd = PDecl->getAtEndRange().getBegin(); in RewriteProtocolDecl() local
1009 ReplaceText(LocEnd, strlen("@end"), "/* @end */"); in RewriteProtocolDecl()
1013 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteProtocolDecl()
1181 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); in RewriteImplementationDecl() local
1184 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
1192 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); in RewriteImplementationDecl() local
1195 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
[all …]
DRewriteModernObjC.cpp1132 SourceLocation LocEnd = Method->getLocEnd(); in RewriteMethodDeclaration() local
1134 if (SM->getExpansionLineNumber(LocEnd) > in RewriteMethodDeclaration()
1137 ReplaceText(LocEnd, 1, ";\n#endif\n"); in RewriteMethodDeclaration()
1190 SourceLocation LocEnd = PDecl->getAtEndRange().getBegin(); in RewriteProtocolDecl() local
1191 ReplaceText(LocEnd, strlen("@end"), "/* @end */\n"); in RewriteProtocolDecl()
1195 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteProtocolDecl()
1389 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); in RewriteImplementationDecl() local
1392 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
1400 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); in RewriteImplementationDecl() local
1403 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
[all …]
/external/clang/lib/Parse/
DParseExpr.cpp1745 Comps.back().LocStart = Comps.back().LocEnd = ConsumeToken(); in ParseBuiltinPrimaryExpression()
1761 Comps.back().LocEnd = ConsumeToken(); in ParseBuiltinPrimaryExpression()
1781 Comps.back().LocEnd = ST.getCloseLocation(); in ParseBuiltinPrimaryExpression()
/external/clang/lib/Sema/
DSemaExpr.cpp10209 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); in BuildBuiltinOffsetOf()
10223 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) in BuildBuiltinOffsetOf()
10243 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); in BuildBuiltinOffsetOf()
10252 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); in BuildBuiltinOffsetOf()
10265 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) in BuildBuiltinOffsetOf()
10285 << SourceRange(CompPtr[0].LocStart, OC.LocEnd) in BuildBuiltinOffsetOf()
10303 OC.LocEnd)); in BuildBuiltinOffsetOf()
10310 Diag(OC.LocEnd, diag::err_offsetof_bitfield) in BuildBuiltinOffsetOf()
10326 Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base) in BuildBuiltinOffsetOf()
10342 cast<FieldDecl>(FI), OC.LocEnd)); in BuildBuiltinOffsetOf()
[all …]
DTreeTransform.h6946 Comp.LocEnd = ON.getSourceRange().getEnd(); in TransformOffsetOfExpr()
/external/clang/include/clang/Sema/
DSema.h3652 SourceLocation LocStart, LocEnd; member