Lines Matching refs:ptr

43 …    static reference   GetValue(void* ptr)   { return GetValue( reinterpret_cast<pointer>(ptr) ); }  in GetValue()  argument
44 static reference GetValue(pointer ptr) { return *ptr; } in GetValue() argument
45 …static const_reference GetValue(const void* ptr) { return GetValue( reinterpret_cast<const_poi… in GetValue() argument
46 static const_reference GetValue(const_pointer ptr) { return *ptr; } in GetValue() argument
48 static iter_pointer GetPointer(pointer ptr) { return ptr; } in GetPointer() argument
49 static const_iter_pointer GetPointer(const_pointer ptr) { return ptr; } in GetPointer() argument
51 static pointer GetNext(pointer ptr) { return ptr + 1; } in GetNext() argument
52 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() argument
69 …static const_reference GetValue(const void* ptr) { return GetValue( reinterpret_cast<const_poi… in GetValue() argument
70 static const_reference GetValue(const_pointer ptr) { return *ptr; } in GetValue() argument
71 static const_iter_pointer GetPointer(const_pointer ptr) { return ptr; } in GetPointer() argument
73 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() argument
88 ResPtr(void* ptr) : m_Res(ptr) {}
98 ResPtr(const void* ptr) : m_Res(ptr) {}
120 static iter_pointer GetPointer(pointer ptr) { return ResPtr<T>( ptr->to_ptr() ); } in GetPointer() argument
121 … static const_iter_pointer GetPointer(const_pointer ptr) { return ResPtr<T>( ptr->to_ptr() ); } in GetPointer() argument
124 … static reference GetValue(void* ptr) { return GetValue( reinterpret_cast<pointer>(ptr) ); } in GetValue() argument
125 static reference GetValue(pointer ptr) { return T( ptr->to_ptr() ); } in GetValue() argument
126 …static const_reference GetValue(const void* ptr) { return GetValue( reinterpret_cast<const_poi… in GetValue() argument
127 static const_reference GetValue(const_pointer ptr) { return T( ptr->to_ptr() ); } in GetValue() argument
129 static pointer GetNext(pointer ptr) { return ptr + 1; } in GetNext() argument
130 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() argument
145 …static const_reference GetValue(const void* ptr) { return GetValue( reinterpret_cast<const_poi… in GetValue() argument
146 static const_reference GetValue(const_pointer ptr) { return T( ptr->to_ptr() ); } in GetValue() argument
148 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() argument