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.cpp178 struct PPEntityComp { struct
179 const SourceManager &SM;
181 explicit PPEntityComp(const SourceManager &SM) : SM(SM) {} in PPEntityComp() function
183 bool operator()(PreprocessedEntity *L, PreprocessedEntity *R) const { in operator ()()
189 bool operator()(PreprocessedEntity *L, SourceLocation RHS) const { in operator ()()
194 bool operator()(SourceLocation LHS, PreprocessedEntity *R) const { in operator ()()
199 SourceLocation getLoc(PreprocessedEntity *PPE) const { in getLoc()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp6717 struct PPEntityComp { struct
6718 const ASTReader &Reader;
6719 ModuleFile &M;
6721 PPEntityComp(const ASTReader &Reader, ModuleFile &M) : Reader(Reader), M(M) {} in PPEntityComp() function
6723 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const { in operator ()()
6729 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const { in operator ()()
6734 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const { in operator ()()
6739 SourceLocation getLoc(const PPEntityOffset &PPE) const { in getLoc()