Lines Matching refs:pKey

104 	const PPDKey* pKey = NULL;  in copyJobDataToJobSetup()  local
109 pKey = rData.m_pParser->getKey( String( RTL_CONSTASCII_USTRINGPARAM( "InputSlot" ) ) ); in copyJobDataToJobSetup()
110 if( pKey ) in copyJobDataToJobSetup()
111 pValue = rData.m_aContext.getValue( pKey ); in copyJobDataToJobSetup()
112 if( pKey && pValue ) in copyJobDataToJobSetup()
115 pValue != pKey->getValue( pJobSetup->mnPaperBin ) && in copyJobDataToJobSetup()
116 pJobSetup->mnPaperBin < pKey->countValues(); in copyJobDataToJobSetup()
119 if( pJobSetup->mnPaperBin >= pKey->countValues() || pValue == pKey->getDefaultValue() ) in copyJobDataToJobSetup()
124 pKey = NULL; in copyJobDataToJobSetup()
129 pKey = rData.m_pParser->getKey( String( RTL_CONSTASCII_USTRINGPARAM( "Duplex" ) ) ); in copyJobDataToJobSetup()
130 if( pKey ) in copyJobDataToJobSetup()
131 pValue = rData.m_aContext.getValue( pKey ); in copyJobDataToJobSetup()
132 if( pKey && pValue ) in copyJobDataToJobSetup()
463 …const PPDKey* pKey = m_aJobData.m_pParser->getKey( String( RTL_CONSTASCII_USTRINGPARAM( "PageSize"… in InitPaperFormats() local
464 if( pKey ) in InitPaperFormats()
466 int nValues = pKey->countValues(); in InitPaperFormats()
469 const PPDValue* pValue = pKey->getValue( i ); in InitPaperFormats()
566 const PPDKey* pKey; in SetData() local
592 pKey = aData.m_pParser->getKey( String( RTL_CONSTASCII_USTRINGPARAM( "PageSize" ) ) ); in SetData()
593 pValue = pKey ? pKey->getValue( aPaper ) : NULL; in SetData()
594 if( ! ( pKey && pValue && aData.m_aContext.setValue( pKey, pValue, false ) == pValue ) ) in SetData()
601 pKey = aData.m_pParser->getKey( String( RTL_CONSTASCII_USTRINGPARAM( "InputSlot" ) ) ); in SetData()
602 if( pKey ) 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()
625 pKey = aData.m_pParser->getKey( String( RTL_CONSTASCII_USTRINGPARAM( "Duplex" ) ) ); in SetData()
626 if( pKey ) in SetData()
632 pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "None" ) ) ); in SetData()
634 … pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "SimplexNoTumble" ) ) ); in SetData()
637 … pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "DuplexTumble" ) ) ); in SetData()
640 … pValue = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "DuplexNoTumble" ) ) ); in SetData()
648 pValue = pKey->getDefaultValue(); in SetData()
649 aData.m_aContext.setValue( pKey, pValue ); in SetData()
715 …const PPDKey* pKey = aData.m_pParser ? aData.m_pParser->getKey( String( RTL_CONSTASCII_USTRINGPARA… in GetPaperBinCount() local
716 return pKey ? pKey->countValues() : 0; in GetPaperBinCount()
729 …const PPDKey* pKey = aData.m_pParser ? aData.m_pParser->getKey( String( RTL_CONSTASCII_USTRINGPARA… in GetPaperBinName() local
730 if( nPaperBin == 0xffff || ! pKey ) in GetPaperBinName()
734 const PPDValue* pValue = pKey->getValue( nPaperBin ); in GetPaperBinName()
736 aRet = aData.m_pParser->translateOption( pKey->getKey(), pValue->m_aOption ); in GetPaperBinName()
759 …const PPDKey* pKey = aData.m_pParser ? aData.m_pParser->getKey( String( RTL_CONSTASCII_USTRINGPARA… in GetCapabilities() local
760 …const PPDValue* pVal = pKey ? pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "True" ) ) ) : … in GetCapabilities()