Home
last modified time | relevance | path

Searched refs:IsFinal (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang/lib/Serialization/
H A DInMemoryModuleCache.cpp19 if (I->second.IsFinal) in getPCMState()
36 assert(!PCM.IsFinal && "Trying to override finalized PCM?"); in addBuiltPCM()
39 PCM.IsFinal = true; in addBuiltPCM()
66 if (PCM.IsFinal) in tryToDropPCM()
79 PCM.IsFinal = true; in finalizePCM()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DIdentifierTable.h148 unsigned IsFinal : 1; in alignas() local
164 IsDeprecatedMacro(false), IsRestrictExpansion(false), IsFinal(false) {} in alignas()
214 if (!IsFinal) { in alignas()
254 bool isFinal() const { return IsFinal; } in alignas()
256 void setIsFinal(bool Val) { IsFinal = Val; } in alignas()
H A DTokenKinds.def496 TYPE_TRAIT_1(__is_final, IsFinal, KEYCXX)
/llvm-project-15.0.7/clang/include/clang/Serialization/
H A DInMemoryModuleCache.h37 bool IsFinal = false; member
/llvm-project-15.0.7/llvm/include/llvm/TableGen/
H A DRecord.h826 Init *Fold(Record *CurRec, bool IsFinal = false) const;
1122 Init *Fold(Record *CurRec, bool IsFinal = false) const;
2097 bool IsFinal = false; variable
2117 bool isFinal() const { return IsFinal; } in isFinal()
2119 void setFinal(bool Final) { IsFinal = Final; } in setFinal()
/llvm-project-15.0.7/llvm/lib/TableGen/
H A DRecord.cpp777 Init *UnOpInit::Fold(Record *CurRec, bool IsFinal) const { in Fold()
794 if (!CurRec && !IsFinal) in Fold()
804 if (!IsFinal) in Fold()
810 if (IsFinal) in Fold()
1688 Init *ExistsOpInit::Fold(Record *CurRec, bool IsFinal) const { in Fold()
1690 if (!CurRec && !IsFinal) in Fold()
1698 if (!IsFinal) in Fold()
1710 if (IsFinal) in Fold()
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp1975 TEST_P(ASTMatchersTest, IsFinal) { in TEST_P() argument