Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessingRecord.cpp181 struct PPEntityComp { struct
182 const SourceManager &SM;
184 explicit PPEntityComp(const SourceManager &SM) : SM(SM) {} in PPEntityComp() function
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()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp6378 struct PPEntityComp { struct
6379 const ASTReader &Reader;
6380 ModuleFile &M;
6382 PPEntityComp(const ASTReader &Reader, ModuleFile &M) : Reader(Reader), M(M) {} in PPEntityComp() function
6384 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const { in operator ()()
6390 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const { in operator ()()
6395 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const { in operator ()()
6400 SourceLocation getLoc(const PPEntityOffset &PPE) const { in getLoc()