HomeSort by relevance Sort by last modified time
    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 234 template<class PtrType, unsigned SmallSize>
241 typedef PointerLikeTypeTraits<PtrType> PtrTraits;
253 bool insert(PtrType Ptr) {
259 bool erase(PtrType Ptr) {
264 bool count(PtrType Ptr) const {
274 typedef SmallPtrSetIterator<PtrType> iterator;
275 typedef SmallPtrSetIterator<PtrType> const_iterator;
285 const SmallPtrSet<PtrType, SmallSize>&
286 operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {
292 void swap(SmallPtrSet<PtrType, SmallSize> &RHS)
    [all...]
  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 26 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/Target/PTX/
PTXAsmPrinter.cpp 427 const PointerType *PtrType = dyn_cast<const PointerType>(ArgType);
429 switch (PtrType->getAddressSpace()) {
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 966 milliseconds