Lines Matching defs:ptr

41 …    static reference   GetValue(void* ptr)   { return GetValue( reinterpret_cast<pointer>(ptr) ); }  in GetValue()
42 static reference GetValue(pointer ptr) { return *ptr; } in GetValue()
43 …static const_reference GetValue(const void* ptr) { return GetValue( reinterpret_cast<const_poi… in GetValue()
44 static const_reference GetValue(const_pointer ptr) { return *ptr; } in GetValue()
46 static iter_pointer GetPointer(pointer ptr) { return ptr; } in GetPointer()
47 static const_iter_pointer GetPointer(const_pointer ptr) { return ptr; } in GetPointer()
49 static pointer GetNext(pointer ptr) { return ptr + 1; } in GetNext()
50 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext()
67 …static const_reference GetValue(const void* ptr) { return GetValue( reinterpret_cast<const_poi… in GetValue()
68 static const_reference GetValue(const_pointer ptr) { return *ptr; } in GetValue()
69 static const_iter_pointer GetPointer(const_pointer ptr) { return ptr; } in GetPointer()
71 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext()
118 static iter_pointer GetPointer(pointer ptr) { return ResPtr<T>( ptr->to_ptr() ); } in GetPointer()
119 … static const_iter_pointer GetPointer(const_pointer ptr) { return ResPtr<T>( ptr->to_ptr() ); } in GetPointer()
122 … static reference GetValue(void* ptr) { return GetValue( reinterpret_cast<pointer>(ptr) ); } in GetValue()
123 static reference GetValue(pointer ptr) { return T( ptr->to_ptr() ); } in GetValue()
124 …static const_reference GetValue(const void* ptr) { return GetValue( reinterpret_cast<const_poi… in GetValue()
125 static const_reference GetValue(const_pointer ptr) { return T( ptr->to_ptr() ); } in GetValue()
127 static pointer GetNext(pointer ptr) { return ptr + 1; } in GetNext()
128 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext()
143 …static const_reference GetValue(const void* ptr) { return GetValue( reinterpret_cast<const_poi… in GetValue()
144 static const_reference GetValue(const_pointer ptr) { return T( ptr->to_ptr() ); } in GetValue()
146 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext()