OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UnspecifiedBoolType
(Results
1 - 15
of
15
) sorted by null
/external/webkit/Source/WebCore/loader/cache/
CachedResourceHandle.h
42
typedef CachedResource* (CachedResourceHandleBase::*
UnspecifiedBoolType
);
43
operator
UnspecifiedBoolType
() const { return m_resource ? &CachedResourceHandleBase::m_resource : 0; }
/external/webkit/Source/JavaScriptCore/API/
JSRetainPtr.h
59
typedef T JSRetainPtr::*
UnspecifiedBoolType
;
60
operator
UnspecifiedBoolType
() const { return m_ptr ? &JSRetainPtr::m_ptr : 0; }
/external/webkit/Source/JavaScriptCore/wtf/
OwnPtr.h
71
typedef PtrType OwnPtr::*
UnspecifiedBoolType
;
72
operator
UnspecifiedBoolType
() const { return m_ptr ? &OwnPtr::m_ptr : 0; }
PassOwnPtr.h
71
typedef PtrType PassOwnPtr::*
UnspecifiedBoolType
;
72
operator
UnspecifiedBoolType
() const { return m_ptr ? &PassOwnPtr::m_ptr : 0; }
OwnArrayPtr.h
69
typedef T* OwnArrayPtr::*
UnspecifiedBoolType
;
70
operator
UnspecifiedBoolType
() const { return m_ptr ? &OwnArrayPtr::m_ptr : 0; }
PassOwnArrayPtr.h
72
typedef PtrType PassOwnArrayPtr::*
UnspecifiedBoolType
;
73
operator
UnspecifiedBoolType
() const { return m_ptr ? &PassOwnArrayPtr::m_ptr : 0; }
PassRefPtr.h
89
typedef T* (PassRefPtr::*
UnspecifiedBoolType
);
90
operator
UnspecifiedBoolType
() const { return m_ptr ? &PassRefPtr::m_ptr : 0; }
RefPtr.h
71
typedef T* (RefPtr::*
UnspecifiedBoolType
);
72
operator
UnspecifiedBoolType
() const { return m_ptr ? &RefPtr::m_ptr : 0; }
RetainPtr.h
86
typedef PtrType RetainPtr::*
UnspecifiedBoolType
;
87
operator
UnspecifiedBoolType
() const { return m_ptr ? &RetainPtr::m_ptr : 0; }
/external/webkit/Source/JavaScriptCore/wtf/gobject/
GOwnPtr.h
92
typedef T* GOwnPtr::*
UnspecifiedBoolType
;
93
operator
UnspecifiedBoolType
() const { return m_ptr ? &GOwnPtr::m_ptr : 0; }
GRefPtr.h
101
typedef T* GRefPtr::*
UnspecifiedBoolType
;
102
operator
UnspecifiedBoolType
() const { return m_ptr ? &GRefPtr::m_ptr : 0; }
/external/webkit/Source/WebKit2/UIProcess/API/cpp/
WKRetainPtr.h
98
typedef PtrType WKRetainPtr::*
UnspecifiedBoolType
;
99
operator
UnspecifiedBoolType
() const { return m_ptr ? &WKRetainPtr::m_ptr : 0; }
/external/webkit/Source/JavaScriptCore/runtime/
WriteBarrier.h
92
typedef T* (WriteBarrierBase::*
UnspecifiedBoolType
);
93
operator
UnspecifiedBoolType
*() const { return m_cell ? reinterpret_cast<
UnspecifiedBoolType
*>(1) : 0; }
149
typedef JSValue (WriteBarrierBase::*
UnspecifiedBoolType
);
150
operator
UnspecifiedBoolType
*() const { return get() ? reinterpret_cast<
UnspecifiedBoolType
*>(1) : 0; }
/external/webkit/Source/JavaScriptCore/heap/
Handle.h
59
typedef JSValue (HandleBase::*
UnspecifiedBoolType
);
60
operator
UnspecifiedBoolType
*() const { return (m_slot && *m_slot) ? reinterpret_cast<
UnspecifiedBoolType
*>(1) : 0; }
/external/webkit/Source/WebCore/platform/win/
COMPtr.h
81
typedef T* (COMPtr::*
UnspecifiedBoolType
)() const;
82
operator
UnspecifiedBoolType
() const { return m_ptr ? &COMPtr::get : 0; }
Completed in 663 milliseconds