Lines Matching defs:end
44 constexpr const int *end() const { return &x; } in end() function
126 constexpr int *end() { return &x; } in end() function
135 constexpr int *end() const { return &globalBuff[0]; } in end() function
144 constexpr const int *end() const { return &x; } in end() function
158 constexpr const Empty *end() const { return &x; } in end() function
188 friend constexpr const int *end(EndFunction const& bf) { return &bf.x; } in end() function
231 friend constexpr int *end(EndFunctionByValue) { return &globalBuff[1]; } in end() function
237 friend constexpr int *end(EndFunctionEnabledBorrowing) { return &globalBuff[2]; } in end() function
245 friend constexpr const Empty *end(EndFunctionReturnsEmptyPtr const& bf) { return &bf.x; } in end() function
250 int end; member
252 friend constexpr const int *end(EndFunctionWithDataMember const& bf) { return &bf.x; } in end() function
258 friend constexpr const int *end(EndFunctionWithPrivateEndMember const& bf) { return &bf.y; } in end() function
266 friend constexpr const int *end(BeginMemberEndFunction const& bf) { return &bf.x; } in end() function