Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.h489 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
523 getStorage()->~storage_type(); in ~Expected()
539 return *getStorage(); in get()
567 return toPointer(getStorage());
573 return toPointer(getStorage());
579 return *getStorage();
585 return *getStorage();
607 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
630 storage_type *getStorage() { in getStorage() function
635 const storage_type *getStorage() const { in getStorage() function
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroInstr.h218 Value *getStorage() const { in getStorage() function
296 Value *getStorage() const { in getStorage() function
H A DCoroSplit.cpp1554 auto *FramePtr = Id->getStorage(); in splitAsyncCoroutine()
1636 RawFramePtr = Id->getStorage(); in splitRetconCoroutine()
1652 auto Dest = Builder.CreateBitCast(Id->getStorage(), in splitRetconCoroutine()
H A DCoroutines.cpp397 this->AsyncLowering.Context = AsyncId->getStorage(); in buildFrom()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp8394 NamedDecl **Storage = OT->getStorage(); in getOverloadedTemplateName()