Lines Matching refs:aSeq

387 	uno::Sequence< beans::StringPair > aSeq = getRelationshipByID( sID );  in getTargetByID()  local
388 for ( sal_Int32 nInd = 0; nInd < aSeq.getLength(); nInd++ ) in getTargetByID()
389 if ( aSeq[nInd].First.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Target" ) ) ) in getTargetByID()
390 return aSeq[nInd].Second; in getTargetByID()
412 uno::Sequence< beans::StringPair > aSeq = getRelationshipByID( sID ); in getTypeByID() local
413 for ( sal_Int32 nInd = 0; nInd < aSeq.getLength(); nInd++ ) in getTypeByID()
414 if ( aSeq[nInd].First.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Type" ) ) ) in getTypeByID()
415 return aSeq[nInd].Second; in getTypeByID()
438 uno::Sequence< uno::Sequence< beans::StringPair > > aSeq = getAllRelationships(); in getRelationshipByID() local
439 for ( sal_Int32 nInd1 = 0; nInd1 < aSeq.getLength(); nInd1++ ) in getRelationshipByID()
440 for ( sal_Int32 nInd2 = 0; nInd2 < aSeq[nInd1].getLength(); nInd2++ ) in getRelationshipByID()
441 if ( aSeq[nInd1][nInd2].First.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Id" ) ) ) in getRelationshipByID()
443 if ( aSeq[nInd1][nInd2].Second.equals( sID ) ) in getRelationshipByID()
444 return aSeq[nInd1]; in getRelationshipByID()
471 uno::Sequence< uno::Sequence< beans::StringPair > > aSeq = getAllRelationships(); in getRelationshipsByType() local
472 for ( sal_Int32 nInd1 = 0; nInd1 < aSeq.getLength(); nInd1++ ) in getRelationshipsByType()
473 for ( sal_Int32 nInd2 = 0; nInd2 < aSeq[nInd1].getLength(); nInd2++ ) in getRelationshipsByType()
474 if ( aSeq[nInd1][nInd2].First.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Type" ) ) ) in getRelationshipsByType()
476 if ( aSeq[nInd1][nInd2].Second.equals( sType ) ) in getRelationshipsByType()
479 aResult[nEntriesNum-1] = aSeq[nInd1]; in getRelationshipsByType()