HomeSort by relevance Sort by last modified time
    Searched full:ppcond (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/Frontend/
CacheTokens.cpp 302 PPCondTable PPCond;
388 PPStartCond.push_back(PPCond.size());
389 PPCond.push_back(std::make_pair(HashOff, 0U));
396 unsigned index = PPCond.size();
399 assert(PPCond.size() > PPStartCond.back());
400 assert(PPCond[PPStartCond.back()].second == 0);
401 PPCond[PPStartCond.back()].second = index;
403 // Add the new entry to PPCond.
404 PPCond.push_back(std::make_pair(HashOff, index));
421 unsigned index = PPCond.size()
    [all...]
  /external/clang/include/clang/Lex/
PTHLexer.h 38 /// PPCond - Pointer to a side table in the PTH file that provides a
41 const unsigned char* PPCond;
43 /// CurPPCondPtr - Pointer inside PPCond that refers to the next entry
65 const unsigned char* ppcond, PTHManager &PM);
  /external/clang/lib/Lex/
PTHLexer.cpp 39 const unsigned char *ppcond, PTHManager &PM)
41 PPCond(ppcond), CurPPCondPtr(ppcond), PTHMgr(PM) {
216 PPCond + TableIdx*(sizeof(uint32_t)*2);
235 const unsigned char* NextPPCondPtr = PPCond + TableIdx*(sizeof(uint32_t)*2);
628 const unsigned char* ppcond = BufStart + FileData.getPPCondOffset(); local
629 uint32_t Len = endian::readNext<uint32_t, little, aligned>(ppcond);
630 if (Len == 0) ppcond = nullptr;
633 return new PTHLexer(*PP, FID, data, ppcond, *this)
    [all...]

Completed in 348 milliseconds