Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorOr.h90 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
141 getStorage()->~storage_type(); in ~ErrorOr()
149 reference get() { return *getStorage(); } in get()
157 return toPointer(getStorage());
160 const_pointer operator->() const { return toPointer(getStorage()); }
163 return *getStorage();
166 const_reference operator*() const { return *getStorage(); }
174 new (getStorage()) storage_type(*Other.getStorage()); in copyConstruct()
206 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
235 storage_type *getStorage() { in getStorage() function
[all …]
H A DError.h531 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
564 getStorage()->~storage_type(); in ~Expected()
580 return *getStorage(); in get()
618 return toPointer(getStorage());
624 return toPointer(getStorage());
630 return *getStorage();
636 return *getStorage();
658 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
681 storage_type *getStorage() { in getStorage() function
686 const storage_type *getStorage() const { in getStorage() function
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h212 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
246 getStorage()->~storage_type(); in ~Expected()
280 return toPointer(getStorage());
286 return toPointer(getStorage());
292 return *getStorage();
298 return *getStorage();
318 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
341 storage_type *getStorage() { in getStorage() function
346 const storage_type *getStorage() const { in getStorage() function
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateName.h114 NamedDecl **getStorage() { in getStorage() function
117 NamedDecl * const *getStorage() const { in getStorage() function
126 iterator begin() const { return getStorage(); } in begin()
127 iterator end() const { return getStorage() + Bits.Data; } in end()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h53 DiagStorage = getStorage(); in PartialDiagnostic()
114 DiagStorage = getStorage();
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroInstr.h249 Value *getStorage() const { in getStorage() function
327 Value *getStorage() const { in getStorage() function
H A DCoroutines.cpp324 this->AsyncLowering.Context = AsyncId->getStorage(); in buildFrom()
H A DCoroSplit.cpp1695 auto *FramePtr = Id->getStorage(); in splitAsyncCoroutine()
1789 RawFramePtr = Id->getStorage(); in splitRetconCoroutine()
1805 Builder.CreateStore(RawFramePtr, Id->getStorage()); in splitRetconCoroutine()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp6438 static llvm::GlobalValue::DLLStorageClassTypes getStorage(CodeGenModule &CGM, in getStorage() function
6465 ObjCEmptyCacheVar->setDLLStorageClass(getStorage(CGM, "_objc_empty_cache")); in GenerateClass()
7748 IDEHType->setDLLStorageClass(getStorage(CGM, "OBJC_EHTYPE_id")); in GetEHType()
7826 VTableGV->setDLLStorageClass(getStorage(CGM, VTableName)); in GetInterfaceEHType()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp1380 auto NumArgs = Diag.getStorage()->NumDiagArgs; in Error()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9623 NamedDecl **Storage = OT->getStorage(); in getOverloadedTemplateName()