Lines Matching refs:m_Secondary

33     m_Secondary(secondary),  in PairFont()
55 return math::Max(m_Primary->GetWidth(), m_Secondary->GetWidth()); in GetWidth()
61 return math::Max(m_Primary->GetHeight(), m_Secondary->GetHeight()); in GetHeight()
67 return m_Primary->GetHeight() >= m_Secondary->GetHeight() ? in GetAscent()
69 m_Secondary->GetAscent(); in GetAscent()
75 return m_Primary->GetHeight() >= m_Secondary->GetHeight() ? in GetDescent()
77 m_Secondary->GetDescent(); in GetDescent()
83 return m_Primary->GetHeight() >= m_Secondary->GetHeight() ? in GetBaselinePos()
85 m_Secondary->GetBaselinePos(); in GetBaselinePos()
91 return m_Primary->GetHeight() >= m_Secondary->GetHeight() ? in GetCellHeight()
93 m_Secondary->GetCellHeight(); in GetCellHeight()
99 return m_Primary->GetWidth() >= m_Secondary->GetWidth() ? in GetCellWidth()
101 m_Secondary->GetCellWidth(); in GetCellWidth()
107 return math::Max(m_Primary->GetMaxCharWidth(), m_Secondary->GetMaxCharWidth()); in GetMaxCharWidth()
126 return math::Max(m_Primary->GetLineFeed(), m_Secondary->GetLineFeed()); in GetLineFeed()
132 return m_Primary->GetWidth() >= m_Secondary->GetWidth() ? in GetDefaultCharWidths()
134 m_Secondary->GetDefaultCharWidths(); in GetDefaultCharWidths()
141 m_Secondary->SetDefaultCharWidths(widths); in SetDefaultCharWidths()
148 bool bSecondary = m_Secondary->SetAlternateChar(c); in SetAlternateChar()
170 return m_Primary->GetHeight() >= m_Secondary->GetHeight() ? in SetLineFeed()
172 m_Secondary->SetLineFeed(linefeed); in SetLineFeed()
188 else if (m_Secondary->HasGlyph(c)) in GetCharWidth()
190 return m_Secondary->GetCharWidth(c); in GetCharWidth()
198 return m_Secondary->GetCharWidth(c); in GetCharWidth()
209 else if (m_Secondary->HasGlyph(c)) in GetCharWidths()
211 return m_Secondary->GetCharWidths(c); in GetCharWidths()
219 return m_Secondary->GetCharWidths(c); in GetCharWidths()
233 else if (m_Secondary->HasGlyph(c)) in GetGlyph()
235 return m_Secondary->GetGlyph(glyph, c); in GetGlyph()
243 return m_Secondary->GetGlyph(glyph, c); in GetGlyph()
250 return m_Primary->HasGlyph(c) || m_Secondary->HasGlyph(c); in HasGlyph()
276 m_Secondary->EnableLinearFilter(atSmall, atLarge); in EnableLinearFilter()