OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ppcond
(Results
1 - 3
of
3
) sorted by null
/external/clang/lib/Frontend/
CacheTokens.cpp
303
PPCondTable
PPCond
;
389
PPStartCond.push_back(
PPCond
.size());
390
PPCond
.push_back(std::make_pair(HashOff, 0U));
397
unsigned index =
PPCond
.size();
400
assert(
PPCond
.size() > PPStartCond.back());
401
assert(
PPCond
[PPStartCond.back()].second == 0);
402
PPCond
[PPStartCond.back()].second = index;
404
// Add the new entry to
PPCond
.
405
PPCond
.push_back(std::make_pair(HashOff, index));
422
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
38
const unsigned char *
ppcond
, PTHManager &PM)
40
PPCond
(
ppcond
), CurPPCondPtr(
ppcond
), PTHMgr(PM) {
215
PPCond
+ TableIdx*(sizeof(uint32_t)*2);
234
const unsigned char* NextPPCondPtr =
PPCond
+ TableIdx*(sizeof(uint32_t)*2);
617
const unsigned char*
ppcond
= BufStart + FileData.getPPCondOffset();
local
618
uint32_t Len = endian::readNext<uint32_t, little, aligned>(
ppcond
);
619
if (Len == 0)
ppcond
= nullptr;
622
return new PTHLexer(*PP, FID, data,
ppcond
, *this)
[
all
...]
Completed in 43 milliseconds