OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PossiblyNull
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/
PossiblyNull.h
33
template <typename T> struct
PossiblyNull
{
34
PossiblyNull
(T data)
38
PossiblyNull
(const
PossiblyNull
<T>& source)
43
~
PossiblyNull
() { ASSERT(!m_data); }
49
template <typename T> bool
PossiblyNull
<T>::getValue(T& out)
FastMalloc.h
25
#include "
PossiblyNull
.h"
51
template <typename T> operator
PossiblyNull
<T>()
55
return
PossiblyNull
<T>(value);
Completed in 30 milliseconds