OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nullptr_t
(Results
1 - 11
of
11
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/
NullPtr.cpp
33
std::
nullptr_t
nullptr;
NullPtr.h
31
//
nullptr_t
type and nullptr object. They are defined in the same namespaces they
45
class
nullptr_t
{ };
class in namespace:std
48
extern std::
nullptr_t
nullptr;
PassOwnArrayPtr.h
47
PassOwnArrayPtr(std::
nullptr_t
) : m_ptr(0) { }
78
PassOwnArrayPtr& operator=(std::
nullptr_t
) { clear(); return *this; }
OwnArrayPtr.h
74
OwnArrayPtr& operator=(std::
nullptr_t
) { clear(); return *this; }
OwnPtr.h
75
OwnPtr& operator=(std::
nullptr_t
) { clear(); return *this; }
PassOwnPtr.h
76
PassOwnPtr& operator=(std::
nullptr_t
) { clear(); return *this; }
RefPtr.h
79
RefPtr& operator=(std::
nullptr_t
) { clear(); return *this; }
RetainPtr.h
94
RetainPtr& operator=(std::
nullptr_t
) { clear(); return *this; }
PassRefPtr.h
95
PassRefPtr& operator=(std::
nullptr_t
) { clear(); return *this; }
/external/clang/test/CodeGenCXX/
nullptr.cpp
12
typedef decltype(nullptr)
nullptr_t
;
typedef
14
nullptr_t
get_nullptr();
23
return typeid(
nullptr_t
);
/external/clang/test/SemaCXX/
nullptr.cpp
4
typedef decltype(nullptr)
nullptr_t
;
typedef
13
nullptr_t
f(
nullptr_t
null)
59
nullptr_t
*pn = &null;
112
int array0[__is_scalar(
nullptr_t
)? 1 : -1];
113
int array1[__is_pod(
nullptr_t
)? 1 : -1];
114
int array2[sizeof(
nullptr_t
) == sizeof(void*)? 1 : -1];
135
operator
nullptr_t
() const;
149
template<typename T,
nullptr_t
Value>
Completed in 82 milliseconds