HomeSort by relevance Sort by last modified time
    Searched refs:FullSourceLoc (Results 1 - 25 of 26) sorted by null

1 2

  /external/clang/lib/Basic/
SourceLocation.cpp 10 // This file defines accessor methods for the FullSourceLoc class.
69 // FullSourceLoc
72 FileID FullSourceLoc::getFileID() const {
78 FullSourceLoc FullSourceLoc::getExpansionLoc() const {
80 return FullSourceLoc(SrcMgr->getExpansionLoc(*this), *SrcMgr);
83 FullSourceLoc FullSourceLoc::getSpellingLoc() const {
85 return FullSourceLoc(SrcMgr->getSpellingLoc(*this), *SrcMgr);
88 unsigned FullSourceLoc::getExpansionLineNumber(bool *Invalid) const
    [all...]
Diagnostic.cpp 143 FullSourceLoc Loc(L, *SourceMgr);
148 FullSourceLoc LastStateChangePos = DiagStatePoints.back().Loc;
173 FullSourceLoc Loc(L, *SourceMgr);
174 FullSourceLoc LastStateChangePos = DiagStatePoints.back().Loc;
229 FullSourceLoc(Loc, *SourceMgr)));
804 Loc = FullSourceLoc(Info.getLocation(), Info.getSourceManager());
819 StringRef Message, FullSourceLoc Loc,
  /external/clang/include/clang/Basic/
SourceLocation.h 260 /// FullSourceLoc - A SourceLocation and its associated SourceManager. Useful
262 class FullSourceLoc : public SourceLocation {
265 /// Creates a FullSourceLoc where isValid() returns false.
266 explicit FullSourceLoc() : SrcMgr(0) {}
268 explicit FullSourceLoc(SourceLocation Loc, const SourceManager &SM)
278 FullSourceLoc getExpansionLoc() const;
279 FullSourceLoc getSpellingLoc() const;
310 bool isBeforeInTranslationUnitThan(FullSourceLoc Loc) const {
317 struct BeforeThanCompare : public std::binary_function<FullSourceLoc,
318 FullSourceLoc, bool>
    [all...]
Diagnostic.h 204 FullSourceLoc Loc;
205 DiagStatePoint(DiagState *State, FullSourceLoc Loc)
235 FullSourceLoc Loc(L, *SourceMgr);
244 FullSourceLoc(Loc, *SourceMgr)));
    [all...]
  /frameworks/compile/slang/
slang_rs_export_foreach.cpp 43 clang::FullSourceLoc(PVD->getLocation(), SM),
72 clang::FullSourceLoc(FD->getLocation(), DiagEngine->getSourceManager()),
104 clang::FullSourceLoc(FD->getLocation(),
128 clang::FullSourceLoc(PVD->getLocation(),
162 clang::FullSourceLoc(PVD->getLocation(),
195 clang::FullSourceLoc(FD->getLocation(),
337 clang::FullSourceLoc(FD->getLocation(),
354 clang::FullSourceLoc(FD->getLocation(),
364 clang::FullSourceLoc(FD->getLocation(),
slang_rs_export_type.cpp 67 clang::FullSourceLoc(TopLevelRecord->getLocation(), SM),
72 clang::FullSourceLoc(VD->getLocation(), SM),
207 clang::FullSourceLoc(FD->getLocation(),
409 clang::FullSourceLoc(VD->getLocation(),
    [all...]
slang_rs_export_func.cpp 41 clang::FullSourceLoc(FD->getLocation(), DiagEngine->getSourceManager()),
slang_rs.cpp 242 clang::FullSourceLoc FSL(FD->getLocStart(), SourceMgr);
slang_rs_backend.cpp 90 clang::FullSourceLoc(FD->getLocation(), mSourceMgr),
  /external/clang/include/clang/Frontend/
LogDiagnosticPrinter.h 48 FullSourceLoc LastLoc;
  /external/clang/lib/Lex/
LiteralSupport.cpp 55 FullSourceLoc Loc, unsigned CharWidth,
183 FullSourceLoc Loc, DiagnosticsEngine *Diags,
213 Diags->Report(FullSourceLoc(L, Loc.getManager()),
236 FullSourceLoc Loc, unsigned CharByteWidth,
792 FullSourceLoc(Loc, PP.getSourceManager()),
804 FullSourceLoc(Loc,PP.getSourceManager()),
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 226 FullSourceLoc L = PDL.asLocation();
230 FullSourceLoc
241 return FullSourceLoc(getValidSourceLocation(S, LAC),
244 return FullSourceLoc(D->getLocation(), const_cast<SourceManager&>(*SM));
247 return FullSourceLoc(L, const_cast<SourceManager&>(*SM));
PlistDiagnostics.cpp 33 const FullSourceLoc &XLoc = X->getLocation().asLocation();
34 const FullSourceLoc &YLoc = Y->getLocation().asLocation();
137 FullSourceLoc Loc(SM.getExpansionLoc(L), const_cast<SourceManager&>(SM));
243 FullSourceLoc L = P.getLocation().asLocation();
HTMLDiagnostics.cpp 146 FullSourceLoc L = I->getLocation().asLocation().getExpansionLoc();
320 FullSourceLoc Pos = P.getLocation().asLocation();
444 FullSourceLoc L = MP->getLocation().asLocation().getExpansionLoc();
BugReporter.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 166 /// buffer to be a valid FullSourceLoc.
167 static FullSourceLoc ConvertBackendLocation(const llvm::SMDiagnostic &D,
189 return FullSourceLoc(NewLoc, CSM);
207 FullSourceLoc Loc;
  /external/clang/lib/ARCMigrate/
TransformActions.cpp 65 FullSourceLoc Begin, End;
71 Begin = FullSourceLoc(srcMgr.getExpansionLoc(beginLoc), srcMgr);
72 End = FullSourceLoc(getLocForEndOfToken(endLoc, srcMgr, PP), srcMgr);
74 Begin = FullSourceLoc(srcMgr.getExpansionLoc(beginLoc), srcMgr);
75 End = FullSourceLoc(srcMgr.getExpansionLoc(endLoc), srcMgr);
106 typedef std::map<FullSourceLoc, TextsVec, FullSourceLoc::BeforeThanCompare>
513 Inserts[FullSourceLoc(loc, SM)].push_back(text);
PlistReporter.cpp 50 FullSourceLoc Loc(SM.getExpansionLoc(L), const_cast<SourceManager&>(SM));
ARCMT.cpp 33 FullSourceLoc diagLoc = I->getLocation();
61 FullSourceLoc diagLoc = I->getLocation();
  /external/clang/lib/Rewrite/
FixItRewriter.cpp 54 Diag(FullSourceLoc(), diag::warn_fixit_no_changes);
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 101 FullSourceLoc Loc;
112 FullSourceLoc
213 FullSourceLoc asLocation() const {
  /external/clang/lib/Sema/
Sema.cpp 331 FullSourceLoc useLoc;
333 UndefinedInternal(NamedDecl *decl, FullSourceLoc useLoc)
367 // We build a FullSourceLoc so that we can sort with array_pod_sort.
368 FullSourceLoc loc(i->second, S.Context.getSourceManager());
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 456 d_.Report(clang::FullSourceLoc(expr->getExprLoc(), sm_),
  /external/clang/include/clang/AST/
ASTContext.h 397 FullSourceLoc getFullLoc(SourceLocation Loc) const {
398 return FullSourceLoc(Loc,SourceMgr);
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]

Completed in 8984 milliseconds

1 2