Home | History | Annotate | Download | only in shape

Lines Matching defs:that

4  * Use of this source code is governed by a BSD-style license that can be
92 bool operator<(const RunIterator& that) const {
93 return this->endOfCurrentRun() < that.endOfCurrentRun();
385 // Glyphs are in logical order, but output ltr since PDF readers seem to expect that.
401 ShapedRunGlyphIterator(const ShapedRunGlyphIterator& that) = default;
402 ShapedRunGlyphIterator& operator=(const ShapedRunGlyphIterator& that) = default;
403 bool operator==(const ShapedRunGlyphIterator& that) const {
404 return fRuns == that.fRuns &&
405 fRunIndex == that.fRunIndex &&
406 fGlyphIndex == that.fGlyphIndex;
408 bool operator!=(const ShapedRunGlyphIterator& that) const {
409 return fRuns != that.fRuns ||
410 fRunIndex != that.fRunIndex ||
411 fGlyphIndex != that.fGlyphIndex;
577 // Note that the advances remain ltr.