HomeSort by relevance Sort by last modified time
    Searched refs:PtrType (Results 1 - 18 of 18) 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 44 typedef ValueType* PtrType;
71 PtrType get() const { return m_ptr; }
75 PtrType leakPtr() WARN_UNUSED_RETURN;
78 PtrType operator->() const { ASSERT(m_ptr); return m_ptr; }
85 typedef PtrType OwnPtr::*UnspecifiedBoolType;
117 PtrType m_ptr;
133 PtrType ptr = m_ptr;
140 PtrType ptr = m_ptr;
145 template<typename T> inline typename OwnPtr<T>::PtrType OwnPtr<T>::leakPtr()
147 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 156 typedef typename OwnPtr<P>::PtrType PeekInType;
165 typedef typename OwnPtr<P>::PtrType PeekOutType;
Functional.h 371 static typename RetainPtr<T>::PtrType unwrap(const StorageType& value) { return value.get(); }
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
ModuleUtils.h 23 template <class PtrType, unsigned SmallSize> class SmallPtrSet;
  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 240 template <typename PtrType>
242 typedef PointerLikeTypeTraits<PtrType> PtrTraits;
256 bool insert(PtrType Ptr) {
262 bool erase(PtrType Ptr) {
267 size_type count(PtrType Ptr) const {
277 typedef SmallPtrSetIterator<PtrType> iterator;
278 typedef SmallPtrSetIterator<PtrType> const_iterator;
291 template<class PtrType, unsigned SmallSize>
292 class SmallPtrSet : public SmallPtrSetImpl<PtrType> {
293 typedef SmallPtrSetImpl<PtrType> BaseT
    [all...]
  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 26 template<class PtrType, unsigned SmallSize>
  /external/llvm/unittests/Analysis/
MixedTBAATest.cpp 40 auto PtrType = Type::getInt32PtrTy(C);
42 auto *Addr = ConstantPointerNull::get(PtrType);
  /external/eigen/Eigen/src/Core/
DenseStorage.h 64 template<typename PtrType>
65 EIGEN_ALWAYS_INLINE PtrType eigen_unaligned_array_assert_workaround_gcc47(PtrType array) { return array; }
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageDecodingStore.cpp 279 const typename U::MappedType::PtrType cacheEntry = cacheMap->get(cacheIdentifierList[i]);
  /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/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 319 llvm::Type *getImageRelativeType(llvm::Type *PtrType) {
321 return PtrType;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
TargetLowering.cpp     [all...]
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 4795 milliseconds