Home | History | Annotate | Download | only in core

Lines Matching refs:nullptr_t

209     constexpr sk_sp(std::nullptr_t) : fPtr(nullptr) {}
244 sk_sp<T>& operator=(std::nullptr_t) { this->reset(); return *this; }
330 template <typename T> inline bool operator==(const sk_sp<T>& a, std::nullptr_t) /*noexcept*/ {
333 template <typename T> inline bool operator==(std::nullptr_t, const sk_sp<T>& b) /*noexcept*/ {
340 template <typename T> inline bool operator!=(const sk_sp<T>& a, std::nullptr_t) /*noexcept*/ {
343 template <typename T> inline bool operator!=(std::nullptr_t, const sk_sp<T>& b) /*noexcept*/ {
353 template <typename T> inline bool operator<(const sk_sp<T>& a, std::nullptr_t) {
356 template <typename T> inline bool operator<(std::nullptr_t, const sk_sp<T>& b) {
363 template <typename T> inline bool operator<=(const sk_sp<T>& a, std::nullptr_t) {
366 template <typename T> inline bool operator<=(std::nullptr_t, const sk_sp<T>& b) {
373 template <typename T> inline bool operator>(const sk_sp<T>& a, std::nullptr_t) {
376 template <typename T> inline bool operator>(std::nullptr_t, const sk_sp<T>& b) {
383 template <typename T> inline bool operator>=(const sk_sp<T>& a, std::nullptr_t) {
386 template <typename T> inline bool operator>=(std::nullptr_t, const sk_sp<T>& b) {