Lines Matching refs:m_pResolutions
672 m_pResolutions( NULL ), in PPDParser()
806 m_pResolutions = getKey( String( RTL_CONSTASCII_USTRINGPARAM( "Resolution" ) ) ); in PPDParser()
807 if( m_pResolutions ) in PPDParser()
808 m_pDefaultResolution = m_pResolutions->getDefaultValue(); in PPDParser()
809 DBG_ASSERT( m_pResolutions, "Warning: no Resolution in PPD\n" ); in PPDParser()
1523 if( ( ! m_pResolutions || m_pResolutions->countValues() == 0 ) && in getResolutions()
1526 return m_pResolutions ? m_pResolutions->countValues() : 0; in getResolutions()
1531 …if( ( ! m_pResolutions || m_pResolutions->countValues() == 0 ) && m_pDefaultResolution && nNr == 0… in getResolution()
1536 if( ! m_pResolutions ) in getResolution()
1539 getResolutionFromString( m_pResolutions->getValue( nNr )->m_aOption, in getResolution()
1545 if( ( ! m_pResolutions || m_pResolutions->countValues() == 0 ) && m_pDefaultResolution ) in getResolutionCommand()
1548 if( ! m_pResolutions ) in getResolutionCommand()
1552 for( int i = 0; i < m_pResolutions->countValues(); i++ ) in getResolutionCommand()
1554 getResolutionFromString( m_pResolutions->getValue( i )->m_aOption, in getResolutionCommand()
1557 return m_pResolutions->getValue( i )->m_aValue; in getResolutionCommand()