| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | CustomizableOptional.h | 35 constexpr CustomizableOptional(std::nullopt_t) {} in CustomizableOptional() argument 159 constexpr bool operator==(const CustomizableOptional<T> &X, std::nullopt_t) { 164 constexpr bool operator==(std::nullopt_t, const CustomizableOptional<T> &X) { 169 constexpr bool operator!=(const CustomizableOptional<T> &X, std::nullopt_t) { 174 constexpr bool operator!=(std::nullopt_t, const CustomizableOptional<T> &X) { 179 constexpr bool operator<(const CustomizableOptional<T> &, std::nullopt_t) { 184 constexpr bool operator<(std::nullopt_t, const CustomizableOptional<T> &X) { 189 constexpr bool operator<=(const CustomizableOptional<T> &X, std::nullopt_t) { 194 constexpr bool operator<=(std::nullopt_t, const CustomizableOptional<T> &X) { 199 constexpr bool operator>(const CustomizableOptional<T> &X, std::nullopt_t) { [all …]
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | optional | 29 struct nullopt_t{see below }; 30 inline constexpr nullopt_t nullopt(unspecified ); 108 constexpr optional(nullopt_t) noexcept; 273 struct nullopt_t { 280 inline constexpr nullopt_t nullopt{nullopt_t::__secret_tag{}, nullopt_t::__secret_tag{}}; 594 static_assert(!is_same_v<__remove_cvref_t<value_type>, nullopt_t>, 669 _LIBCPP_HIDE_FROM_ABI constexpr optional(nullopt_t) noexcept {} 909 static_assert(!is_same_v<_Up, nullopt_t>, "Result of f(value()) should not be std::nullopt_t"); 921 static_assert(!is_same_v<_Up, nullopt_t>, "Result of f(value()) should not be std::nullopt_t"); 933 …static_assert(!is_same_v<_Up, nullopt_t>, "Result of f(std::move(value())) should not be std::null… [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | StringSet.h | 23 class StringSet : public StringMap<std::nullopt_t, AllocatorTy> { 24 using Base = StringMap<std::nullopt_t, AllocatorTy>;
|
| H A D | StringMapEntry.h | 88 class StringMapEntryStorage<std::nullopt_t> : public StringMapEntryBase { 91 std::nullopt_t = std::nullopt) 95 std::nullopt_t getValue() const { return std::nullopt; } in getValue()
|
| H A D | ArrayRef.h | 70 /*implicit*/ ArrayRef(std::nullopt_t) {} in ArrayRef() argument 325 /*implicit*/ MutableArrayRef(std::nullopt_t) : ArrayRef<T>() {} in MutableArrayRef() argument
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Alignment.h | 131 constexpr MaybeAlign(std::nullopt_t None) : UP(None) {} in MaybeAlign() 305 inline bool operator==(MaybeAlign Lhs, std::nullopt_t) { return !bool(Lhs); } 306 inline bool operator!=(MaybeAlign Lhs, std::nullopt_t) { return bool(Lhs); } 307 inline bool operator==(std::nullopt_t, MaybeAlign Rhs) { return !bool(Rhs); } 308 inline bool operator!=(std::nullopt_t, MaybeAlign Rhs) { return bool(Rhs); }
|
| H A D | SMLoc.h | 53 SMRange(std::nullopt_t) {} in SMRange() argument
|
| H A D | raw_ostream.h | 759 raw_ostream &operator<<(raw_ostream &OS, std::nullopt_t);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Optional.cpp | 11 llvm::raw_ostream &llvm::operator<<(raw_ostream &OS, std::nullopt_t) { in operator <<() argument
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Bitcode/ |
| H A D | BitcodeConvenience.h | 209 static void read(ArrayRef<T> buffer, std::nullopt_t, DataTy &&...data) { in read() argument 241 template <typename T> static void read(ArrayRef<T> buffer, std::nullopt_t) { in read() argument 282 unsigned code, std::nullopt_t) { in emit() argument 297 template <typename T> static void read(ArrayRef<T> buffer, std::nullopt_t) { in read() argument
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DWARFLinker/ |
| H A D | StringPool.h | 23 using StringEntry = StringMapEntry<std::nullopt_t>;
|
| /freebsd-14.2/contrib/llvm-project/libcxx/modules/std/ |
| H A D | optional.inc | 16 using std::nullopt_t;
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | Timeout.h | 39 Timeout(std::nullopt_t none) : Base(none) {} in Timeout()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | PostOrderCFGView.h | 50 std::pair<std::nullopt_t, bool> insert(const CFGBlock *Block) { in insert()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/APINotes/ |
| H A D | APINotesReader.h | 62 VersionedInfo(std::nullopt_t) : Selected(std::nullopt) {} in VersionedInfo() argument
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/FuzzMutate/ |
| H A D | OpDescriptor.h | 61 SourcePred(PredT Pred, std::nullopt_t) : Pred(Pred) { in SourcePred() argument
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
| H A D | Parsing.cpp | 155 static ExpectedProgress<std::nullopt_t> parseChar(char c, ParseState State) { in parseChar()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Template.h | 228 void addOuterTemplateArguments(std::nullopt_t) { in addOuterTemplateArguments() argument
|
| /freebsd-14.2/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-port.h | 2383 inline ::absl::nullopt_t Nullopt() { return ::absl::nullopt; } 2397 inline ::std::nullopt_t Nullopt() { return ::std::nullopt; }
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
| H A D | MILexer.cpp | 35 Cursor(std::nullopt_t) {} in Cursor() argument
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.h | 1234 static const std::nullopt_t DefaultAST;
|
| H A D | TypeSystemClang.cpp | 9449 const std::nullopt_t ScratchTypeSystemClang::DefaultAST = std::nullopt;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 7212 std::nullopt_t unsupportedType(QualType Ty) { in unsupportedType() 7219 std::nullopt_t unrepresentableValue(QualType Ty, const APSInt &Val) { in unrepresentableValue()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
| H A D | StdSymbolMap.inc | 2291 SYMBOL(nullopt_t, std::, <optional>)
|