Lines Matching refs:aPropSeq
857 Sequence< PropertyValue > aPropSeq; in GetPropsForCommand() local
881 m_xUICommandLabels->getByName( rCmdURL ) >>= aPropSeq; in GetPropsForCommand()
888 return aPropSeq; in GetPropsForCommand()
894 Sequence< PropertyValue > aPropSeq; in RetrieveLabelFromCommand() local
897 aPropSeq = GetPropsForCommand( aCmdURL ); in RetrieveLabelFromCommand()
898 for ( sal_Int32 i = 0; i < aPropSeq.getLength(); i++ ) in RetrieveLabelFromCommand()
900 if ( aPropSeq[i].Name.equalsAscii( "Name" )) in RetrieveLabelFromCommand()
902 aPropSeq[i].Value >>= aLabel; in RetrieveLabelFromCommand()
912 Sequence< PropertyValue > aPropSeq; in RetrievePropertiesFromCommand() local
915 aPropSeq = GetPropsForCommand( aCmdURL ); in RetrievePropertiesFromCommand()
916 for ( sal_Int32 i = 0; i < aPropSeq.getLength(); i++ ) in RetrievePropertiesFromCommand()
918 if ( aPropSeq[i].Name.equalsAscii( "Properties" )) in RetrievePropertiesFromCommand()
920 aPropSeq[i].Value >>= nProperties; in RetrievePropertiesFromCommand()
1951 Sequence< PropertyValue > aPropSeq( 1 ); in IMPL_LINK() local
1953 aPropSeq[ 0 ].Name = in IMPL_LINK()
1955 aPropSeq[ 0 ].Value <<= m_aResourceName; in IMPL_LINK()
1957 xDisp->dispatch( aURL, aPropSeq ); in IMPL_LINK()