Lines Matching refs:other
124 * The other list will be fully copied and the capacity will be the same as
125 * the size of the other list. The com::Bstr's are silently converted to
128 * @param other The list to copy.
131 RTCMTList(ComSafeArrayIn(IN_BSTR, other))
133 com::SafeArray<IN_BSTR> sfaOther(ComSafeArrayInArg(other));
144 * The other list will be fully copied and the capacity will be the same as
145 * the size of the other list. The com::Bstr's are silently converted to
148 * @param other The list to copy.
151 RTCMTList(const com::SafeArray<IN_BSTR> &other)
152 : BASE(other.size())
155 RTCListHelper<T, ITYPE>::set(m_pArray, i, T(other[i]));
159 * Copy the items of the other list into this list. All previous items of
162 * @param other The list to copy.
166 RTCListBase<T, ITYPE, MT> &operator=(const com::SafeArray<IN_BSTR> &other)
172 if (other.size() != m_cCapacity)
173 resizeArrayNoErase(other.size());
174 m_cElements = other.size();
175 for (size_t i = 0; i < other.size(); ++i)
176 RTCListHelper<T, ITYPE>::set(m_pArray, i, T(other[i]));