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

  /external/llvm/include/llvm/Support/
SourceMgr.h 52 /// IncludeLoc - This is the location of the parent include, or null if at
54 SMLoc IncludeLoc;
107 return Buffers[i].IncludeLoc;
112 unsigned AddNewSourceBuffer(MemoryBuffer *F, SMLoc IncludeLoc) {
115 NB.IncludeLoc = IncludeLoc;
124 unsigned AddIncludeFile(const std::string &Filename, SMLoc IncludeLoc,
166 /// @param IncludeLoc - The line of the include.
168 void PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const;
  /external/llvm/lib/Support/
SourceMgr.cpp 56 SMLoc IncludeLoc,
70 return AddNewSourceBuffer(NewBuf.take(), IncludeLoc);
132 void SourceMgr::PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const {
133 if (IncludeLoc == SMLoc()) return; // Top of stack.
135 int CurBuf = FindBufferContainingLoc(IncludeLoc);
138 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
142 << ":" << FindLineNumber(IncludeLoc, CurBuf) << ":\n";
230 PrintIncludeStack(getBufferInfo(CurBuf).IncludeLoc, OS);
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 208 SourceLocation IncludeLoc = PLoc.getIncludeLoc();
211 if (LastIncludeLoc == IncludeLoc)
214 LastIncludeLoc = IncludeLoc;
219 if (IncludeLoc.isValid())
220 emitIncludeStackRecursively(IncludeLoc, SM);
PrintPreprocessedOutput.cpp 257 SourceLocation IncludeLoc = UserLoc.getIncludeLoc();
258 if (IncludeLoc.isValid())
259 MoveToLine(IncludeLoc);
  /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 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);
792 SourceLocation IncludeLoc = SourceLocation()) {
793 return createFileID(createMemBufferContentCache(Buffer), IncludeLoc,
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp 627 SourceLocation IncludeLoc = SrcMgr.getIncludeLoc(ExpansionFileID);
628 if (IncludeLoc.isInvalid())
631 ExpansionFileID = SrcMgr.getFileID(IncludeLoc);
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp 930 SourceLocation IncludeLoc = ReadSourceLocation(*F, Record[1]);
931 if (IncludeLoc.isInvalid() && F->Kind != MK_MainFile) {
933 IncludeLoc = getImportLocation(F);
937 FileID FID = SourceMgr.createFileID(File, IncludeLoc, FileCharacter
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]

Completed in 180 milliseconds