HomeSort by relevance Sort by last modified time
    Searched refs:IncludeLoc (Results 1 - 12 of 12) sorted by null

  /external/llvm/include/llvm/Support/
SourceMgr.h 53 SMLoc IncludeLoc;
58 : Buffer(std::move(O.Buffer)), IncludeLoc(O.IncludeLoc) {}
118 return Buffers[i - 1].IncludeLoc;
124 SMLoc IncludeLoc) {
127 NB.IncludeLoc = IncludeLoc;
138 unsigned AddIncludeFile(const std::string &Filename, SMLoc IncludeLoc,
193 /// \param IncludeLoc The location of the include.
195 void PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const
    [all...]
  /external/llvm/lib/Support/
SourceMgr.cpp 46 SMLoc IncludeLoc,
63 return AddNewSourceBuffer(std::move(*NewBufOrErr), IncludeLoc);
121 void SourceMgr::PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const {
122 if (IncludeLoc == SMLoc()) return; // Top of stack.
124 unsigned CurBuf = FindBufferContainingLoc(IncludeLoc);
127 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
131 << ":" << FindLineNumber(IncludeLoc, CurBuf) << ":\n";
209 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
  /external/clang/include/clang/Basic/
SourceLocation.h 359 SourceLocation IncludeLoc;
363 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
391 SourceLocation getIncludeLoc() const { return IncludeLoc; }
SourceManager.h 239 /// expanded from. The main include file has an invalid IncludeLoc.
247 unsigned IncludeLoc; // Really a SourceLocation
268 X.IncludeLoc = IL.getRawEncoding();
278 return SourceLocation::getFromRawEncoding(IncludeLoc);
796 SourceLocation IncludeLoc = SourceLocation()) {
798 IncludeLoc, FileCharacter, LoadedID, LoadedOffset);
    [all...]
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 212 SourceLocation IncludeLoc = PLoc.getIncludeLoc();
215 if (LastIncludeLoc == IncludeLoc)
218 LastIncludeLoc = IncludeLoc;
223 if (IncludeLoc.isValid())
224 emitIncludeStackRecursively(IncludeLoc, SM);
PrintPreprocessedOutput.cpp 263 SourceLocation IncludeLoc = UserLoc.getIncludeLoc();
264 if (IncludeLoc.isValid())
265 MoveToLine(IncludeLoc);
  /external/clang/lib/Lex/
HeaderSearch.cpp 544 SourceLocation IncludeLoc) {
546 Diags.Report(IncludeLoc, diag::ext_pp_include_search_ms) << MSFE->getName();
566 StringRef Filename, SourceLocation IncludeLoc, bool isAngled,
663 if (Diags.isIgnored(diag::ext_pp_include_search_ms, IncludeLoc)) {
758 if (checkMSVCHeaderSearch(Diags, MSFE, FE, IncludeLoc)) {
783 LookupFile(ScratchFilename, IncludeLoc, /*isAngled=*/true, FromDir,
787 if (checkMSVCHeaderSearch(Diags, MSFE, FE, IncludeLoc)) {
800 if (checkMSVCHeaderSearch(Diags, MSFE, nullptr, IncludeLoc)) {
    [all...]
ModuleMap.cpp     [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/clang/include/clang/Lex/
HeaderSearch.h 359 /// \param IncludeLoc Used for diagnostics if valid.
381 StringRef Filename, SourceLocation IncludeLoc, bool isAngled,
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]

Completed in 1509 milliseconds