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

1 2

  /external/clang/lib/Basic/
SourceLocation.cpp 10 // This file defines accessor methods for the FullSourceLoc class.
77 // FullSourceLoc
80 FileID FullSourceLoc::getFileID() const {
86 FullSourceLoc FullSourceLoc::getExpansionLoc() const {
88 return FullSourceLoc(SrcMgr->getExpansionLoc(*this), *SrcMgr);
91 FullSourceLoc FullSourceLoc::getSpellingLoc() const {
93 return FullSourceLoc(SrcMgr->getSpellingLoc(*this), *SrcMgr);
96 unsigned FullSourceLoc::getExpansionLineNumber(bool *Invalid) const
    [all...]
Diagnostic.cpp 120 DiagStatePoints.push_back(DiagStatePoint(&DiagStates.back(), FullSourceLoc()));
149 FullSourceLoc Loc(L, *SourceMgr);
154 FullSourceLoc LastStateChangePos = DiagStatePoints.back().Loc;
173 FullSourceLoc Loc = SourceMgr? FullSourceLoc(L, *SourceMgr) : FullSourceLoc();
174 FullSourceLoc LastStateChangePos = DiagStatePoints.back().Loc;
228 FullSourceLoc(Loc, *SourceMgr)));
    [all...]
  /external/clang/include/clang/Basic/
SourceLocation.h 267 class FullSourceLoc : public SourceLocation {
270 /// \brief Creates a FullSourceLoc where isValid() returns \c false.
271 explicit FullSourceLoc() : SrcMgr(nullptr) {}
273 explicit FullSourceLoc(SourceLocation Loc, const SourceManager &SM)
276 /// \pre This FullSourceLoc has an associated SourceManager.
284 FullSourceLoc getExpansionLoc() const;
285 FullSourceLoc getSpellingLoc() const;
317 bool isBeforeInTranslationUnitThan(FullSourceLoc Loc) const {
324 struct BeforeThanCompare : public std::binary_function<FullSourceLoc,
325 FullSourceLoc, bool>
    [all...]
Diagnostic.h 232 FullSourceLoc Loc;
233 DiagStatePoint(DiagState *State, FullSourceLoc Loc)
265 FullSourceLoc Loc(L, getSourceManager());
    [all...]
SourceManager.h 539 typedef ArrayRef<std::pair<std::string, FullSourceLoc> > ModuleBuildStack;
705 SmallVector<std::pair<std::string, FullSourceLoc>, 2> StoredModuleBuildStack;
743 void pushModuleBuildStack(StringRef moduleName, FullSourceLoc importLoc) {
    [all...]
  /external/clang/unittests/Tooling/
TestVisitor.h 150 const FullSourceLoc FullLocation = this->Context->getFullLoc(Location);
177 bool Matches(StringRef Name, FullSourceLoc const &Location) const {
181 bool PartiallyMatches(StringRef Name, FullSourceLoc const &Location) const {
189 bool MatchesLocation(FullSourceLoc const &Location) const {
206 void UpdateFor(StringRef Name, FullSourceLoc Location, SourceManager &SM) {
  /external/clang/include/clang/Frontend/
LogDiagnosticPrinter.h 51 FullSourceLoc LastLoc;
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 226 FullSourceLoc L = piece->getLocation().asLocation().getExpansionLoc();
287 FullSourceLoc XSL = X.getStartLocation().asLocation();
288 FullSourceLoc YSL = Y.getStartLocation().asLocation();
291 FullSourceLoc XEL = X.getEndLocation().asLocation();
292 FullSourceLoc YEL = Y.getEndLocation().asLocation();
305 FullSourceLoc X_CEL = X.callEnter.asLocation();
306 FullSourceLoc Y_CEL = Y.callEnter.asLocation();
309 FullSourceLoc X_CEWL = X.callEnterWithin.asLocation();
310 FullSourceLoc Y_CEWL = Y.callEnterWithin.asLocation();
313 FullSourceLoc X_CRL = X.callReturn.asLocation()
    [all...]
PlistDiagnostics.cpp 154 FullSourceLoc L = P.getLocation().asLocation();
432 FullSourceLoc UL(SM->getExpansionLoc(UPDLoc.asLocation()),
434 FullSourceLoc UFunL(SM->getExpansionLoc(
442 FullSourceLoc L(SM->getExpansionLoc(D->getLocation().asLocation()),
444 FullSourceLoc FunL(SM->getExpansionLoc(Body->getLocStart()), *SM);
HTMLDiagnostics.cpp 144 FullSourceLoc L(
147 FullSourceLoc FunL(SMgr.getExpansionLoc(Body->getLocStart()), SMgr);
335 FullSourceLoc Pos = P.getLocation().asLocation();
470 FullSourceLoc L = MP->getLocation().asLocation().getExpansionLoc();
  /external/chromium_org/tools/clang/blink_gc_plugin/
BlinkGCPlugin.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 256 /// buffer to be a valid FullSourceLoc.
257 static FullSourceLoc ConvertBackendLocation(const llvm::SMDiagnostic &D,
281 return FullSourceLoc(NewLoc, CSM);
299 FullSourceLoc Loc;
395 FullSourceLoc Loc;
440 FullSourceLoc Loc(DILoc, SourceMgr);
534 FullSourceLoc Loc;
  /external/clang/lib/Lex/
LiteralSupport.cpp 46 FullSourceLoc TokLoc,
65 const LangOptions &Features, FullSourceLoc TokLoc,
80 FullSourceLoc Loc, unsigned CharWidth,
262 FullSourceLoc Loc, DiagnosticsEngine *Diags,
340 FullSourceLoc Loc;
369 FullSourceLoc Loc, unsigned CharByteWidth,
    [all...]
  /external/clang/lib/ARCMigrate/
TransformActions.cpp 66 FullSourceLoc Begin, End;
72 Begin = FullSourceLoc(srcMgr.getExpansionLoc(beginLoc), srcMgr);
73 End = FullSourceLoc(getLocForEndOfToken(endLoc, srcMgr, PP), srcMgr);
75 Begin = FullSourceLoc(srcMgr.getExpansionLoc(beginLoc), srcMgr);
76 End = FullSourceLoc(srcMgr.getExpansionLoc(endLoc), srcMgr);
107 typedef std::map<FullSourceLoc, TextsVec, FullSourceLoc::BeforeThanCompare>
516 Inserts[FullSourceLoc(loc, SM)].push_back(text);
ARCMT.cpp 35 FullSourceLoc diagLoc = I->getLocation();
64 FullSourceLoc diagLoc = I->getLocation();
  /external/clang/include/clang/Lex/
ModuleMap.h 392 Module *inferModuleFromLocation(FullSourceLoc Loc);
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 136 FullSourceLoc Loc;
145 FullSourceLoc genLocation(
271 FullSourceLoc asLocation() const {
  /external/chromium_org/tools/clang/plugins/
FindBadConstructsConsumer.cpp 263 FullSourceLoc full_loc(loc, manager);
317 FullSourceLoc loc(type_info_range.getBegin(), manager);
ChromeClassTester.cpp 109 FullSourceLoc full(loc, instance().getSourceManager());
  /external/clang/lib/Rewrite/Frontend/
FixItRewriter.cpp 78 Diag(FullSourceLoc(), diag::warn_fixit_no_changes);
InclusionRewriter.cpp 148 LastInsertedFileChange->second.Id = FullSourceLoc(Loc, SM).getFileID();
  /frameworks/compile/slang/
slang_rs_context.h 256 return DiagEngine->Report(clang::FullSourceLoc(Loc, *SM),
slang_rs.cpp 257 clang::FullSourceLoc FSL(Loc, SourceMgr);
  /external/clang/lib/Frontend/
FrontendActions.cpp 274 FullSourceLoc(SourceLocation(), SourceMgr));
  /external/clang/include/clang/AST/
ASTContext.h 513 FullSourceLoc getFullLoc(SourceLocation Loc) const {
514 return FullSourceLoc(Loc,SourceMgr);
    [all...]

Completed in 396 milliseconds

1 2