Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DGeneratePCH.cpp30 SemaPtr(nullptr), Buffer(std::move(Buffer)), Stream(this->Buffer->Data), in PCHGenerator()
67 assert(SemaPtr && "No Sema?"); in HandleTranslationUnit()
68 Buffer->Signature = Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot, in HandleTranslationUnit()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DLookup.h159 : SemaPtr(&SemaRef), NameInfo(NameInfo), LookupKind(LookupKind),
173 : SemaPtr(&SemaRef), NameInfo(Name, NameLoc), LookupKind(LookupKind),
185 : SemaPtr(Other.SemaPtr), NameInfo(Other.NameInfo), in LookupResult()
202 SemaPtr(std::move(Other.SemaPtr)), NameInfo(std::move(Other.NameInfo)), in LookupResult()
225 SemaPtr = std::move(Other.SemaPtr);
665 Sema &getSema() const { return *SemaPtr; } in getSema()
797 Sema *SemaPtr; variable
H A DHLSLExternalSemaSource.h24 Sema *SemaPtr = nullptr; variable
46 void ForgetSema() override { SemaPtr = nullptr; } in ForgetSema()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DHLSLExternalSemaSource.cpp381 SemaPtr = &S; in InitializeSema()
382 ASTContext &AST = SemaPtr->getASTContext(); in InitializeSema()
419 ASTContext &AST = SemaPtr->getASTContext(); in defineHLSLVectorAlias()
472 ResourceDecl = BuiltinTypeDeclBuilder(*SemaPtr, HLSLNamespace, "Resource") in defineTrivialHLSLTypes()
491 Decl = BuiltinTypeDeclBuilder(*SemaPtr, HLSLNamespace, "RWBuffer") in defineHLSLTypesWithForwardDeclarations()
495 setupBufferType(Decl, *SemaPtr, ResourceClass::UAV, in defineHLSLTypesWithForwardDeclarations()
502 BuiltinTypeDeclBuilder(*SemaPtr, HLSLNamespace, "RasterizerOrderedBuffer") in defineHLSLTypesWithForwardDeclarations()
506 setupBufferType(Decl, *SemaPtr, ResourceClass::UAV, in defineHLSLTypesWithForwardDeclarations()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTWriter.h847 Sema *SemaPtr; variable
869 void InitializeSema(Sema &S) override { SemaPtr = &S; } in InitializeSema()