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

  /external/llvm/include/llvm/Support/
SourceMgr.h 49 /// IncludeLoc - This is the location of the parent include, or null if at
51 SMLoc IncludeLoc;
100 return Buffers[i].IncludeLoc;
105 unsigned AddNewSourceBuffer(MemoryBuffer *F, SMLoc IncludeLoc) {
108 NB.IncludeLoc = IncludeLoc;
117 unsigned AddIncludeFile(const std::string &Filename, SMLoc IncludeLoc,
147 /// @param IncludeLoc - The line of the include.
149 void PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const;
  /external/llvm/lib/Support/
SourceMgr.cpp 52 SMLoc IncludeLoc,
66 return AddNewSourceBuffer(NewBuf.take(), IncludeLoc);
124 void SourceMgr::PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const {
125 if (IncludeLoc == SMLoc()) return; // Top of stack.
127 int CurBuf = FindBufferContainingLoc(IncludeLoc);
130 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
134 << ":" << FindLineNumber(IncludeLoc, CurBuf) << ":\n";
209 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
  /external/clang/include/clang/Basic/
SourceLocation.h 350 SourceLocation IncludeLoc;
354 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
377 SourceLocation getIncludeLoc() const { return IncludeLoc; }
SourceManager.h 197 /// expanded from. The main include file has an invalid IncludeLoc.
202 /// IncludeLoc - The location of the #include that brought in this file.
204 unsigned IncludeLoc; // Really a SourceLocation
224 X.IncludeLoc = IL.getRawEncoding();
234 return SourceLocation::getFromRawEncoding(IncludeLoc);
    [all...]
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 252 SourceLocation IncludeLoc = UserLoc.getIncludeLoc();
253 if (IncludeLoc.isValid())
254 MoveToLine(IncludeLoc);
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 164 milliseconds