HomeSort by relevance Sort by last modified time
    Searched defs:NextLoc (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/AST/
TypeLoc.cpp 62 class NextLoc : public TypeLocVisitor<NextLoc, TypeLoc> {
76 return NextLoc().Visit(TL);
  /external/clang/lib/ARCMigrate/
TransProtectedScope.cpp 76 SourceLocation NextLoc = S->getLocEnd();
80 Cases.push_back(CaseInfo(Curr,SourceRange(Curr->getLocStart(), NextLoc)));
81 NextLoc = Curr->getLocStart();
  /external/clang/lib/Lex/
TokenLexer.cpp 752 SourceLocation NextLoc = NextTok->getLocation();
753 if (CurLoc.isFileID() != NextLoc.isFileID())
757 if (!SM.isInSameSLocAddrSpace(CurLoc, NextLoc, &RelOffs))
763 CurLoc = NextLoc;
  /external/llvm/include/llvm/Object/
Archive.h 104 const char *NextLoc = Data.data() + SpaceToSkip;
107 if (NextLoc >= Parent->Data->getBufferEnd())
111 sizeof(ArchiveMemberHeader) + ToHeader(NextLoc)->getSize();
113 return Child(Parent, StringRef(NextLoc, NextSize));

Completed in 224 milliseconds