Lines Matching refs:Property
454 …typedef ::std::vector< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property > > Prop…
507 struct PropertyNameLess : public ::std::binary_function< Property, Property, bool >
509 bool operator()( const Property& _rLHS, const Property& _rRHS ) in operator ()()
516 struct PropertyNameEqual : public ::std::unary_function< Property, bool >
521 bool operator()( const Property& _rLHS ) in operator ()()
535 Sequence< Property > aProps; in createArrayHelper()
539 Sequence< Property > aAggregateProps; in createArrayHelper()
550 const Property* pAggProps = aAggregateProps.getConstArray(); in createArrayHelper()
551 const Property* pAggPropsEnd = aAggregateProps.getConstArray() + aAggregateProps.getLength(); in createArrayHelper()
554 const Property* pProp = aProps.getConstArray(); in createArrayHelper()
555 const Property* pPropEnd = aProps.getConstArray() + aProps.getLength(); in createArrayHelper()
559 …const Property* pAggPropPos = ::std::find_if( pAggProps, pAggPropsEnd, PropertyNameEqual( pProp->N… in createArrayHelper()