Lines Matching refs:aOpt

776     PrinterOptions aOpt;  in resetPrinterOptions()  local
777 aOpt.ReadFromConfig( i_bFileOutput ); in resetPrinterOptions()
778 mpImplData->mpPrinter->SetPrinterOptions( aOpt ); in resetPrinterOptions()
1932 UIControlOptions aOpt( i_rControlOptions ); in getChoiceControlOpt() local
1933 sal_Int32 nUsed = aOpt.maAddProps.getLength(); in getChoiceControlOpt()
1934 aOpt.maAddProps.realloc( nUsed + 1 + (i_rDisabledChoices.getLength() ? 1 : 0) ); in getChoiceControlOpt()
1935 aOpt.maAddProps[nUsed].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Choices" ) ); in getChoiceControlOpt()
1936 aOpt.maAddProps[nUsed].Value = makeAny( i_rChoices ); in getChoiceControlOpt()
1939aOpt.maAddProps[nUsed+1].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ChoicesDisabled" ) ); in getChoiceControlOpt()
1940 aOpt.maAddProps[nUsed+1].Value = makeAny( i_rDisabledChoices ); in getChoiceControlOpt()
1946 return getUIControlOpt( i_rTitle, i_rHelpId, i_rType, &aVal, aOpt ); in getChoiceControlOpt()
1958 UIControlOptions aOpt( i_rControlOptions ); in getRangeControlOpt() local
1961 sal_Int32 nUsed = aOpt.maAddProps.getLength(); in getRangeControlOpt()
1962 aOpt.maAddProps.realloc( nUsed + 2 ); in getRangeControlOpt()
1963 aOpt.maAddProps[nUsed ].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "MinValue" ) ); in getRangeControlOpt()
1964 aOpt.maAddProps[nUsed++].Value = makeAny( i_nMinValue ); in getRangeControlOpt()
1965 aOpt.maAddProps[nUsed ].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "MaxValue" ) ); in getRangeControlOpt()
1966 aOpt.maAddProps[nUsed++].Value = makeAny( i_nMaxValue ); in getRangeControlOpt()
1982 aOpt in getRangeControlOpt()