Lines Matching refs:std
39 struct CreateRefClone : public ::std::unary_function< Interface, Interface >
55 struct CreateRefWithKeyClone : public ::std::unary_function<
56 ::std::pair< Key, Interface >,
57 ::std::pair< Key, Interface > >
59 ::std::pair< Key, Interface > operator() ( in operator ()()
60 const ::std::pair< Key, Interface > & rOther ) in operator ()()
68 return ::std::make_pair< Key, Interface >( rOther.first, xResult ); in operator ()()
75 const ::std::vector< Interface > & rSource, in CloneRefVector()
76 ::std::vector< Interface > & rDestination ) in CloneRefVector()
78 ::std::transform( rSource.begin(), rSource.end(), in CloneRefVector()
79 ::std::back_inserter( rDestination ), in CloneRefVector()
85 const ::std::vector< ::std::pair< Key, Interface > > & rSource, in CloneRefPairVector()
86 ::std::vector< ::std::pair< Key, Interface > > & rDestination ) in CloneRefPairVector()
88 ::std::transform( rSource.begin(), rSource.end(), in CloneRefPairVector()
89 ::std::back_inserter( rDestination ), in CloneRefPairVector()
96 const ::std::map< Key, Interface > & rSource, in CloneRefMap()
97 ::std::map< Key, Interface > & rDestination ) in CloneRefMap()
99 ::std::transform( rSource.begin(), rSource.end(), in CloneRefMap()
100 ::std::inserter( rDestination, rDestination.begin() ), in CloneRefMap()
111 ::std::transform( rSource.getConstArray(), rSource.getConstArray() + rSource.getLength(), in CloneRefSequence()