Lines Matching defs:that
4 * Use of this source code is governed by a BSD-style license that can be
357 // hb_face_create always succeeds. Check that the format is minimally recognized first.
449 // Creating a sub font means that non-available functions
462 // Creating a sub font means that non-available functions
693 // Glyphs are in logical order, but output ltr since PDF readers seem to expect that.
759 ShapedRunGlyphIterator(const ShapedRunGlyphIterator& that) = default;
760 ShapedRunGlyphIterator& operator=(const ShapedRunGlyphIterator& that) = default;
761 bool operator==(const ShapedRunGlyphIterator& that) const {
762 return fRuns == that.fRuns &&
763 fRunIndex == that.fRunIndex &&
764 fGlyphIndex == that.fGlyphIndex;
766 bool operator!=(const ShapedRunGlyphIterator& that) const {
767 return fRuns != that.fRuns ||
768 fRunIndex != that.fRunIndex ||
769 fGlyphIndex != that.fGlyphIndex;
1613 // Note that the advances remain ltr.