Lines Matching refs:m_pInputSlots
670 m_pInputSlots( NULL ), in PPDParser()
812 m_pInputSlots = getKey( String( RTL_CONSTASCII_USTRINGPARAM( "InputSlot" ) ) ); in PPDParser()
813 if( m_pInputSlots ) in PPDParser()
814 m_pDefaultInputSlot = m_pInputSlots->getDefaultValue(); in PPDParser()
1410 if( ! m_pInputSlots ) in getSlot()
1413 if( nSlot > 0 && nSlot < m_pInputSlots->countValues() ) in getSlot()
1414 return m_pInputSlots->getValue( nSlot )->m_aOption; in getSlot()
1415 else if( m_pInputSlots->countValues() > 0 ) in getSlot()
1416 return m_pInputSlots->getValue( (sal_uLong)0 )->m_aOption; in getSlot()
1423 if( ! m_pInputSlots ) in getSlotCommand()
1426 if( nSlot > 0 && nSlot < m_pInputSlots->countValues() ) in getSlotCommand()
1427 return m_pInputSlots->getValue( nSlot )->m_aValue; in getSlotCommand()
1428 else if( m_pInputSlots->countValues() > 0 ) in getSlotCommand()
1429 return m_pInputSlots->getValue( (sal_uLong)0 )->m_aValue; in getSlotCommand()
1436 if( ! m_pInputSlots ) in getSlotCommand()
1439 for( int i=0; i < m_pInputSlots->countValues(); i++ ) in getSlotCommand()
1441 const PPDValue* pValue = m_pInputSlots->getValue( i ); in getSlotCommand()