Lines Matching refs:ptr

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