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;
113 return Buffers[i - 1].IncludeLoc;
118 unsigned AddNewSourceBuffer(MemoryBuffer *F, SMLoc IncludeLoc) {
121 NB.IncludeLoc = IncludeLoc;
132 unsigned AddIncludeFile(const std::string &Filename, SMLoc IncludeLoc,
187 /// \param IncludeLoc The location of the include.
189 void PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const;
  /external/llvm/lib/Support/
SourceMgr.cpp 53 SMLoc IncludeLoc,
70 return AddNewSourceBuffer(NewBufOrErr.get().release(), IncludeLoc);
128 void SourceMgr::PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const {
129 if (IncludeLoc == SMLoc()) return; // Top of stack.
131 unsigned CurBuf = FindBufferContainingLoc(IncludeLoc);
134 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
138 << ":" << FindLineNumber(IncludeLoc, CurBuf) << ":\n";
216 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 247 /// expanded from. The main include file has an invalid IncludeLoc.
255 unsigned IncludeLoc; // Really a SourceLocation
276 X.IncludeLoc = IL.getRawEncoding();
286 return SourceLocation::getFromRawEncoding(IncludeLoc);
794 SourceLocation IncludeLoc = SourceLocation()) {
795 return createFileID(createMemBufferContentCache(Buffer), IncludeLoc,
    [all...]
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 214 SourceLocation IncludeLoc = PLoc.getIncludeLoc();
217 if (LastIncludeLoc == IncludeLoc)
220 LastIncludeLoc = IncludeLoc;
225 if (IncludeLoc.isValid())
226 emitIncludeStackRecursively(IncludeLoc, SM);
PrintPreprocessedOutput.cpp 267 SourceLocation IncludeLoc = UserLoc.getIncludeLoc();
268 if (IncludeLoc.isValid())
269 MoveToLine(IncludeLoc);
  /external/clang/lib/Lex/
HeaderSearch.cpp 543 SourceLocation IncludeLoc) {
545 Diags.Report(IncludeLoc, diag::ext_pp_include_search_ms) << MSFE->getName();
565 StringRef Filename, SourceLocation IncludeLoc, bool isAngled,
669 if (Diags.isIgnored(diag::ext_pp_include_search_ms, IncludeLoc)) {
764 if (checkMSVCHeaderSearch(Diags, MSFE, FE, IncludeLoc)) {
789 ScratchFilename, IncludeLoc, /*isAngled=*/true, FromDir, CurDir,
792 if (checkMSVCHeaderSearch(Diags, MSFE, FE, IncludeLoc)) {
807 if (checkMSVCHeaderSearch(Diags, MSFE, nullptr, IncludeLoc)) {
    [all...]
ModuleMap.cpp 885 SourceLocation IncludeLoc = SrcMgr.getIncludeLoc(ExpansionFileID);
886 if (IncludeLoc.isInvalid())
889 ExpansionFileID = SrcMgr.getFileID(IncludeLoc);
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/clang/include/clang/Lex/
HeaderSearch.h 366 /// \param IncludeLoc Used for diagnostics if valid.
387 const FileEntry *LookupFile(StringRef Filename, SourceLocation IncludeLoc,
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]

Completed in 146 milliseconds