Lines Matching refs:m_Secondary
35 m_Secondary(secondary), in PairFont()
57 return math::Max(m_Primary->GetWidth(), m_Secondary->GetWidth()); in GetWidth()
63 return math::Max(m_Primary->GetHeight(), m_Secondary->GetHeight()); in GetHeight()
69 return m_Primary->GetHeight() >= m_Secondary->GetHeight() ? in GetAscent()
71 m_Secondary->GetAscent(); in GetAscent()
77 return m_Primary->GetHeight() >= m_Secondary->GetHeight() ? in GetDescent()
79 m_Secondary->GetDescent(); in GetDescent()
85 return m_Primary->GetHeight() >= m_Secondary->GetHeight() ? in GetBaselinePos()
87 m_Secondary->GetBaselinePos(); in GetBaselinePos()
93 return m_Primary->GetHeight() >= m_Secondary->GetHeight() ? in GetCellHeight()
95 m_Secondary->GetCellHeight(); in GetCellHeight()
101 return m_Primary->GetWidth() >= m_Secondary->GetWidth() ? in GetCellWidth()
103 m_Secondary->GetCellWidth(); in GetCellWidth()
109 return math::Max(m_Primary->GetMaxCharWidth(), m_Secondary->GetMaxCharWidth()); in GetMaxCharWidth()
128 return math::Max(m_Primary->GetLineFeed(), m_Secondary->GetLineFeed()); in GetLineFeed()
134 return m_Primary->GetWidth() >= m_Secondary->GetWidth() ? in GetDefaultCharWidths()
136 m_Secondary->GetDefaultCharWidths(); in GetDefaultCharWidths()
143 m_Secondary->SetDefaultCharWidths(widths); in SetDefaultCharWidths()
150 bool bSecondary = m_Secondary->SetAlternateChar(c); in SetAlternateChar()
172 return m_Primary->GetHeight() >= m_Secondary->GetHeight() ? in SetLineFeed()
174 m_Secondary->SetLineFeed(linefeed); in SetLineFeed()
190 else if (m_Secondary->HasGlyph(c)) in GetCharWidth()
192 return m_Secondary->GetCharWidth(c); in GetCharWidth()
200 return m_Secondary->GetCharWidth(c); in GetCharWidth()
211 else if (m_Secondary->HasGlyph(c)) in GetCharWidths()
213 return m_Secondary->GetCharWidths(c); in GetCharWidths()
221 return m_Secondary->GetCharWidths(c); in GetCharWidths()
235 else if (m_Secondary->HasGlyph(c)) in GetGlyph()
237 return m_Secondary->GetGlyph(glyph, c); in GetGlyph()
245 return m_Secondary->GetGlyph(glyph, c); in GetGlyph()
252 return m_Primary->HasGlyph(c) || m_Secondary->HasGlyph(c); in HasGlyph()
278 m_Secondary->EnableLinearFilter(atSmall, atLarge); in EnableLinearFilter()