Searched refs:dest_vector (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/
H A Dtext-tag-attributes.h164 static void joinSingleAttribute(std::vector<SVGLength> *dest_vector, std::vector<SVGLength> const &first_vector, std::vector<SVGLength> const &second_vector, unsigned second_index);
H A Dsp-text.cpp969 void TextTagAttributes::joinSingleAttribute(std::vector<SVGLength> *dest_vector, std::vector<SVGLength> const &first_vector, std::vector<SVGLength> const &second_vector, unsigned second_index) argument
972 *dest_vector = first_vector;
974 dest_vector->resize(second_index + second_vector.size());
976 std::copy(first_vector.begin(), first_vector.end(), dest_vector->begin());
979 std::fill(dest_vector->begin() + first_vector.size(), dest_vector->begin() + second_index, zero_length);
981 std::copy(first_vector.begin(), first_vector.begin() + second_index, dest_vector->begin());
982 std::copy(second_vector.begin(), second_vector.end(), dest_vector->begin() + second_index);

Completed in 19 milliseconds