Lines Matching refs:aPropSeq

100 			::uno::Sequence< beans::PropertyValue > aPropSeq;  in retrieveLabelFromCommand()
104 if ( a >>= aPropSeq ) in retrieveLabelFromCommand()
106 for ( sal_Int32 i = 0; i < aPropSeq.getLength(); i++ ) in retrieveLabelFromCommand()
108 if ( aPropSeq[i].Name.equalsAscii( "Label" )) in retrieveLabelFromCommand()
110 aPropSeq[i].Value >>= aStr; in retrieveLabelFromCommand()
1194 uno::Sequence< beans::PropertyValue > aPropSeq; in mergeOldToNewVersion() local
1195 xTemp->getByIndex(i) >>= aPropSeq; in mergeOldToNewVersion()
1196 for (sal_Int32 j=0; j<aPropSeq.getLength(); ++j) in mergeOldToNewVersion()
1198 ::rtl::OUString sPropName = aPropSeq[j].Name; in mergeOldToNewVersion()
1200 aPropSeq[j].Value >>= sCommandURL; in mergeOldToNewVersion()
1202 aPropSeq[j].Value >>= sLabel; in mergeOldToNewVersion()
1204 aPropSeq[j].Value >>= xChild; in mergeOldToNewVersion()
1218 uno::Sequence< beans::PropertyValue > aPropSeq(3); in mergeOldToNewVersion() local
1220 aPropSeq[0].Name = ITEM_DESCRIPTOR_COMMANDURL; in mergeOldToNewVersion()
1221 aPropSeq[0].Value <<= it->m_sCommandURL; in mergeOldToNewVersion()
1222 aPropSeq[1].Name = ITEM_DESCRIPTOR_LABEL; in mergeOldToNewVersion()
1223 aPropSeq[1].Value <<= retrieveLabelFromCommand(it->m_sCommandURL, sModuleIdentifier); in mergeOldToNewVersion()
1224 aPropSeq[2].Name = ITEM_DESCRIPTOR_CONTAINER; in mergeOldToNewVersion()
1225 aPropSeq[2].Value <<= it->m_xPopupMenu; in mergeOldToNewVersion()
1228 xTemp->insertByIndex(0, uno::makeAny(aPropSeq)); in mergeOldToNewVersion()
1251 xTemp->insertByIndex(i+1, uno::makeAny(aPropSeq)); in mergeOldToNewVersion()