Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DErrorOr.h92 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
149 getStorage()->~storage_type(); in ~ErrorOr()
157 reference get() { return *getStorage(); } in get()
165 return toPointer(getStorage());
168 const_pointer operator->() const { return toPointer(getStorage()); }
171 return *getStorage();
174 const_reference operator*() const { return *getStorage(); }
182 new (getStorage()) storage_type(*Other.getStorage()); in copyConstruct()
214 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
243 storage_type *getStorage() { in getStorage() function
[all …]
H A DError.h484 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
519 getStorage()->~storage_type(); in ~Expected()
535 return *getStorage(); in get()
563 return toPointer(getStorage());
569 return toPointer(getStorage());
575 return *getStorage();
581 return *getStorage();
603 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
626 storage_type *getStorage() { in getStorage() function
631 const storage_type *getStorage() const { in getStorage() function
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DPartialDiagnostic.h133 Storage *getStorage() const { in getStorage() function
169 DiagStorage = getStorage(); in AddSourceRange()
179 DiagStorage = getStorage(); in AddFixItHint()
197 DiagStorage = getStorage(); in PartialDiagnostic()
238 DiagStorage = getStorage();
273 DiagStorage = getStorage(); in AddTaggedVal()
283 DiagStorage = getStorage(); in AddString()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DTemplateName.h102 NamedDecl **getStorage() { in getStorage() function
105 NamedDecl * const *getStorage() const { in getStorage() function
112 iterator begin() const { return getStorage(); } in begin()
113 iterator end() const { return getStorage() + size(); } in end()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCMac.cpp6277 static llvm::GlobalValue::DLLStorageClassTypes getStorage(CodeGenModule &CGM, in getStorage() function
6304 ObjCEmptyCacheVar->setDLLStorageClass(getStorage(CGM, "_objc_empty_cache")); in GenerateClass()
7528 IDEHType->setDLLStorageClass(getStorage(CGM, "OBJC_EHTYPE_id")); in GetEHType()
7605 VTableGV->setDLLStorageClass(getStorage(CGM, VTableName)); in GetInterfaceEHType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp7596 NamedDecl **Storage = OT->getStorage(); in getOverloadedTemplateName()