Lines Matching refs:other
125 * The other list will be fully copied and the capacity will be the same as
126 * the size of the other list. The com::Bstr's are silently converted to
129 * @param other The list to copy.
132 RTCList(ComSafeArrayIn(IN_BSTR, other))
134 com::SafeArray<IN_BSTR> sfaOther(ComSafeArrayInArg(other));
145 * The other list will be fully copied and the capacity will be the same as
146 * the size of the other list. The com::Bstr's are silently converted to
149 * @param other The list to copy.
152 RTCList(const com::SafeArray<IN_BSTR> &other)
153 : BASE(other.size())
156 RTCListHelper<T, ITYPE>::set(m_pArray, i, T(other[i]));
160 * Copy the items of the other list into this list. All previous items of
163 * @param other The list to copy.
167 RTCListBase<T, ITYPE, MT> &operator=(const com::SafeArray<IN_BSTR> &other)
175 size_t cElementsOther = other.size();
180 RTCListHelper<T, ITYPE>::set(m_pArray, i, T(other[i]));