Lines Matching refs:aSeq

139 …virtual Sequence<sal_Int8> SAL_CALL methodByte(const Sequence< sal_Int8 >& aSeq) throw( RuntimeExc…
140 …virtual Sequence<float> SAL_CALL methodFloat(const Sequence< float >& aSeq) throw( RuntimeExceptio…
141 …virtual Sequence< double > SAL_CALL methodDouble(const Sequence< double >& aSeq) throw( RuntimeExc…
142 …virtual Sequence< sal_Bool > SAL_CALL methodBool(const Sequence< sal_Bool >& aSeq) throw( RuntimeE…
143 …virtual Sequence< sal_Int16 > SAL_CALL methodShort(const Sequence< sal_Int16 >& aSeq) throw( Runti…
144 …virtual Sequence< sal_uInt16 > SAL_CALL methodUShort(const Sequence< sal_uInt16 >& aSeq) throw( Ru…
145 …virtual Sequence< sal_Int32 > SAL_CALL methodLong(const Sequence< sal_Int32 >& aSeq) throw( Runtim…
146 …virtual Sequence< sal_uInt32 > SAL_CALL methodULong(const Sequence< sal_uInt32 >& aSeq) throw( Run…
147 …virtual Sequence< OUString > SAL_CALL methodString(const Sequence< OUString >& aSeq) throw( Runtim…
148 …virtual Sequence< sal_Unicode > SAL_CALL methodChar(const Sequence< sal_Unicode >& aSeq) throw( Ru…
149 virtual Sequence< Any > SAL_CALL methodAny(const Sequence< Any >& aSeq) throw( RuntimeException );
150 …virtual Sequence< Type > SAL_CALL methodType(const Sequence< Type >& aSeq) throw( RuntimeException…
151 …> > SAL_CALL methodXInterface( const Sequence< Reference< XInterface > >& aSeq ) throw(RuntimeExce…
152 …nt32 > > SAL_CALL methodSequence(const Sequence< Sequence< sal_Int32 > >& aSeq) throw( RuntimeExce…
153 …CALL methodSequence2(const Sequence< Sequence< Sequence< sal_Int32 > > >& aSeq) throw( RuntimeExce…
154 …L_CALL methodXEventListeners( const Sequence<Reference<XEventListener> >& aSeq) throw( RuntimeExce…
155 …ventListenersMul( const Sequence<Sequence<Reference<XEventListener > > >& aSeq ) throw (RuntimeExc…
424 Sequence<sal_Int8> SAL_CALL OComponent::methodByte(const Sequence< sal_Int8 >& aSeq) throw( Runtime… in methodByte() argument
427 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodByte()
428 _x= aSeq.getConstArray()[i]; in methodByte()
430 return aSeq; in methodByte()
432 Sequence<float> SAL_CALL OComponent::methodFloat(const Sequence< float>& aSeq) throw( RuntimeExcept… in methodFloat() argument
435 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodFloat()
436 _x= aSeq.getConstArray()[i]; in methodFloat()
438 return aSeq; in methodFloat()
440 Sequence<double> SAL_CALL OComponent::methodDouble(const Sequence< double >& aSeq) throw( RuntimeEx… in methodDouble() argument
443 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodDouble()
444 _x= aSeq.getConstArray()[i]; in methodDouble()
446 return aSeq; in methodDouble()
448 Sequence< sal_Bool > SAL_CALL OComponent::methodBool(const Sequence< sal_Bool >& aSeq) throw( Runti… in methodBool() argument
451 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodBool()
452 _x= aSeq.getConstArray()[i]; in methodBool()
454 return aSeq; in methodBool()
456 Sequence< sal_Int16 > SAL_CALL OComponent::methodShort(const Sequence< sal_Int16 >& aSeq) throw( Ru… in methodShort() argument
459 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodShort()
460 _x= aSeq.getConstArray()[i]; in methodShort()
462 return aSeq; in methodShort()
464 Sequence< sal_uInt16 > SAL_CALL OComponent::methodUShort(const Sequence< sal_uInt16 >& aSeq) throw(… in methodUShort() argument
467 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodUShort()
468 _x= aSeq.getConstArray()[i]; in methodUShort()
470 return aSeq; in methodUShort()
472 Sequence< sal_Int32 > SAL_CALL OComponent::methodLong(const Sequence< sal_Int32 >& aSeq) throw( Run… in methodLong() argument
475 for( sal_Int16 i= 0; i < aSeq.getLength(); i++) { in methodLong()
476 _x= aSeq.getConstArray()[i]; in methodLong()
478 return aSeq; in methodLong()
480 Sequence< sal_uInt32 > SAL_CALL OComponent::methodULong(const Sequence< sal_uInt32 >& aSeq) throw( … in methodULong() argument
483 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodULong()
484 _x= aSeq.getConstArray()[i]; in methodULong()
486 return aSeq; in methodULong()
488 Sequence< OUString > SAL_CALL OComponent::methodString(const Sequence< OUString >& aSeq) throw( Run… in methodString() argument
491 for( sal_Int16 i= 0; i < aSeq.getLength(); i++) { in methodString()
492 _x= aSeq.getConstArray()[i]; in methodString()
494 return aSeq; in methodString()
496 Sequence< sal_Unicode > SAL_CALL OComponent::methodChar(const Sequence< sal_Unicode >& aSeq) throw(… in methodChar() argument
499 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodChar()
500 _x= aSeq.getConstArray()[i]; in methodChar()
502 return aSeq; in methodChar()
504 Sequence< Any > SAL_CALL OComponent::methodAny(const Sequence< Any >& aSeq) throw( RuntimeException… in methodAny() argument
507 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodAny()
508 _x= aSeq.getConstArray()[i]; in methodAny()
513 return aSeq; in methodAny()
517 Sequence< Type > SAL_CALL OComponent::methodType(const Sequence< Type >& aSeq) throw( RuntimeExcept… in methodType() argument
520 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodType()
521 _x= aSeq.getConstArray()[i]; in methodType()
523 return aSeq; in methodType()
527 … OComponent::methodXInterface( const Sequence< Reference< XInterface > >& aSeq ) throw(RuntimeExce… in methodXInterface() argument
529 for( sal_Int32 i= 0; i < aSeq.getLength(); i++) in methodXInterface()
531 Reference<XInterface> xInt= aSeq[i]; in methodXInterface()
536 return aSeq; in methodXInterface()
539 …_CALL OComponent::methodSequence(const Sequence< Sequence< sal_Int32 > >& aSeq) throw( RuntimeExce… in methodSequence() argument
542 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodSequence()
543 const Sequence<sal_Int32>& rseq2= aSeq.getConstArray()[i]; in methodSequence()
548 return aSeq; in methodSequence()
550 … > SAL_CALL OComponent::methodSequence2(const Sequence< Sequence< Sequence< sal_Int32 > > >& aSeq) in methodSequence2() argument
554 sal_Int32 len= aSeq.getLength(); in methodSequence2()
555 for( sal_Int16 i= 0; i < aSeq.getLength(); i++){ in methodSequence2()
556 const Sequence< Sequence<sal_Int32> >& rseq2= aSeq.getConstArray()[i]; in methodSequence2()
567 return aSeq; in methodSequence2()
570 …ent::methodXEventListeners( const Sequence< Reference <XEventListener> >& aSeq) throw( RuntimeExce… in methodXEventListeners() argument
573 for( int i= 0; i < aSeq.getLength(); i++) in methodXEventListeners()
575 listener= aSeq[i]; in methodXEventListeners()
580 return aSeq; in methodXEventListeners()
583 …ventListenersMul( const Sequence<Sequence<Reference<XEventListener > > >& aSeq ) throw (RuntimeExc… in methodXEventListenersMul() argument
586 for( int i= 0; i < aSeq.getLength(); i++) in methodXEventListenersMul()
588 Sequence<Reference<XEventListener> > seqInner= aSeq[i]; in methodXEventListenersMul()
595 return aSeq; in methodXEventListenersMul()
1794 Sequence< Any > aSeq; in testInterface() local
1799 aSeq = Sequence< Any >( arAny, 3); in testInterface()
1814 xCallback->inoutValuesAll( aXSimple, aStruct, aEnum, aSeq, in testInterface()
1821 for( int i=0; i < aSeq.getLength(); i++) in testInterface()
1824 any <<= aSeq[i]; in testInterface()