Lines Matching refs:nInd

121 	sal_Int32 nInd = 0;  in InsertMenu_Impl()  local
130 for ( nInd = 0; nInd < aSourceProps.getLength(); nInd++ ) in InsertMenu_Impl()
132 aTargetProps[nInd].Name = aSourceProps[nInd].Name; in InsertMenu_Impl()
133 if ( aContModuleName.getLength() && aTargetProps[nInd].Name.equals( aModuleIdentPropName ) ) in InsertMenu_Impl()
135 aTargetProps[nInd].Value <<= aContModuleName; in InsertMenu_Impl()
138 else if ( aTargetProps[nInd].Name.equals( aDispProvPropName ) ) in InsertMenu_Impl()
140 aTargetProps[nInd].Value <<= xSourceDisp; in InsertMenu_Impl()
144 aTargetProps[nInd].Value = aSourceProps[nInd].Value; in InsertMenu_Impl()
149 aTargetProps.realloc( ++nInd ); in InsertMenu_Impl()
150 aTargetProps[nInd-1].Name = aModuleIdentPropName; in InsertMenu_Impl()
151 aTargetProps[nInd-1].Value <<= aContModuleName; in InsertMenu_Impl()
156 aTargetProps.realloc( ++nInd ); in InsertMenu_Impl()
157 aTargetProps[nInd-1].Name = aDispProvPropName; in InsertMenu_Impl()
158 aTargetProps[nInd-1].Value <<= xSourceDisp; in InsertMenu_Impl()
619 for ( sal_Int32 nInd = 0; nInd < xMenu->getCount(); nInd++ ) in FindConnectPoints() local
622 xMenu->getByIndex( nInd ) >>= aProps; in FindConnectPoints()
635 nConnectPoints[0] = nInd; in FindConnectPoints()
637 nConnectPoints[1] = nInd; in FindConnectPoints()
671 for ( sal_Int32 nInd = 0; nInd < xOwnMenu->getCount(); nInd++ ) in MergeMenuesForInplace() local
673 if ( nOwnPoints[0] == nInd ) in MergeMenuesForInplace()
677 InsertMenu_Impl( xMergedMenu, nInd, xContMenu, nContPoints[0], aContModuleName, xContDisp ); in MergeMenuesForInplace()
680 else if ( nOwnPoints[1] == nInd ) in MergeMenuesForInplace()
684 InsertMenu_Impl( xMergedMenu, nInd, xContMenu, nContPoints[1], aContModuleName, xContDisp ); in MergeMenuesForInplace()
688 InsertMenu_Impl( xMergedMenu, nInd, xOwnMenu, nInd, ::rtl::OUString(), xOwnDisp ); in MergeMenuesForInplace()