HomeSort by relevance Sort by last modified time
    Searched refs:IncludeLoc (Results 1 - 9 of 9) 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,
157 /// @param IncludeLoc - The line of the include.
159 void PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const;
  /external/llvm/lib/Support/
SourceMgr.cpp 52 SMLoc IncludeLoc,
66 return AddNewSourceBuffer(NewBuf.take(), IncludeLoc);
128 void SourceMgr::PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const {
129 if (IncludeLoc == SMLoc()) return; // Top of stack.
131 int CurBuf = FindBufferContainingLoc(IncludeLoc);
134 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
138 << ":" << FindLineNumber(IncludeLoc, CurBuf) << ":\n";
224 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
  /external/clang/include/clang/Basic/
SourceLocation.h 363 SourceLocation IncludeLoc;
367 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
395 SourceLocation getIncludeLoc() const { return IncludeLoc; }
SourceManager.h 232 /// expanded from. The main include file has an invalid IncludeLoc.
240 unsigned IncludeLoc; // Really a SourceLocation
261 X.IncludeLoc = IL.getRawEncoding();
271 return SourceLocation::getFromRawEncoding(IncludeLoc);
738 SourceLocation IncludeLoc = SourceLocation()) {
739 return createFileID(createMemBufferContentCache(Buffer), IncludeLoc,
    [all...]
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 251 SourceLocation IncludeLoc = UserLoc.getIncludeLoc();
252 if (IncludeLoc.isValid())
253 MoveToLine(IncludeLoc);
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp 435 SourceLocation IncludeLoc = SrcMgr.getIncludeLoc(ExpansionFileID);
436 if (IncludeLoc.isInvalid())
439 ExpansionFileID = SrcMgr.getFileID(IncludeLoc);
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 964 milliseconds