Home
last modified time | relevance | path

Searched defs:PPEntityComp (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DPreprocessingRecord.cpp181 struct PPEntityComp { struct
182 const SourceManager &SM;
184 explicit PPEntityComp(const SourceManager &SM) : SM(SM) {} in PPEntityComp() argument
186 bool operator()(PreprocessedEntity *L, PreprocessedEntity *R) const { in operator ()()
192 bool operator()(PreprocessedEntity *L, SourceLocation RHS) const { in operator ()()
197 bool operator()(SourceLocation LHS, PreprocessedEntity *R) const { in operator ()()
202 SourceLocation getLoc(PreprocessedEntity *PPE) const { in getLoc()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp6069 struct PPEntityComp { struct
6070 const ASTReader &Reader;
6071 ModuleFile &M;
6073 PPEntityComp(const ASTReader &Reader, ModuleFile &M) : Reader(Reader), M(M) {} in PPEntityComp() argument
6075 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const { in operator ()()
6081 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const { in operator ()()
6086 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const { in operator ()()
6091 SourceLocation getLoc(const PPEntityOffset &PPE) const { in getLoc()