HomeSort by relevance Sort by last modified time
    Searched refs:nullptr_t (Results 26 - 50 of 138) sorted by null

12 3 4 5 6

  /external/libcxx/test/libcxx/utilities/memory/util.smartptr/util.smartptr.shared/
function_type_default_deleter.fail.cpp 27 std::nullptr_t>::value,
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.con/
assign.pass.cpp 18 // coroutine_handle& operator=(nullptr_t) noexcept
32 static_assert(std::is_nothrow_assignable<C&, std::nullptr_t>::value, "");
  /external/libcxx/test/std/utilities/function.objects/unord.hash/
pointer.pass.cpp 44 // can't hash nullptr_t until C++17
48 typedef std::nullptr_t T;
  /external/llvm/include/llvm/ADT/
IntrusiveRefCntPtr.h 247 bool operator==(std::nullptr_t A, const IntrusiveRefCntPtr<T> &B) {
252 bool operator==(const IntrusiveRefCntPtr<T> &A, std::nullptr_t B) {
257 bool operator!=(std::nullptr_t A, const IntrusiveRefCntPtr<T> &B) {
262 bool operator!=(const IntrusiveRefCntPtr<T> &A, std::nullptr_t B) {
  /external/llvm/include/llvm/ExecutionEngine/Orc/
JITSymbol.h 37 JITSymbol(std::nullptr_t)
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
IntrusiveRefCntPtr.h 229 bool operator==(std::nullptr_t A, const IntrusiveRefCntPtr<T> &B) {
234 bool operator==(const IntrusiveRefCntPtr<T> &A, std::nullptr_t B) {
239 bool operator!=(std::nullptr_t A, const IntrusiveRefCntPtr<T> &B) {
244 bool operator!=(const IntrusiveRefCntPtr<T> &A, std::nullptr_t B) {
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
IntrusiveRefCntPtr.h 245 bool operator==(std::nullptr_t A, const IntrusiveRefCntPtr<T> &B) {
250 bool operator==(const IntrusiveRefCntPtr<T> &A, std::nullptr_t B) {
255 bool operator!=(std::nullptr_t A, const IntrusiveRefCntPtr<T> &B) {
260 bool operator!=(const IntrusiveRefCntPtr<T> &A, std::nullptr_t B) {
  /external/swiftshader/third_party/subzero/src/
IceMemory.cpp 41 void CfgAllocatorTraits::set_current(std::nullptr_t) {
  /external/clang/test/Analysis/
nullptr.cpp 87 typedef decltype(nullptr) nullptr_t; typedef
90 const nullptr_t &r = nullptr;
  /art/runtime/
obj_ptr.h 57 OBJPTR_INLINE ObjPtr(std::nullptr_t)
152 OBJPTR_INLINE bool operator==(ObjPtr<MirrorType> ptr, std::nullptr_t) {
157 OBJPTR_INLINE bool operator==(std::nullptr_t, ObjPtr<MirrorType> ptr) {
180 OBJPTR_INLINE bool operator!=(ObjPtr<MirrorType> ptr, std::nullptr_t) {
185 OBJPTR_INLINE bool operator!=(std::nullptr_t, ObjPtr<MirrorType> ptr) {
  /external/libchrome/base/android/
scoped_java_ref.h 53 constexpr JavaRef(std::nullptr_t) : JavaRef() {}
97 JavaRef(std::nullptr_t) : JavaRef<jobject>(nullptr) {}
124 JavaParamRef(std::nullptr_t) : JavaRef<T>(nullptr) {}
150 constexpr ScopedJavaLocalRef(std::nullptr_t) : env_(nullptr) {}
238 constexpr ScopedJavaGlobalRef(std::nullptr_t) {}
  /external/libchrome/base/memory/
weak_ptr.h 223 WeakPtr(std::nullptr_t) {}
270 bool operator!=(const WeakPtr<T>& weak_ptr, std::nullptr_t) {
274 bool operator!=(std::nullptr_t, const WeakPtr<T>& weak_ptr) {
278 bool operator==(const WeakPtr<T>& weak_ptr, std::nullptr_t) {
282 bool operator==(std::nullptr_t, const WeakPtr<T>& weak_ptr) {
scoped_refptr.h 298 bool operator==(const scoped_refptr<T>& lhs, std::nullptr_t null) {
303 bool operator==(std::nullptr_t null, const scoped_refptr<T>& rhs) {
318 bool operator!=(const scoped_refptr<T>& lhs, std::nullptr_t null) {
323 bool operator!=(std::nullptr_t null, const scoped_refptr<T>& rhs) {
  /external/libcxx/include/support/win32/
locale_win32.h 36 locale_t(std::nullptr_t)
53 friend bool operator==(const locale_t& __left, std::nullptr_t) {
61 friend bool operator==(std::nullptr_t, const locale_t& __right) {
77 friend bool operator!=(const locale_t& __left, std::nullptr_t __right) {
85 friend bool operator!=(std::nullptr_t __left, const locale_t& __right) {
  /external/grpc-grpc/src/core/lib/gprpp/
ref_counted_ptr.h 36 RefCountedPtr(std::nullptr_t) {}
141 bool operator==(std::nullptr_t) const { return value_ == nullptr; }
153 bool operator!=(std::nullptr_t) const { return value_ != nullptr; }
  /external/libchrome/base/
callback.h 63 OnceCallback(std::nullptr_t) = delete; member in class:base::OnceCallback
111 RepeatingCallback(std::nullptr_t) = delete; member in class:base::RepeatingCallback
  /external/libcxx/test/support/
min_allocator.h 205 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {}
222 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {}
246 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {}
316 min_pointer(std::nullptr_t) : ptr_(nullptr) {}
381 operator==(min_pointer<T, ID> x, std::nullptr_t)
389 operator==(std::nullptr_t, min_pointer<T, ID> x)
397 operator!=(min_pointer<T, ID> x, std::nullptr_t)
405 operator!=(std::nullptr_t, min_pointer<T, ID> x)
  /external/catch2/projects/SelfTest/UsageTests/
ToStringTuple.tests.cpp 43 typedef std::tuple<std::nullptr_t,int,const char *> type;
  /external/libchrome/mojo/public/cpp/bindings/
associated_interface_ptr_info.h 23 AssociatedInterfacePtrInfo(std::nullptr_t) : version_(0u) {}
interface_ptr_info.h 23 InterfacePtrInfo(std::nullptr_t) : InterfacePtrInfo() {}
  /external/libcxx/test/libcxx/atomics/atomics.align/
align.pass.sh.cpp 64 CHECK_ALIGNMENT(std::nullptr_t);
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
is_array.pass.cpp 15 #include <cstddef> // for std::nullptr_t
80 test_is_not_array<std::nullptr_t>();
is_class.pass.cpp 15 #include <cstddef> // for std::nullptr_t
83 // In C++03 we have an emulation of std::nullptr_t
84 test_is_not_class<std::nullptr_t>();
is_enum.pass.cpp 15 #include <cstddef> // for std::nullptr_t
78 test_is_not_enum<std::nullptr_t>();
is_floating_point.pass.cpp 15 #include <cstddef> // for std::nullptr_t
87 test_is_not_floating_point<std::nullptr_t>();

Completed in 790 milliseconds

12 3 4 5 6