Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DComment.h186 SourceLocation LocEnd) : in Comment() argument
187 Loc(LocBegin), Range(SourceRange(LocBegin, LocEnd)) { in Comment()
233 SourceLocation LocEnd) : in InlineContentComment() argument
234 Comment(K, LocBegin, LocEnd) { in InlineContentComment()
259 SourceLocation LocEnd, in TextComment() argument
261 InlineContentComment(TextCommentKind, LocBegin, LocEnd), in TextComment()
314 SourceLocation LocEnd, in InlineCommandComment() argument
318 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), in InlineCommandComment()
372 SourceLocation LocEnd, in HTMLTagComment() argument
376 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,
/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DCommentSema.cpp51 SourceLocation LocEnd, in actOnBlockCommandStart() argument
54 BlockCommandComment *BC = new (Allocator) BlockCommandComment(LocBegin, LocEnd, in actOnBlockCommandStart()
77 SourceLocation LocEnd, in actOnParamCommandStart() argument
81 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID, in actOnParamCommandStart()
278 SourceLocation LocEnd, in actOnTParamCommandStart() argument
282 new (Allocator) TParamCommandComment(LocBegin, LocEnd, CommandID, in actOnTParamCommandStart()
395 SourceLocation LocEnd, in actOnUnknownCommand() argument
398 return actOnUnknownCommand(LocBegin, LocEnd, CommandID); in actOnUnknownCommand()
402 SourceLocation LocEnd, in actOnUnknownCommand() argument
406 LocBegin, LocEnd, CommandID, in actOnUnknownCommand()
[all …]
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp949 SourceLocation LocEnd = Method->getLocEnd(); in RewriteMethodDeclaration() local
951 if (SM->getExpansionLineNumber(LocEnd) > in RewriteMethodDeclaration()
954 ReplaceText(LocEnd, 1, ";\n#endif\n"); in RewriteMethodDeclaration()
1012 SourceLocation LocEnd = PDecl->getAtEndRange().getBegin(); in RewriteProtocolDecl() local
1013 ReplaceText(LocEnd, strlen("@end"), "/* @end */"); in RewriteProtocolDecl()
1017 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteProtocolDecl()
1190 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); in RewriteImplementationDecl() local
1193 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
1205 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); in RewriteImplementationDecl() local
1208 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
[all …]
DRewriteModernObjC.cpp1123 SourceLocation LocEnd = Method->getLocEnd(); in RewriteMethodDeclaration() local
1125 if (SM->getExpansionLineNumber(LocEnd) > in RewriteMethodDeclaration()
1128 ReplaceText(LocEnd, 1, ";\n#endif\n"); in RewriteMethodDeclaration()
1192 SourceLocation LocEnd = PDecl->getAtEndRange().getBegin(); in RewriteProtocolDecl() local
1193 ReplaceText(LocEnd, strlen("@end"), "/* @end */\n"); in RewriteProtocolDecl()
1197 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteProtocolDecl()
1396 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); in RewriteImplementationDecl() local
1399 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
1411 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); in RewriteImplementationDecl() local
1414 const char *endBuf = SM->getCharacterData(LocEnd); in RewriteImplementationDecl()
[all …]
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Parse/
DParseExpr.cpp1845 Comps.back().LocStart = Comps.back().LocEnd = ConsumeToken(); in ParseBuiltinPrimaryExpression()
1861 Comps.back().LocEnd = ConsumeToken(); in ParseBuiltinPrimaryExpression()
1881 Comps.back().LocEnd = ST.getCloseLocation(); in ParseBuiltinPrimaryExpression()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaExpr.cpp9965 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); in BuildBuiltinOffsetOf()
9979 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) in BuildBuiltinOffsetOf()
9999 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); in BuildBuiltinOffsetOf()
10008 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); in BuildBuiltinOffsetOf()
10021 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) in BuildBuiltinOffsetOf()
10041 << SourceRange(CompPtr[0].LocStart, OC.LocEnd) in BuildBuiltinOffsetOf()
10059 OC.LocEnd)); in BuildBuiltinOffsetOf()
10066 Diag(OC.LocEnd, diag::err_offsetof_bitfield) in BuildBuiltinOffsetOf()
10082 Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base) in BuildBuiltinOffsetOf()
10100 cast<FieldDecl>(*FI), OC.LocEnd)); in BuildBuiltinOffsetOf()
[all …]
DTreeTransform.h6592 Comp.LocEnd = ON.getSourceRange().getEnd(); in TransformOffsetOfExpr()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Sema/
DSema.h3515 SourceLocation LocStart, LocEnd; member