Lines Matching refs:aVal

1307         PropertyValue aVal;  in getJobProperties()  local
1308 aVal.Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "IsFirstPage" ) ); in getJobProperties()
1309 aVal.Value <<= mpImplData->mbFirstPage; in getJobProperties()
1310 aResult[nCur++] = aVal; in getJobProperties()
1315 PropertyValue aVal; in getJobProperties() local
1316 aVal.Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "IsLastPage" ) ); in getJobProperties()
1317 aVal.Value <<= mpImplData->mbLastPage; in getJobProperties()
1318 aResult[nCur++] = aVal; in getJobProperties()
1323 PropertyValue aVal; in getJobProperties() local
1324 aVal.Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "IsPrinter" ) ); in getJobProperties()
1325 aVal.Value <<= sal_True; in getJobProperties()
1326 aResult[nCur++] = aVal; in getJobProperties()
1367 beans::PropertyValue aVal; in setValue() local
1368 aVal.Name = i_rName; in setValue()
1369 aVal.Value = i_rValue; in setValue()
1371 setValue( aVal ); in setValue()
1409 PropertyValue aVal; in setUIOptions() local
1410 rEntry.Value >>= aVal; in setUIOptions()
1411 DBG_ASSERT( mpImplData->maPropertyToIndex.find( aVal.Name ) in setUIOptions()
1413 setValue( aVal ); in setUIOptions()
1414 aPropName = aVal.Name; in setUIOptions()
1726 Any aVal( getValue( i_rPropertyName ) ); in getBoolValue() local
1727 return (aVal >>= bRet) ? bRet : i_bDefault; in getBoolValue()
1733 Any aVal( getValue( i_rPropertyName ) ); in getIntValue() local
1734 return (aVal >>= nRet) ? nRet : i_nDefault; in getIntValue()
1740 Any aVal( getValue( i_rPropertyName ) ); in getStringValue() local
1741 return (aVal >>= aRet) ? aRet : i_rDefault; in getStringValue()
1785 PropertyValue aVal; in appendPrintUIOptions() local
1786 aVal.Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ExtraPrintUIOptions" ) ); in appendPrintUIOptions()
1787 aVal.Value = makeAny( m_aUIProperties ); in appendPrintUIOptions()
1788 io_rProps[ nIndex ] = aVal; in appendPrintUIOptions()
1916 PropertyValue aVal; in getBoolControlOpt() local
1917 aVal.Name = i_rProperty; in getBoolControlOpt()
1918 aVal.Value = makeAny( i_bValue ); in getBoolControlOpt()
1919 …rTitle, aHelpId, rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Bool" ) ), &aVal, i_rControlOptions … in getBoolControlOpt()
1943 PropertyValue aVal; in getChoiceControlOpt() local
1944 aVal.Name = i_rProperty; in getChoiceControlOpt()
1945 aVal.Value = makeAny( i_nValue ); in getChoiceControlOpt()
1946 return getUIControlOpt( i_rTitle, i_rHelpId, i_rType, &aVal, aOpt ); in getChoiceControlOpt()
1975 PropertyValue aVal; in getRangeControlOpt() local
1976 aVal.Name = i_rProperty; in getRangeControlOpt()
1977 aVal.Value = makeAny( i_nValue ); in getRangeControlOpt()
1981 &aVal, in getRangeControlOpt()
1999 PropertyValue aVal; in getEditControlOpt() local
2000 aVal.Name = i_rProperty; in getEditControlOpt()
2001 aVal.Value = makeAny( i_rValue ); in getEditControlOpt()
2005 &aVal, in getEditControlOpt()