Searched defs:second_vector (Results 1 - 1 of 1) sorted by relevance

/inkscape/src/
H A Dsp-text.cpp943 void TextTagAttributes::splitSingleAttribute(std::vector<SVGLength> *first_vector, unsigned index, std::vector<SVGLength> *second_vector, bool trimZeros) argument
945 second_vector->clear();
947 second_vector->resize(first_vector->size() - index);
948 std::copy(first_vector->begin() + index, first_vector->end(), second_vector->begin());
969 void TextTagAttributes::joinSingleAttribute(std::vector<SVGLength> *dest_vector, std::vector<SVGLength> const &first_vector, std::vector<SVGLength> const &second_vector, unsigned second_index) argument
971 if (second_vector.empty())
974 dest_vector->resize(second_index + second_vector.size());
982 std::copy(second_vector.begin(), second_vector.end(), dest_vector->begin() + second_index);

Completed in 769 milliseconds