Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/tools/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.cpp1315 SourceLocation BeginLoc = PP.getPragmaARCCFCodeAuditedLoc(); in HandlePragma() local
1322 if (BeginLoc.isValid()) { in HandlePragma()
1324 PP.Diag(BeginLoc, diag::note_pragma_entered_here); in HandlePragma()
1329 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()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaCast.cpp791 SourceLocation BeginLoc = OpRange.getBegin(); in DiagnoseReinterpretUpDownCast() local
792 Self.Diag(BeginLoc, diag::warn_reinterpret_different_from_static) in DiagnoseReinterpretUpDownCast()
795 Self.Diag(BeginLoc, diag::note_reinterpret_updowncast_use_static) in DiagnoseReinterpretUpDownCast()
797 << FixItHint::CreateReplacement(BeginLoc, "static_cast"); in DiagnoseReinterpretUpDownCast()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Parse/
DParseDecl.cpp1267 SourceLocation BeginLoc = ConsumeBracket(); in DiagnoseProhibitedCXX11Attribute() local
1272 Diag(BeginLoc, diag::err_attributes_not_allowed) in DiagnoseProhibitedCXX11Attribute()
1273 << SourceRange(BeginLoc, EndLoc); in DiagnoseProhibitedCXX11Attribute()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTReader.cpp5666 BeginLoc = SM.getLocForStartOfFile(File).getLocWithOffset(Offset); in FindFileRegionDecls() local
5667 SourceLocation EndLoc = BeginLoc.getLocWithOffset(Length); in FindFileRegionDecls()
5672 BeginLoc, DIDComp); in FindFileRegionDecls()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Sema/
DSema.h6775 SourceLocation BeginLoc, // location of the + or -.