/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | CustomizableOptional.h | 35 constexpr CustomizableOptional(std::nullopt_t) {} in CustomizableOptional() argument 151 constexpr bool operator==(const CustomizableOptional<T> &X, std::nullopt_t) { 156 constexpr bool operator==(std::nullopt_t, const CustomizableOptional<T> &X) { 161 constexpr bool operator!=(const CustomizableOptional<T> &X, std::nullopt_t) { 166 constexpr bool operator!=(std::nullopt_t, const CustomizableOptional<T> &X) { 171 constexpr bool operator<(const CustomizableOptional<T> &, std::nullopt_t) { 176 constexpr bool operator<(std::nullopt_t, const CustomizableOptional<T> &X) { 181 constexpr bool operator<=(const CustomizableOptional<T> &X, std::nullopt_t) { 186 constexpr bool operator<=(std::nullopt_t, const CustomizableOptional<T> &X) { 191 constexpr bool operator>(const CustomizableOptional<T> &X, std::nullopt_t) { [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | optional | 29 struct nullopt_t{see below }; 30 inline constexpr nullopt_t nullopt(unspecified ); 53 template<class T> constexpr bool operator==(const optional<T>&, nullopt_t) noexcept; 54 …template<class T> constexpr bool operator==(nullopt_t, const optional<T>&) noexcept; // until C++17 55 …template<class T> constexpr bool operator!=(const optional<T>&, nullopt_t) noexcept; // until C++17 56 …template<class T> constexpr bool operator!=(nullopt_t, const optional<T>&) noexcept; // until C++17 57 …template<class T> constexpr bool operator<(const optional<T>&, nullopt_t) noexcept; // until C++17 58 …template<class T> constexpr bool operator<(nullopt_t, const optional<T>&) noexcept; // until C++17 59 …template<class T> constexpr bool operator<=(const optional<T>&, nullopt_t) noexcept; // until C++17 60 …template<class T> constexpr bool operator<=(nullopt_t, const optional<T>&) noexcept; // until C++17 [all …]
|
/freebsd/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 | 783 raw_ostream &operator<<(raw_ostream &OS, std::nullopt_t);
|
/freebsd/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
|
H A D | StringMap.h | 294 if constexpr (!std::is_same_v<ValueTy, std::nullopt_t>) {
|
/freebsd/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/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/contrib/llvm-project/libcxx/modules/std/ |
H A D | optional.cppm |
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Timeout.h | 39 Timeout(std::nullopt_t none) : Base(none) {} in Timeout()
|
/freebsd/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/contrib/llvm-project/clang/include/clang/APINotes/ |
H A D | APINotesReader.h | 62 VersionedInfo(std::nullopt_t) : Selected(std::nullopt) {} in VersionedInfo() argument
|
/freebsd/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/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/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Template.h | 228 void addOuterTemplateArguments(std::nullopt_t) { in addOuterTemplateArguments() argument
|
/freebsd/contrib/googletest/googletest/include/gtest/internal/ |
H A D | gtest-port.h | 2431 inline ::absl::nullopt_t Nullopt() { return ::absl::nullopt; } 2445 inline ::std::nullopt_t Nullopt() { return ::std::nullopt; }
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
H A D | MILexer.cpp | 35 Cursor(std::nullopt_t) {} in Cursor() argument
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.h | 1261 static const std::nullopt_t DefaultAST;
|
H A D | TypeSystemClang.cpp | 9663 const std::nullopt_t ScratchTypeSystemClang::DefaultAST = std::nullopt;
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 7273 std::nullopt_t unsupportedType(QualType Ty) { in unsupportedType() 7280 std::nullopt_t unrepresentableValue(QualType Ty, const APSInt &Val) { in unrepresentableValue()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 2291 SYMBOL(nullopt_t, std::, <optional>)
|