Searched refs:span_index (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/libnrtype/
H A DLayout-TNG-Output.cpp154 for (unsigned span_index = 0 ; span_index < _spans.size() ; span_index++) {
155 if (_input_stream[_spans[span_index].in_input_stream_item]->Type() != TEXT_SOURCE) continue;
156 InputStreamTextSource const *text_source = static_cast<InputStreamTextSource const *>(_input_stream[_spans[span_index].in_input_stream_item]);
158 text_source->style->text_decoration_data.tspan_width = _spans[span_index].width();
159 text_source->style->text_decoration_data.ascender = _spans[span_index].line_height.getTypoAscent();
160 text_source->style->text_decoration_data.descender = _spans[span_index].line_height.getTypoDescent();
162 if(!span_index ||
163 (_chunks[_spans[span_index]
297 unsigned span_index = _characters[char_index].in_span; local
[all...]
H A DLayout-TNG-OutIter.cpp56 unsigned span_index; local
58 span_index = _lineToSpan(_chunks[chunk_index].in_line);
59 for ( ; span_index < _spans.size() && _spans[span_index].in_chunk < chunk_index ; span_index++){};
61 span_index = 0;
62 for ( ; span_index < _spans.size() && _spans[span_index].in_chunk == chunk_index ; span_index++)
63 chunk_width = std::max(chunk_width, (double)std::max(_spans[span_index]
117 unsigned span_index = 0; local
386 unsigned span_index = _characters[char_index].in_span; local
[all...]
H A DLayout-TNG.h403 Glib::ustring getFontFamily(unsigned span_index) const;
904 inline unsigned _spanToCharacter(unsigned span_index) const
905 {return std::lower_bound(_characters.begin(), _characters.end(), span_index, PredicateSpanToCharacter(this)) - _characters.begin();}

Completed in 77 milliseconds