Lines Matching refs:pValue

157 	const PPDValue* pValue = NULL;  in copyJobDataToJobSetup()  local
163 pValue = rData.m_aContext.getValue( pKey ); in copyJobDataToJobSetup()
164 if( pKey && pValue ) in copyJobDataToJobSetup()
167 pValue != pKey->getValue( pJobSetup->mnPaperBin ) && in copyJobDataToJobSetup()
177 pValue = NULL; in copyJobDataToJobSetup()
183 pValue = rData.m_aContext.getValue( pKey ); in copyJobDataToJobSetup()
184 if( pKey && pValue ) in copyJobDataToJobSetup()
186 if( pValue->m_aOption.EqualsIgnoreCaseAscii( "None" ) || in copyJobDataToJobSetup()
187 pValue->m_aOption.EqualsIgnoreCaseAscii( "Simplex", 0, 7 ) in copyJobDataToJobSetup()
192 else if( pValue->m_aOption.EqualsIgnoreCaseAscii( "DuplexNoTumble" ) ) in copyJobDataToJobSetup()
196 else if( pValue->m_aOption.EqualsIgnoreCaseAscii( "DuplexTumble" ) ) in copyJobDataToJobSetup()
537 const PPDValue* pValue = pKey->getValue( i ); in InitPaperFormats() local
539 m_aJobData.m_pParser->getPaperDimension( pValue->m_aOption, nWidth, nHeight ); in InitPaperFormats()
669 const PPDValue* pValue; in SetData() local
695 pValue = pKey ? pKey->getValueCaseInsensitive( aPaper ) : NULL; in SetData()
699 if( pKey && ! pValue && pJobSetup->mePaperFormat != PAPER_USER ) in SetData()
705 pValue = pKey->getValueCaseInsensitive( aPaper ); in SetData()
708 if( ! ( pKey && pValue && aData.m_aContext.setValue( pKey, pValue, false ) == pValue ) ) in SetData()
720 pValue = pKey->getDefaultValue(); in SetData()
722 pValue = pKey->getValue( pJobSetup->mnPaperBin ); in SetData()
726 aData.m_aContext.setValue( pKey, pValue ); in SetData()
742 pValue = NULL; in SetData()
746 pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "None" ) ) ); in SetData()
747 if( pValue == NULL ) in SetData()
748pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "SimplexNoTumble" ) ) ); in SetData()
751pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "DuplexTumble" ) ) ); in SetData()
754pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "DuplexNoTumble" ) ) ); in SetData()
758 pValue = 0; in SetData()
761 if( ! pValue ) in SetData()
762 pValue = pKey->getDefaultValue(); in SetData()
763 aData.m_aContext.setValue( pKey, pValue ); in SetData()
848 const PPDValue* pValue = pKey->getValue( nPaperBin ); in GetPaperBinName() local
849 if( pValue ) in GetPaperBinName()
850 aRet = aData.m_pParser->translateOption( pKey->getKey(), pValue->m_aOption ); in GetPaperBinName()