Lines Matching refs:aSeq

892     uno::Sequence< uno::Any > aSeq( 1 );  in Commit()  local
893 aSeq[0] <<= sal_False; in Commit()
903 m_xPackage->createInstanceWithArguments( aSeq ), in Commit()
930 … m_xPackage->createInstanceWithArguments( aSeq ), in Commit()
2794 uno::Sequence< beans::StringPair > aSeq = getRelationshipByID( sID ); in getTargetByID() local
2795 for ( sal_Int32 nInd = 0; nInd < aSeq.getLength(); nInd++ ) in getTargetByID()
2796 if ( aSeq[nInd].First.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Target" ) ) ) in getTargetByID()
2797 return aSeq[nInd].Second; in getTargetByID()
2819 uno::Sequence< beans::StringPair > aSeq = getRelationshipByID( sID ); in getTypeByID() local
2820 for ( sal_Int32 nInd = 0; nInd < aSeq.getLength(); nInd++ ) in getTypeByID()
2821 if ( aSeq[nInd].First.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Type" ) ) ) in getTypeByID()
2822 return aSeq[nInd].Second; in getTypeByID()
2845 uno::Sequence< uno::Sequence< beans::StringPair > > aSeq = getAllRelationships(); in getRelationshipByID() local
2846 for ( sal_Int32 nInd1 = 0; nInd1 < aSeq.getLength(); nInd1++ ) in getRelationshipByID()
2847 for ( sal_Int32 nInd2 = 0; nInd2 < aSeq[nInd1].getLength(); nInd2++ ) in getRelationshipByID()
2848 if ( aSeq[nInd1][nInd2].First.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Id" ) ) ) in getRelationshipByID()
2850 if ( aSeq[nInd1][nInd2].Second.equals( sID ) ) in getRelationshipByID()
2851 return aSeq[nInd1]; in getRelationshipByID()
2878 uno::Sequence< uno::Sequence< beans::StringPair > > aSeq = getAllRelationships(); in getRelationshipsByType() local
2879 for ( sal_Int32 nInd1 = 0; nInd1 < aSeq.getLength(); nInd1++ ) in getRelationshipsByType()
2880 for ( sal_Int32 nInd2 = 0; nInd2 < aSeq[nInd1].getLength(); nInd2++ ) in getRelationshipsByType()
2881 if ( aSeq[nInd1][nInd2].First.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Type" ) ) ) in getRelationshipsByType()
2883 if ( aSeq[nInd1][nInd2].Second.equals( sType ) ) in getRelationshipsByType()
2886 aResult[nEntriesNum-1] = aSeq[nInd1]; in getRelationshipsByType()
2934 uno::Sequence< uno::Sequence< beans::StringPair > > aSeq = getAllRelationships(); in insertRelationshipByID() local
2935 for ( sal_Int32 nInd1 = 0; nInd1 < aSeq.getLength(); nInd1++ ) in insertRelationshipByID()
2936 for ( sal_Int32 nInd2 = 0; nInd2 < aSeq[nInd1].getLength(); nInd2++ ) in insertRelationshipByID()
2937 if ( aSeq[nInd1][nInd2].First.equals( aIDTag ) ) in insertRelationshipByID()
2939 if ( aSeq[nInd1][nInd2].Second.equals( sID ) ) in insertRelationshipByID()
2949 nIDInd = aSeq.getLength(); in insertRelationshipByID()
2950 aSeq.realloc( nIDInd + 1 ); in insertRelationshipByID()
2953 aSeq[nIDInd].realloc( aEntry.getLength() + 1 ); in insertRelationshipByID()
2955 aSeq[nIDInd][0].First = aIDTag; in insertRelationshipByID()
2956 aSeq[nIDInd][0].Second = sID; in insertRelationshipByID()
2963 aSeq[nIDInd][nIndTarget++] = aEntry[nIndOrig]; in insertRelationshipByID()
2966 aSeq[nIDInd].realloc( nIndTarget ); in insertRelationshipByID()
2972 m_pImpl->m_aNewRelInfo = aSeq; in insertRelationshipByID()
2994 uno::Sequence< uno::Sequence< beans::StringPair > > aSeq = getAllRelationships(); in removeRelationshipByID() local
2995 for ( sal_Int32 nInd1 = 0; nInd1 < aSeq.getLength(); nInd1++ ) in removeRelationshipByID()
2996 for ( sal_Int32 nInd2 = 0; nInd2 < aSeq[nInd1].getLength(); nInd2++ ) in removeRelationshipByID()
2997 if ( aSeq[nInd1][nInd2].First.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Id" ) ) ) in removeRelationshipByID()
2999 if ( aSeq[nInd1][nInd2].Second.equals( sID ) ) in removeRelationshipByID()
3001 sal_Int32 nLength = aSeq.getLength(); in removeRelationshipByID()
3002 aSeq[nInd1] = aSeq[nLength-1]; in removeRelationshipByID()
3003 aSeq.realloc( nLength - 1 ); in removeRelationshipByID()
3005 m_pImpl->m_aNewRelInfo = aSeq; in removeRelationshipByID()
3037 uno::Sequence< uno::Sequence< beans::StringPair > > aSeq = getAllRelationships(); in insertRelationships() local
3038 …uno::Sequence< uno::Sequence< beans::StringPair > > aResultSeq( aSeq.getLength() + aEntries.getLen… in insertRelationships()
3041 for ( sal_Int32 nIndTarget1 = 0; nIndTarget1 < aSeq.getLength(); nIndTarget1++ ) in insertRelationships()
3042 for ( sal_Int32 nIndTarget2 = 0; nIndTarget2 < aSeq[nIndTarget1].getLength(); nIndTarget2++ ) in insertRelationships()
3043 if ( aSeq[nIndTarget1][nIndTarget2].First.equals( aIDTag ) ) in insertRelationships()
3052 … if ( aEntries[nIndSource1][nIndSource2].Second.equals( aSeq[nIndTarget1][nIndTarget2].Second ) ) in insertRelationships()
3067 aResultSeq[nResultInd++] = aSeq[nIndTarget1]; in insertRelationships()