Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DCustomizableOptional.h35 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 …]
H A DDirectoryEntry.h269 OptionalDirectoryEntryRefDegradesToDirectoryEntryPtr(std::nullopt_t) {}
277 operator=(std::nullopt_t) {
H A DFileEntry.h305 OptionalFileEntryRefDegradesToFileEntryPtr(std::nullopt_t) {}
311 OptionalFileEntryRefDegradesToFileEntryPtr &operator=(std::nullopt_t) {
/openbsd-src/gnu/llvm/libcxx/include/
H A Doptional23 struct nullopt_t{see below };
24 inline constexpr nullopt_t nullopt(unspecified );
44 template <class T> constexpr bool operator==(const optional<T>&, nullopt_t) noexcept;
45 template <class T> constexpr bool operator==(nullopt_t, const optional<T>&) noexcept;
46 template <class T> constexpr bool operator!=(const optional<T>&, nullopt_t) noexcept;
47 template <class T> constexpr bool operator!=(nullopt_t, const optional<T>&) noexcept;
48 template <class T> constexpr bool operator<(const optional<T>&, nullopt_t) noexcept;
49 template <class T> constexpr bool operator<(nullopt_t, const optional<T>&) noexcept;
50 template <class T> constexpr bool operator<=(const optional<T>&, nullopt_t) noexcept;
51 template <class T> constexpr bool operator<=(nullopt_t, const optional<T>&) noexcept;
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DNone.h26 typedef std::nullopt_t NoneType;
28 inline constexpr std::nullopt_t None = std::nullopt;
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
323 /*implicit*/ MutableArrayRef(std::nullopt_t) : ArrayRef<T>() {} in MutableArrayRef() argument
/openbsd-src/gnu/llvm/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.h757 raw_ostream &operator<<(raw_ostream &OS, std::nullopt_t);
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DOptional.cpp11 llvm::raw_ostream &llvm::operator<<(raw_ostream &OS, std::nullopt_t) { in operator <<() argument
/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DParallelSnippetGenerator.cpp145 static std::variant<std::nullopt_t, MCOperand, Register>
227 std::variant<std::nullopt_t, MCOperand, Register> R = in generateSingleSnippetForInstrAvoidingDefUseOverlap()
232 if (std::holds_alternative<std::nullopt_t>(R)) in generateSingleSnippetForInstrAvoidingDefUseOverlap()
/openbsd-src/gnu/llvm/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
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 std::pair<std::nullopt_t, bool> insert(const CFGBlock *Block) { in insert()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DTimeout.h39 Timeout(std::nullopt_t none) : Base(none) {} in Timeout()
/openbsd-src/gnu/llvm/llvm/include/llvm/FuzzMutate/
H A DOpDescriptor.h60 SourcePred(PredT Pred, std::nullopt_t) : Pred(Pred) { in SourcePred() argument
/openbsd-src/gnu/llvm/clang/lib/Tooling/Transformer/
H A DParsing.cpp155 static ExpectedProgress<std::nullopt_t> parseChar(char c, ParseState State) { in parseChar()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DTemplate.h226 void addOuterTemplateArguments(std::nullopt_t) { in addOuterTemplateArguments() argument
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp35 Cursor(std::nullopt_t) {} in Cursor() argument
/openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h1168 static const std::nullopt_t DefaultAST;
H A DTypeSystemClang.cpp9925 const std::nullopt_t ScratchTypeSystemClang::DefaultAST = std::nullopt;
/openbsd-src/gnu/llvm/libcxx/docs/Status/
H A DCxx17Issues.csv239 "`2736 <https://wg21.link/LWG2736>`__","nullopt_t insufficiently constrained","Issaquah","|Complete…
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/Inclusions/
H A DStdSymbolMap.inc849 SYMBOL(nullopt_t, std::, <optional>)
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DExprConstant.cpp7046 std::nullopt_t unsupportedType(QualType Ty) { in unsupportedType()
7053 std::nullopt_t unrepresentableValue(QualType Ty, const APSInt &Val) { in unrepresentableValue()