Searched defs:LocEnd (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/AST/
H A DCommentSema.cpp52 SourceLocation LocEnd,
55 BlockCommandComment *BC = new (Allocator) BlockCommandComment(LocBegin, LocEnd,
82 SourceLocation LocEnd,
86 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID,
283 SourceLocation LocEnd,
287 new (Allocator) TParamCommandComment(LocBegin, LocEnd, CommandID,
398 SourceLocation LocEnd,
401 return actOnUnknownCommand(LocBegin, LocEnd, CommandID);
405 SourceLocation LocEnd,
409 LocBegin, LocEnd, CommandI
50 actOnBlockCommandStart( SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
80 actOnParamCommandStart( SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
281 actOnTParamCommandStart( SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
397 actOnUnknownCommand(SourceLocation LocBegin, SourceLocation LocEnd, StringRef CommandName) argument
404 actOnUnknownCommand(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID) argument
414 actOnText(SourceLocation LocBegin, SourceLocation LocEnd, StringRef Text) argument
476 actOnHTMLEndTag(SourceLocation LocBegin, SourceLocation LocEnd, StringRef TagName) argument
[all...]
/external/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp45 Optional<SourceLocation> LocEnd; member in class:__anon1314::SourceMappingRegion
49 Optional<SourceLocation> LocEnd)
50 : Count(Count), LocStart(LocStart), LocEnd(LocEnd) {}
65 bool hasEndLoc() const { return LocEnd.hasValue(); }
67 void setEndLoc(SourceLocation Loc) { LocEnd = Loc; }
70 assert(LocEnd && "Region has no end location");
71 return *LocEnd;
228 auto LocEnd = I.getEnd(); local
229 assert(SM.isWrittenInSameFile(LocStart, LocEnd)
48 SourceMappingRegion(Counter Count, Optional<SourceLocation> LocStart, Optional<SourceLocation> LocEnd) argument
267 SourceLocation LocEnd = Region.getEndLoc(); local
298 SourceLocation LocEnd = getPreciseTokenLocEnd(ParentLoc); local
[all...]
/external/clang/include/clang/AST/
H A DComment.h199 SourceLocation LocEnd) :
200 Loc(LocBegin), Range(SourceRange(LocBegin, LocEnd)) {
246 SourceLocation LocEnd) :
247 Comment(K, LocBegin, LocEnd) {
272 SourceLocation LocEnd,
274 InlineContentComment(TextCommentKind, LocBegin, LocEnd),
327 SourceLocation LocEnd,
331 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd),
384 SourceLocation LocEnd,
388 InlineContentComment(K, LocBegin, LocEnd),
197 Comment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd) argument
244 InlineContentComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd) argument
271 TextComment(SourceLocation LocBegin, SourceLocation LocEnd, StringRef Text) argument
326 InlineCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, RenderKind RK, ArrayRef<Argument> Args) argument
382 HTMLTagComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd, StringRef TagName, SourceLocation TagNameBegin, SourceLocation TagNameEnd) argument
515 HTMLEndTagComment(SourceLocation LocBegin, SourceLocation LocEnd, StringRef TagName) argument
538 BlockContentComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd) argument
619 BlockCommandComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
632 BlockCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
728 ParamCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
822 TParamCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
904 VerbatimBlockComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID) argument
955 VerbatimLineComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, SourceLocation TextBegin, StringRef Text) argument
[all...]
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp948 SourceLocation LocEnd = Method->getLocEnd(); local
950 if (SM->getExpansionLineNumber(LocEnd) >
953 ReplaceText(LocEnd, 1, ";\n#endif\n");
999 SourceLocation LocEnd = PDecl->getAtEndRange().getBegin(); local
1000 ReplaceText(LocEnd, strlen("@end"), "/* @end */");
1004 const char *endBuf = SM->getCharacterData(LocEnd);
1173 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); local
1176 const char *endBuf = SM->getCharacterData(LocEnd);
1184 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); local
1187 const char *endBuf = SM->getCharacterData(LocEnd);
3096 SourceLocation LocEnd = CDecl->getEndOfDefinitionLoc(); local
3887 SourceLocation LocEnd = CE->getRParenLoc(); local
[all...]
H A DRewriteModernObjC.cpp1109 SourceLocation LocEnd = Method->getLocEnd(); 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);
1351 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); local
1354 const char *endBuf = SM->getCharacterData(LocEnd);
1362 SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); local
1365 const char *endBuf = SM->getCharacterData(LocEnd);
3896 SourceLocation LocEnd = CDecl->getEndOfDefinitionLoc(); local
4728 SourceLocation LocEnd = CE->getRParenLoc(); local
[all...]
/external/clang/include/clang/Sema/
H A DSema.h4080 SourceLocation LocStart, LocEnd; member in struct:clang::Sema::OffsetOfComponent

Completed in 167 milliseconds