Home
last modified time | relevance | path

Searched refs:BeginLoc (Results 1 – 8 of 8) sorted by relevance

/external/clang/lib/Lex/
DPreprocessingRecord.cpp249 SourceLocation BeginLoc = Entity->getSourceRange().getBegin(); in addPreprocessedEntity() local
253 !SourceMgr.isBeforeInTranslationUnit(BeginLoc, in addPreprocessedEntity()
262 !SourceMgr.isBeforeInTranslationUnit(BeginLoc, in addPreprocessedEntity()
290 if (!SourceMgr.isBeforeInTranslationUnit(BeginLoc, in addPreprocessedEntity()
301 BeginLoc, in addPreprocessedEntity()
DPragma.cpp1186 SourceLocation BeginLoc = PP.getPragmaARCCFCodeAuditedLoc(); in HandlePragma() local
1193 if (BeginLoc.isValid()) { in HandlePragma()
1195 PP.Diag(BeginLoc, diag::note_pragma_entered_here); in HandlePragma()
1200 if (!BeginLoc.isValid()) { in HandlePragma()
DPPDirectives.cpp451 SourceLocation BeginLoc = ElseLoc.isValid() ? ElseLoc : IfTokenLoc; in SkipExcludedConditionalBlock() local
452 Callbacks->SourceRangeSkipped(SourceRange(BeginLoc, Tok.getLocation())); in SkipExcludedConditionalBlock()
/external/clang/lib/Sema/
DSemaCast.cpp787 SourceLocation BeginLoc = OpRange.getBegin(); in DiagnoseReinterpretUpDownCast() local
788 Self.Diag(BeginLoc, diag::warn_reinterpret_different_from_static) in DiagnoseReinterpretUpDownCast()
791 Self.Diag(BeginLoc, diag::note_reinterpret_updowncast_use_static) in DiagnoseReinterpretUpDownCast()
793 << FixItHint::CreateReplacement(BeginLoc, "static_cast"); in DiagnoseReinterpretUpDownCast()
/external/clang/tools/libclang/
DCIndex.cpp542 SourceLocation BeginLoc = RegionOfInterest.getBegin(); in VisitChildren() local
544 BeginLoc == RegionOfInterest.getEnd()) { in VisitChildren()
545 SourceLocation Loc = AU->mapLocationToPreamble(BeginLoc); in VisitChildren()
550 return Visit(cxcursor::MakeMacroExpansionCursor(MacroDef, BeginLoc, TU)); in VisitChildren()
5540 SourceLocation BeginLoc = Tok.getLocation(); in annotatePreprocessorTokens() local
5583 MakePreprocessingDirectiveCursor(SourceRange(BeginLoc, EndLoc), TU); in annotatePreprocessorTokens()
/external/clang/lib/Parse/
DParseDecl.cpp1278 SourceLocation BeginLoc = ConsumeBracket(); in DiagnoseProhibitedCXX11Attribute() local
1283 Diag(BeginLoc, diag::err_attributes_not_allowed) in DiagnoseProhibitedCXX11Attribute()
1284 << SourceRange(BeginLoc, EndLoc); in DiagnoseProhibitedCXX11Attribute()
/external/clang/lib/Serialization/
DASTReader.cpp5650 BeginLoc = SM.getLocForStartOfFile(File).getLocWithOffset(Offset); in FindFileRegionDecls() local
5651 SourceLocation EndLoc = BeginLoc.getLocWithOffset(Length); in FindFileRegionDecls()
5656 BeginLoc, DIDComp); in FindFileRegionDecls()
/external/clang/include/clang/Sema/
DSema.h6589 SourceLocation BeginLoc, // location of the + or -.