Home
last modified time | relevance | path

Searched refs:getStorage (Results 1 – 11 of 11) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorOr.h90 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
142 getStorage()->~storage_type(); in ~ErrorOr()
150 reference get() { return *getStorage(); } in get()
158 return toPointer(getStorage());
161 const_pointer operator->() const { return toPointer(getStorage()); }
164 return *getStorage();
167 const_reference operator*() const { return *getStorage(); }
175 new (getStorage()) storage_type(*Other.getStorage()); in copyConstruct()
207 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
236 storage_type *getStorage() { in getStorage() function
[all …]
H A DError.h522 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
556 getStorage()->~storage_type(); in ~Expected()
572 return *getStorage(); in get()
600 return toPointer(getStorage());
606 return toPointer(getStorage());
612 return *getStorage();
618 return *getStorage();
640 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
663 storage_type *getStorage() { in getStorage() function
668 const storage_type *getStorage() const { in getStorage() function
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h214 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
248 getStorage()->~storage_type(); in ~Expected()
282 return toPointer(getStorage());
288 return toPointer(getStorage());
294 return *getStorage();
300 return *getStorage();
320 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
343 storage_type *getStorage() { in getStorage() function
348 const storage_type *getStorage() const { in getStorage() function
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateName.h111 NamedDecl **getStorage() { in getStorage() function
114 NamedDecl * const *getStorage() const { in getStorage() function
121 iterator begin() const { return getStorage(); } in begin()
122 iterator end() const { return getStorage() + size(); } in end()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h56 DiagStorage = getStorage(); in PartialDiagnostic()
117 DiagStorage = getStorage();
H A DDiagnostic.h1150 DiagnosticStorage *getStorage() const { in getStorage() function
1181 DiagStorage = getStorage(); in AddTaggedVal()
1191 DiagStorage = getStorage(); in AddString()
1202 DiagStorage = getStorage(); in AddSourceRange()
1212 DiagStorage = getStorage(); in AddFixItHint()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroInstr.h218 Value *getStorage() const { in getStorage() function
296 Value *getStorage() const { in getStorage() function
H A DCoroutines.cpp397 this->AsyncLowering.Context = AsyncId->getStorage(); in buildFrom()
H A DCoroSplit.cpp1580 auto *FramePtr = Id->getStorage(); in splitAsyncCoroutine()
1677 RawFramePtr = Id->getStorage(); in splitRetconCoroutine()
1693 auto Dest = Builder.CreateBitCast(Id->getStorage(), in splitRetconCoroutine()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp6518 static llvm::GlobalValue::DLLStorageClassTypes getStorage(CodeGenModule &CGM, in getStorage() function
6545 ObjCEmptyCacheVar->setDLLStorageClass(getStorage(CGM, "_objc_empty_cache")); in GenerateClass()
7815 IDEHType->setDLLStorageClass(getStorage(CGM, "OBJC_EHTYPE_id")); in GetEHType()
7893 VTableGV->setDLLStorageClass(getStorage(CGM, VTableName)); in GetInterfaceEHType()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp8413 NamedDecl **Storage = OT->getStorage(); in getOverloadedTemplateName()