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

  /external/chromium_org/third_party/WebKit/Source/wtf/
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;
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...]
  /external/llvm/unittests/Analysis/
MixedTBAATest.cpp 40 auto PtrType = Type::getInt32PtrTy(C);
42 auto *Addr = ConstantPointerNull::get(PtrType);
  /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/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp     [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 319 llvm::Type *getImageRelativeType(llvm::Type *PtrType) {
321 return PtrType;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 342 milliseconds