HomeSort by relevance Sort by last modified time
    Searched refs:m_ptr (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/wtf/
RawPtr.h 56 m_ptr = reinterpret_cast<T*>(rawPtrZapValue);
59 RawPtr(std::nullptr_t) : m_ptr(0) { }
60 RawPtr(T* ptr) : m_ptr(ptr) { }
61 explicit RawPtr(T& reference) : m_ptr(&reference) { }
63 : m_ptr(other.get())
69 : m_ptr(other.get())
74 RawPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
75 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
77 T* get() const { return m_ptr; }
78 void clear() { m_ptr = 0;
133 T* m_ptr; member in class:WTF::RawPtr
    [all...]
OwnPtr.h 46 OwnPtr() : m_ptr(0) { }
47 OwnPtr(std::nullptr_t) : m_ptr(0) { }
54 OwnPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
55 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
67 OwnedPtrDeleter<T>::deletePtr(m_ptr);
68 m_ptr = 0;
71 PtrType get() const { return m_ptr; }
77 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; }
78 PtrType operator->() const { ASSERT(m_ptr); return m_ptr;
117 PtrType m_ptr; member in class:WTF::OwnPtr
    [all...]
  /system/core/include/utils/
StrongPointer.h 35 return m_ptr _op_ o.m_ptr; \
38 return m_ptr _op_ o; \
42 return m_ptr _op_ o.m_ptr; \
46 return m_ptr _op_ o; \
49 return m_ptr _op_ o.m_ptr; \
53 return m_ptr _op_ o.m_ptr; \
    [all...]
RefBase.h 40 return m_ptr _op_ o.m_ptr; \
43 return m_ptr _op_ o; \
47 return m_ptr _op_ o.m_ptr; \
51 return m_ptr _op_ o; \
221 inline wp() : m_ptr(0) { }
256 inline T* unsafe_get() const { return m_ptr; }
268 return (m_ptr == o.m_ptr) && (m_refs == o.m_refs)
    [all...]
  /system/core/libpixelflinger/codeflinger/tinyutils/
smartpointer.h 32 return m_ptr _op_ o.m_ptr; \
35 return m_ptr _op_ o; \
39 return m_ptr _op_ o.m_ptr; \
43 return m_ptr _op_ o; \
52 inline sp() : m_ptr(0) { }
74 inline T& operator* () const { return *m_ptr; }
75 inline T* operator-> () const { return m_ptr; }
76 inline T* get() const { return m_ptr; }
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
SmartPtr.h 33 m_ptr = ptr;
48 m_ptr = rhs.m_ptr;
61 m_ptr = rhs.m_ptr;
78 return m_ptr;
83 return m_ptr;
87 return m_ptr;
91 return *m_ptr;
95 return (void *)m_ptr;
138 T* m_ptr; member in class:SmartPtr
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebPrivateOwnPtr.h 48 WebPrivateOwnPtr() : m_ptr(0) {}
49 ~WebPrivateOwnPtr() { BLINK_ASSERT(!m_ptr); }
52 : m_ptr(ptr)
56 T* get() const { return m_ptr; }
63 delete m_ptr;
64 m_ptr = ptr;
74 T* ptr = m_ptr;
75 m_ptr = 0;
81 BLINK_ASSERT(m_ptr);
82 return m_ptr;
87 T* m_ptr; member in class:blink::WebPrivateOwnPtr
    [all...]
WebVector.h 86 initializeFrom(other.m_ptr, other.m_size);
129 return m_ptr[i];
134 return m_ptr[i];
140 if (m_ptr[i] == value)
146 T* data() { return m_ptr; }
147 const T* data() const { return m_ptr; }
151 std::swap(m_ptr, other.m_ptr);
161 m_ptr = 0;
163 m_ptr = static_cast<T*>(::operator new(sizeof(T) * m_size))
    [all...]
  /external/clang/test/Analysis/
pointer-to-member.cpp 8 operator MemberPointer() const { return m_ptr ? &A::m_ptr : 0; }
10 A *m_ptr; member in struct:A
19 obj.m_ptr = &obj;
20 clang_analyzer_eval(obj.m_ptr); // expected-warning{{TRUE}}
21 clang_analyzer_eval(&A::m_ptr); // expected-warning{{TRUE}}
24 obj.m_ptr = 0;
25 clang_analyzer_eval(obj.m_ptr); // expected-warning{{FALSE}}
39 clang_analyzer_eval(&A::m_ptr == &A::m_ptr); // expected-warning{{UNKNOWN}
    [all...]
  /frameworks/rs/cpp/util/
StrongPointer.h 39 return m_ptr _op_ o.m_ptr; \
42 return m_ptr _op_ o; \
46 return m_ptr _op_ o.m_ptr; \
50 return m_ptr _op_ o; \
53 return m_ptr _op_ o.m_ptr; \
57 return m_ptr _op_ o.m_ptr; \
    [all...]
RefBase.h 40 return m_ptr _op_ o.m_ptr; \
43 return m_ptr _op_ o; \
47 return m_ptr _op_ o.m_ptr; \
51 return m_ptr _op_ o; \
203 inline wp() : m_ptr(0) { }
238 inline T* unsafe_get() const { return m_ptr; }
250 return (m_ptr == o.m_ptr) && (m_refs == o.m_refs)
    [all...]
  /frameworks/rs/server/
StrongPointer.h 38 return m_ptr _op_ o.m_ptr; \
41 return m_ptr _op_ o; \
45 return m_ptr _op_ o.m_ptr; \
49 return m_ptr _op_ o; \
52 return m_ptr _op_ o.m_ptr; \
56 return m_ptr _op_ o.m_ptr; \
    [all...]
RefBase.h 39 return m_ptr _op_ o.m_ptr; \
42 return m_ptr _op_ o; \
46 return m_ptr _op_ o.m_ptr; \
50 return m_ptr _op_ o; \
202 inline wp() : m_ptr(0) { }
237 inline T* unsafe_get() const { return m_ptr; }
249 return (m_ptr == o.m_ptr) && (m_refs == o.m_refs)
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/cpp/util/
StrongPointer.h 39 return m_ptr _op_ o.m_ptr; \
42 return m_ptr _op_ o; \
46 return m_ptr _op_ o.m_ptr; \
50 return m_ptr _op_ o; \
53 return m_ptr _op_ o.m_ptr; \
57 return m_ptr _op_ o.m_ptr; \
    [all...]
RefBase.h 40 return m_ptr _op_ o.m_ptr; \
43 return m_ptr _op_ o; \
47 return m_ptr _op_ o.m_ptr; \
51 return m_ptr _op_ o; \
203 inline wp() : m_ptr(0) { }
238 inline T* unsafe_get() const { return m_ptr; }
250 return (m_ptr == o.m_ptr) && (m_refs == o.m_refs)
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/server/
StrongPointer.h 38 return m_ptr _op_ o.m_ptr; \
41 return m_ptr _op_ o; \
45 return m_ptr _op_ o.m_ptr; \
49 return m_ptr _op_ o; \
52 return m_ptr _op_ o.m_ptr; \
56 return m_ptr _op_ o.m_ptr; \
    [all...]
RefBase.h 39 return m_ptr _op_ o.m_ptr; \
42 return m_ptr _op_ o; \
46 return m_ptr _op_ o.m_ptr; \
50 return m_ptr _op_ o; \
202 inline wp() : m_ptr(0) { }
237 inline T* unsafe_get() const { return m_ptr; }
249 return (m_ptr == o.m_ptr) && (m_refs == o.m_refs)
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/util/
StrongPointer.h 39 return m_ptr _op_ o.m_ptr; \
42 return m_ptr _op_ o; \
46 return m_ptr _op_ o.m_ptr; \
50 return m_ptr _op_ o; \
53 return m_ptr _op_ o.m_ptr; \
57 return m_ptr _op_ o.m_ptr; \
    [all...]
RefBase.h 40 return m_ptr _op_ o.m_ptr; \
43 return m_ptr _op_ o; \
47 return m_ptr _op_ o.m_ptr; \
51 return m_ptr _op_ o; \
203 inline wp() : m_ptr(0) { }
238 inline T* unsafe_get() const { return m_ptr; }
250 return (m_ptr == o.m_ptr) && (m_refs == o.m_refs)
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/server/
StrongPointer.h 38 return m_ptr _op_ o.m_ptr; \
41 return m_ptr _op_ o; \
45 return m_ptr _op_ o.m_ptr; \
49 return m_ptr _op_ o; \
52 return m_ptr _op_ o.m_ptr; \
56 return m_ptr _op_ o.m_ptr; \
    [all...]
RefBase.h 39 return m_ptr _op_ o.m_ptr; \
42 return m_ptr _op_ o; \
46 return m_ptr _op_ o.m_ptr; \
50 return m_ptr _op_ o; \
202 inline wp() : m_ptr(0) { }
237 inline T* unsafe_get() const { return m_ptr; }
249 return (m_ptr == o.m_ptr) && (m_refs == o.m_refs)
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/cpp/util/
StrongPointer.h 39 return m_ptr _op_ o.m_ptr; \
42 return m_ptr _op_ o; \
46 return m_ptr _op_ o.m_ptr; \
50 return m_ptr _op_ o; \
53 return m_ptr _op_ o.m_ptr; \
57 return m_ptr _op_ o.m_ptr; \
    [all...]
RefBase.h 40 return m_ptr _op_ o.m_ptr; \
43 return m_ptr _op_ o; \
47 return m_ptr _op_ o.m_ptr; \
51 return m_ptr _op_ o; \
203 inline wp() : m_ptr(0) { }
238 inline T* unsafe_get() const { return m_ptr; }
250 return (m_ptr == o.m_ptr) && (m_refs == o.m_refs)
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/server/
StrongPointer.h 38 return m_ptr _op_ o.m_ptr; \
41 return m_ptr _op_ o; \
45 return m_ptr _op_ o.m_ptr; \
49 return m_ptr _op_ o; \
52 return m_ptr _op_ o.m_ptr; \
56 return m_ptr _op_ o.m_ptr; \
    [all...]
RefBase.h 39 return m_ptr _op_ o.m_ptr; \
42 return m_ptr _op_ o; \
46 return m_ptr _op_ o.m_ptr; \
50 return m_ptr _op_ o; \
202 inline wp() : m_ptr(0) { }
237 inline T* unsafe_get() const { return m_ptr; }
249 return (m_ptr == o.m_ptr) && (m_refs == o.m_refs)
    [all...]

Completed in 903 milliseconds

1 2