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

/inkscape/src/
H A Dtext-tag-attributes.h161 static void splitSingleAttribute(std::vector<SVGLength> *first_vector, unsigned index, std::vector<SVGLength> *second_vector, bool trimZeros);
164 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.cpp943 void TextTagAttributes::splitSingleAttribute(std::vector<SVGLength> *first_vector, unsigned index, std::vector<SVGLength> *second_vector, bool trimZeros) argument
946 if (first_vector->size() <= index) return;
947 second_vector->resize(first_vector->size() - index);
948 std::copy(first_vector->begin() + index, first_vector->end(), second_vector->begin());
949 first_vector->resize(index);
951 while (!first_vector->empty() && (!first_vector->back()._set || first_vector->back().value == 0.0))
952 first_vector
969 joinSingleAttribute(std::vector<SVGLength> *dest_vector, std::vector<SVGLength> const &first_vector, std::vector<SVGLength> const &second_vector, unsigned second_index) argument
[all...]

Completed in 45 milliseconds