Lines Matching defs:ptr

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