Home
last modified time | relevance | path

Searched refs:PreprocessedEntity (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessingRecord.h58 class PreprocessedEntity {
94 PreprocessedEntity(EntityKind Kind, SourceRange Range) in PreprocessedEntity() function
133 class PreprocessingDirective : public PreprocessedEntity {
136 : PreprocessedEntity(Kind, Range) {} in PreprocessingDirective()
139 static bool classof(const PreprocessedEntity *PD) { in classof()
162 static bool classof(const PreprocessedEntity *PE) { in classof()
168 class MacroExpansion : public PreprocessedEntity {
175 : PreprocessedEntity(MacroExpansionKind, Range), in MacroExpansion()
179 : PreprocessedEntity(MacroExpansionKind, Range), NameOrDef(Definition) { in MacroExpansion()
199 static bool classof(const PreprocessedEntity *PE) { in classof()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessingRecord.cpp75 static bool isPreprocessedEntityIfInFileID(PreprocessedEntity *PPE, FileID FID, in isPreprocessedEntityIfInFileID()
107 if (PreprocessedEntity *PPE = LoadedPreprocessedEntities[LoadedIndex]) in isEntityInFileID()
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()
214 std::vector<PreprocessedEntity *>::const_iterator in findBeginLocalPreprocessedEntity()
216 std::vector<PreprocessedEntity *>::const_iterator I; in findBeginLocalPreprocessedEntity()
249 PreprocessingRecord::addPreprocessedEntity(PreprocessedEntity *Entity) { in addPreprocessedEntity()
283 using pp_iter = std::vector<PreprocessedEntity *>::iterator; in addPreprocessedEntity()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h2011 PreprocessedEntity *ReadPreprocessedEntity(unsigned Index) override;
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/
H A DDemangleTestCases.inc808 …)::PrecompilePreambleConsumer::SerializedPreprocessedEntity(clang::PreprocessedEntity*, unsigned l…
811 …)::PrecompilePreambleConsumer::SerializedPreprocessedEntity(clang::PreprocessedEntity*, unsigned l…
844PreprocessedEntity*, std::allocator<clang::PreprocessedEntity*>>::_M_range_insert<__gnu_cxx::__nor…
845PreprocessedEntity*, std::allocator<clang::PreprocessedEntity*>>::_M_insert_aux(__gnu_cxx::__norma…
848PreprocessedEntity*, std::allocator<clang::PreprocessedEntity*>>>, std::_Select1st<std::pair<clang…
11285 …rocessedEntityE", "clang::PreprocessingRecord::addPreprocessedEntity(clang::PreprocessedEntity*)"},
11287 …E", "clang::PreprocessingRecord::SetPreallocatedEntity(unsigned int, clang::PreprocessedEntity*)"},
11298PreprocessedEntity*, std::allocator<clang::PreprocessedEntity*>>::_M_fill_insert(__gnu_cxx::__norm…
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp6596 PreprocessedEntity *ASTReader::ReadPreprocessedEntity(unsigned Index) { in ReadPreprocessedEntity()