Lines Matching refs:pValue

105 	const PPDValue* pValue = NULL;  in copyJobDataToJobSetup()  local
111 pValue = rData.m_aContext.getValue( pKey ); in copyJobDataToJobSetup()
112 if( pKey && pValue ) in copyJobDataToJobSetup()
115 pValue != pKey->getValue( pJobSetup->mnPaperBin ) && in copyJobDataToJobSetup()
119 if( pJobSetup->mnPaperBin >= pKey->countValues() || pValue == pKey->getDefaultValue() ) in copyJobDataToJobSetup()
125 pValue = NULL; in copyJobDataToJobSetup()
131 pValue = rData.m_aContext.getValue( pKey ); in copyJobDataToJobSetup()
132 if( pKey && pValue ) in copyJobDataToJobSetup()
134 if( pValue->m_aOption.EqualsIgnoreCaseAscii( "None" ) || in copyJobDataToJobSetup()
135 pValue->m_aOption.EqualsIgnoreCaseAscii( "Simplex", 0, 7 ) in copyJobDataToJobSetup()
140 else if( pValue->m_aOption.EqualsIgnoreCaseAscii( "DuplexNoTumble" ) ) in copyJobDataToJobSetup()
144 else if( pValue->m_aOption.EqualsIgnoreCaseAscii( "DuplexTumble" ) ) in copyJobDataToJobSetup()
469 const PPDValue* pValue = pKey->getValue( i ); in InitPaperFormats() local
471 m_aJobData.m_pParser->getPaperDimension( pValue->m_aOption, nWidth, nHeight ); in InitPaperFormats()
567 const PPDValue* pValue; in SetData() local
593 pValue = pKey ? pKey->getValue( aPaper ) : NULL; in SetData()
594 if( ! ( pKey && pValue && aData.m_aContext.setValue( pKey, pValue, false ) == pValue ) ) in SetData()
606 pValue = pKey->getDefaultValue(); in SetData()
608 pValue = pKey->getValue( pJobSetup->mnPaperBin ); in SetData()
612 aData.m_aContext.setValue( pKey, pValue ); in SetData()
628 pValue = NULL; in SetData()
632 pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "None" ) ) ); in SetData()
633 if( pValue == NULL ) in SetData()
634pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "SimplexNoTumble" ) ) ); in SetData()
637pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "DuplexTumble" ) ) ); in SetData()
640pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "DuplexNoTumble" ) ) ); in SetData()
644 pValue = 0; in SetData()
647 if( ! pValue ) in SetData()
648 pValue = pKey->getDefaultValue(); in SetData()
649 aData.m_aContext.setValue( pKey, pValue ); in SetData()
734 const PPDValue* pValue = pKey->getValue( nPaperBin ); in GetPaperBinName() local
735 if( pValue ) in GetPaperBinName()
736 aRet = aData.m_pParser->translateOption( pKey->getKey(), pValue->m_aOption ); in GetPaperBinName()