OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PtrType
(Results
1 - 15
of
15
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/
RetainPtr.h
58
typedef ValueType*
PtrType
;
61
RetainPtr(
PtrType
ptr) : m_ptr(ptr) { if (ptr) CFRetain(ptr); }
63
RetainPtr(AdoptCFTag,
PtrType
ptr) : m_ptr(ptr) { }
64
RetainPtr(AdoptNSTag,
PtrType
ptr) : m_ptr(ptr) { adoptNSReference(ptr); }
66
RetainPtr(const RetainPtr& o) : m_ptr(o.m_ptr) { if (
PtrType
ptr = m_ptr) CFRetain(ptr); }
72
~RetainPtr() { if (
PtrType
ptr = m_ptr) CFRelease(ptr); }
76
PtrType
get() const { return m_ptr; }
79
PtrType
leakRef() WARN_UNUSED_RETURN;
81
PtrType
operator->() const { return m_ptr; }
86
typedef
PtrType
RetainPtr::*UnspecifiedBoolType
[
all
...]
OwnPtr.h
44
typedef ValueType*
PtrType
;
59
PtrType
get() const { return m_ptr; }
63
PtrType
leakPtr() WARN_UNUSED_RETURN;
66
PtrType
operator->() const { ASSERT(m_ptr); return m_ptr; }
71
typedef
PtrType
OwnPtr::*UnspecifiedBoolType;
81
explicit OwnPtr(
PtrType
ptr) : m_ptr(ptr) { }
82
void set(
PtrType
);
86
PtrType
m_ptr;
96
PtrType
ptr = m_ptr;
103
PtrType
ptr = m_ptr
[
all
...]
OwnArrayPtr.h
37
typedef T*
PtrType
;
52
PtrType
get() const { return m_ptr; }
56
PtrType
leakPtr() WARN_UNUSED_RETURN;
59
PtrType
operator->() const { ASSERT(m_ptr); return m_ptr; }
80
explicit OwnArrayPtr(
PtrType
ptr) : m_ptr(ptr) { }
81
void set(
PtrType
);
85
PtrType
m_ptr;
95
PtrType
ptr = m_ptr;
102
PtrType
ptr = m_ptr;
107
template<typename T> inline typename OwnArrayPtr<T>::
PtrType
OwnArrayPtr<T>::leakPtr(
[
all
...]
PassOwnArrayPtr.h
42
typedef T*
PtrType
;
58
PtrType
get() const { return m_ptr; }
61
PtrType
leakPtr() const WARN_UNUSED_RETURN;
64
PtrType
operator->() const { ASSERT(m_ptr); return m_ptr; }
72
typedef
PtrType
PassOwnArrayPtr::*UnspecifiedBoolType;
85
PassOwnArrayPtr(
PtrType
ptr) : m_ptr(ptr) { }
86
PassOwnArrayPtr& operator=(
PtrType
);
91
explicit PassOwnArrayPtr(
PtrType
ptr) : m_ptr(ptr) { }
94
mutable
PtrType
m_ptr;
99
PtrType
ptr = m_ptr
[
all
...]
PassOwnPtr.h
48
typedef ValueType*
PtrType
;
60
PtrType
get() const { return m_ptr; }
63
PtrType
leakPtr() const WARN_UNUSED_RETURN;
66
PtrType
operator->() const { ASSERT(m_ptr); return m_ptr; }
71
typedef
PtrType
PassOwnPtr::*UnspecifiedBoolType;
83
PassOwnPtr(
PtrType
ptr) : m_ptr(ptr) { }
84
PassOwnPtr& operator=(
PtrType
);
89
explicit PassOwnPtr(
PtrType
ptr) : m_ptr(ptr) { }
92
mutable
PtrType
m_ptr;
97
PtrType
ptr = m_ptr
[
all
...]
/external/webkit/Source/WebKit2/UIProcess/API/cpp/
WKRetainPtr.h
38
typedef T
PtrType
;
45
WKRetainPtr(
PtrType
ptr)
52
WKRetainPtr(WKAdoptTag,
PtrType
ptr)
60
if (
PtrType
ptr = m_ptr)
67
if (
PtrType
ptr = m_ptr)
73
if (
PtrType
ptr = m_ptr)
77
PtrType
get() const { return m_ptr; }
81
PtrType
ptr = m_ptr;
87
PtrType
leakRef()
89
PtrType
ptr = m_ptr
[
all
...]
/external/webkit/Source/WebCore/platform/win/
SoftLinking.h
68
typedef resultType (callingConvention *functionName##
PtrType
) parameterDeclarations; \
69
static functionName##
PtrType
functionName##Ptr() \
71
static functionName##
PtrType
ptr; \
78
ptr = reinterpret_cast<functionName##
PtrType
>(SOFT_LINK_GETPROCADDRESS(library##Library(), #functionName)); \
/external/llvm/include/llvm/ADT/
SmallPtrSet.h
233
template<class
PtrType
, unsigned SmallSize>
240
typedef PointerLikeTypeTraits<
PtrType
> PtrTraits;
252
bool insert(
PtrType
Ptr) {
258
bool erase(
PtrType
Ptr) {
263
bool count(
PtrType
Ptr) const {
273
typedef SmallPtrSetIterator<
PtrType
> iterator;
274
typedef SmallPtrSetIterator<
PtrType
> const_iterator;
284
const SmallPtrSet<
PtrType
, SmallSize>&
285
operator=(const SmallPtrSet<
PtrType
, SmallSize> &RHS) {
/external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h
26
template<class
PtrType
, unsigned SmallSize>
/external/llvm/include/llvm/Analysis/
InlineCost.h
30
template<class
PtrType
, unsigned SmallSize>
/external/webkit/Source/JavaScriptCore/wtf/gobject/
GOwnPtr.h
126
template <typename T> inline typename GOwnPtr<T>::
PtrType
getPtr(const GOwnPtr<T>& p)
/external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp
[
all
...]
TargetLowering.cpp
[
all
...]
/external/llvm/lib/Target/Mips/
MipsISelLowering.cpp
[
all
...]
/external/llvm/lib/Target/ARM/
ARMISelLowering.cpp
[
all
...]
Completed in 251 milliseconds