HomeSort by relevance Sort by last modified time
    Searched refs:PtrType (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
RetainPtr.h 67 typedef ValueType* PtrType;
70 RetainPtr(PtrType ptr) : m_ptr(ptr) { if (ptr) CFRetain(ptr); }
72 RetainPtr(AdoptCFTag, PtrType ptr) : m_ptr(ptr) { }
73 RetainPtr(AdoptNSTag, PtrType ptr) : m_ptr(ptr) { adoptNSReference(ptr); }
75 RetainPtr(const RetainPtr& o) : m_ptr(o.m_ptr) { if (PtrType ptr = m_ptr) CFRetain(ptr); }
85 ~RetainPtr() { if (PtrType ptr = m_ptr) CFRelease(ptr); }
90 PtrType leakRef() WARN_UNUSED_RETURN;
92 PtrType get() const { return m_ptr; }
93 PtrType operator->() const { return m_ptr; }
95 explicit operator PtrType() const { return m_ptr;
    [all...]
OwnPtr.h 43 typedef ValueType* PtrType;
66 PtrType get() const { return m_ptr; }
70 PtrType leakPtr() WARN_UNUSED_RETURN;
73 PtrType operator->() const { ASSERT(m_ptr); return m_ptr; }
80 typedef PtrType OwnPtr::*UnspecifiedBoolType;
110 PtrType m_ptr;
126 PtrType ptr = m_ptr;
133 PtrType ptr = m_ptr;
138 template<typename T> inline typename OwnPtr<T>::PtrType OwnPtr<T>::leakPtr()
140 PtrType ptr = m_ptr
    [all...]
PassOwnPtr.h 44 typedef ValueType* PtrType;
57 PtrType get() const { return m_ptr; }
59 PtrType leakPtr() const WARN_UNUSED_RETURN;
62 PtrType operator->() const { ASSERT(m_ptr); return m_ptr; }
67 typedef PtrType PassOwnPtr::*UnspecifiedBoolType;
75 explicit PassOwnPtr(PtrType ptr) : m_ptr(ptr) { }
86 mutable PtrType m_ptr;
95 template<typename T> inline typename PassOwnPtr<T>::PtrType PassOwnPtr<T>::leakPtr() const
97 PtrType ptr = m_ptr;
HashTraits.h 142 typedef typename OwnPtr<P>::PtrType PeekType;
Functional.h 352 static typename RetainPtr<T>::PtrType unwrap(const StorageType& value) { return value.get(); }
  /external/llvm/include/llvm/Transforms/Utils/
ModuleUtils.h 23 template <class PtrType, unsigned SmallSize> class SmallPtrSet;
  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 235 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/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600ISelLowering.cpp 362 PointerType * PtrType = PointerType::get(VT.getTypeForEVT(*DAG.getContext()),
370 MachinePointerInfo(ConstantPointerNull::get(PtrType)),
  /external/mesa3d/src/gallium/drivers/radeon/
R600ISelLowering.cpp 362 PointerType * PtrType = PointerType::get(VT.getTypeForEVT(*DAG.getContext()),
370 MachinePointerInfo(ConstantPointerNull::get(PtrType)),
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageDecodingStore.cpp 433 const typename U::MappedType::PtrType cacheEntry = cacheMap->get(cacheIdentifierList[i]);
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp 783 PointerType * PtrType = PointerType::get(VT.getTypeForEVT(*DAG.getContext()),
791 MachinePointerInfo(ConstantPointerNull::get(PtrType)),
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 74 milliseconds