Searched refs:start_index (Results 1 - 5 of 5) sorted by relevance

/inkscape/src/
H A Dtext-tag-attributes.h64 \a start_index and extending for \a n fields. This is what you want
66 void erase(unsigned start_index, unsigned n);
69 start_index. This is what you want to do when inserting characters
70 in the corresponding text. If a vector is shorter than \a start_index
75 void insert(unsigned start_index, unsigned n);
155 static void eraseSingleAttribute(std::vector<SVGLength> *attr_vector, unsigned start_index, unsigned n);
158 static void insertSingleAttribute(std::vector<SVGLength> *attr_vector, unsigned start_index, unsigned n, bool is_xy);
H A Dsp-text.cpp885 void TextTagAttributes::erase(unsigned start_index, unsigned n) argument
889 eraseSingleAttribute(&attributes.x, start_index, n);
890 eraseSingleAttribute(&attributes.y, start_index, n);
892 eraseSingleAttribute(&attributes.dx, start_index, n);
893 eraseSingleAttribute(&attributes.dy, start_index, n);
894 eraseSingleAttribute(&attributes.rotate, start_index, n);
897 void TextTagAttributes::eraseSingleAttribute(std::vector<SVGLength> *attr_vector, unsigned start_index, unsigned n) argument
899 if (attr_vector->size() <= start_index) return;
900 if (attr_vector->size() <= start_index + n)
901 attr_vector->erase(attr_vector->begin() + start_index, attr_vecto
906 insert(unsigned start_index, unsigned n) argument
918 insertSingleAttribute(std::vector<SVGLength> *attr_vector, unsigned start_index, unsigned n, bool is_xy) argument
[all...]
/inkscape/src/libnrtype/
H A DTextWrapper.cpp233 int plOffset = pLine->start_index; // start of the line in the uni32_text
H A DLayout-TNG-Compute.cpp1070 attribute_font_description->start_index = para_text.bytes();
1075 attribute_font_features->start_index = para_text.bytes();
/inkscape/src/widgets/
H A Druler.cpp1537 attr->start_index = 0;

Completed in 32 milliseconds