Searched refs:second_vector (Results 1 - 2 of 2) sorted by relevance
/inkscape/src/ |
H A D | text-tag-attributes.h | 161 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 D | sp-text.cpp | 943 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 13 milliseconds