Lines Matching refs:Operation
46 template<typename RsType, typename HidlType, typename Operation>
47 static std::vector<RsType> hidl_to_rs(const hidl_vec<HidlType>& src, Operation operation) {
49 std::transform(src.begin(), src.end(), dst.begin(), operation);
58 template<typename HidlType, typename RsType, typename Operation>
59 static hidl_vec<HidlType> rs_to_hidl(const std::vector<RsType>& src, Operation operation) {
61 std::transform(src.begin(), src.end(), dst.begin(), operation);