Lines Matching refs:pValue

45 	const PPDValue* pValue = NULL;  in insertAllPPDValues()  local
51 pValue = pKey->getValue( i ); in insertAllPPDValues()
52 aOptionText = pParser->translateOption( pKey->getKey(), pValue->m_aOption) ; in insertAllPPDValues()
54 if( m_aJobData.m_aContext.checkConstraints( pKey, pValue ) ) in insertAllPPDValues()
56 if( rBox.GetEntryPos( (void*)pValue ) == LISTBOX_ENTRY_NOTFOUND ) in insertAllPPDValues()
59 rBox.SetEntryData( nPos, (void*)pValue ); in insertAllPPDValues()
64 if( ( nPos = rBox.GetEntryPos( (void*)pValue ) ) != LISTBOX_ENTRY_NOTFOUND ) in insertAllPPDValues()
68 pValue = m_aJobData.m_aContext.getValue( pKey ); in insertAllPPDValues()
69 if( pValue ) in insertAllPPDValues()
71 if( ( nPos = rBox.GetEntryPos( (void*)pValue ) ) != LISTBOX_ENTRY_NOTFOUND ) in insertAllPPDValues()
338 PPDValue* pValue = in IMPL_LINK() local
340 m_pParent->m_aJobData.m_aContext.setValue( pKey, pValue ); in IMPL_LINK()
462 …const PPDValue* pValue = (PPDValue*)m_aPPDValueBox.GetEntryData( m_aPPDValueBox.GetSelectEntryPos(… in IMPL_LINK() local
463 if( pKey && pValue ) in IMPL_LINK()
465 m_pParent->m_aJobData.m_aContext.setValue( pKey, pValue ); in IMPL_LINK()
481 const PPDValue* pValue = NULL; in FillValueBox() local
484 pValue = pKey->getValue( i ); in FillValueBox()
485 if( m_pParent->m_aJobData.m_aContext.checkConstraints( pKey, pValue ) && in FillValueBox()
488 …String aEntry( m_pParent->m_aJobData.m_pParser->translateOption( pKey->getKey(), pValue->m_aOption… in FillValueBox()
490 m_aPPDValueBox.SetEntryData( nPos, (void*)pValue ); in FillValueBox()
493 pValue = m_pParent->m_aJobData.m_aContext.getValue( pKey ); in FillValueBox()
494 m_aPPDValueBox.SelectEntryPos( m_aPPDValueBox.GetEntryPos( (void*)pValue ) ); in FillValueBox()