Home
last modified time | relevance | path

Searched refs:nullopt_t (Results 1 – 24 of 24) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCustomizableOptional.h35 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 Doptional29 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 DAlignment.h131 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 DSMLoc.h53 SMRange(std::nullopt_t) {} in SMRange() argument
H A Draw_ostream.h783 raw_ostream &operator<<(raw_ostream &OS, std::nullopt_t);
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringSet.h23 class StringSet : public StringMap<std::nullopt_t, AllocatorTy> {
24 using Base = StringMap<std::nullopt_t, AllocatorTy>;
H A DStringMapEntry.h88 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 DArrayRef.h70 /*implicit*/ ArrayRef(std::nullopt_t) {} in ArrayRef() argument
325 /*implicit*/ MutableArrayRef(std::nullopt_t) : ArrayRef<T>() {} in MutableArrayRef() argument
H A DStringMap.h294 if constexpr (!std::is_same_v<ValueTy, std::nullopt_t>) {
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DOptional.cpp11 llvm::raw_ostream &llvm::operator<<(raw_ostream &OS, std::nullopt_t) { in operator <<() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeConvenience.h209 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 Doptional.cppm
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DTimeout.h39 Timeout(std::nullopt_t none) : Base(none) {} in Timeout()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 std::pair<std::nullopt_t, bool> insert(const CFGBlock *Block) { in insert()
/freebsd/contrib/llvm-project/clang/include/clang/APINotes/
H A DAPINotesReader.h62 VersionedInfo(std::nullopt_t) : Selected(std::nullopt) {} in VersionedInfo() argument
/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DParsing.cpp155 static ExpectedProgress<std::nullopt_t> parseChar(char c, ParseState State) { in parseChar()
/freebsd/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DOpDescriptor.h61 SourcePred(PredT Pred, std::nullopt_t) : Pred(Pred) { in SourcePred() argument
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DTemplate.h228 void addOuterTemplateArguments(std::nullopt_t) { in addOuterTemplateArguments() argument
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2431 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 DMILexer.cpp35 Cursor(std::nullopt_t) {} in Cursor() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h1261 static const std::nullopt_t DefaultAST;
H A DTypeSystemClang.cpp9663 const std::nullopt_t ScratchTypeSystemClang::DefaultAST = std::nullopt;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp7273 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 DStdSymbolMap.inc2291 SYMBOL(nullopt_t, std::, <optional>)