Lines Matching refs:aList

686     ::std::vector< ::rtl::OUString > aList;  in implCreateListLikeControl()
687 tools::StringListResource aRes(ModuleRes(_nResId),aList); in implCreateListLikeControl()
689 …implCreateListLikeControl(_rxControlFactory,out_Descriptor,aList,_bReadOnlyControl,_bTrueIfListBox… in implCreateListLikeControl()
731 ::std::vector< ::rtl::OUString > aList; in describePropertyLine()
732 impl_fillFormulaList_nothrow(aList); in describePropertyLine()
733 implCreateListLikeControl(_xControlFactory,aOut,aList,sal_False,sal_True); in describePropertyLine()
738 ::std::vector< ::rtl::OUString > aList; in describePropertyLine()
739 impl_fillScopeList_nothrow(aList); in describePropertyLine()
740 implCreateListLikeControl(_xControlFactory,aOut,aList,sal_False,sal_True); in describePropertyLine()
745 ::std::vector< ::rtl::OUString > aList; in describePropertyLine()
746 impl_fillMimeTypes_nothrow(aList); in describePropertyLine()
747 implCreateListLikeControl(_xControlFactory,aOut,aList,sal_False,sal_True); in describePropertyLine()
932 ::std::vector< ::rtl::OUString > aList; in getConstantValue()
933 tools::StringListResource aRes(ModuleRes(_nResId),aList); in getConstantValue()
934 uno::Sequence< ::rtl::OUString > aSeq(aList.size()); in getConstantValue()
935 ::std::copy( aList.begin(), aList.end(), aSeq.getArray() ); in getConstantValue()
1070 ::std::vector< ::rtl::OUString > aList; in convertToPropertyValue()
1071 tools::StringListResource aRes(ModuleRes(RID_STR_TYPE_CONST),aList); in convertToPropertyValue()
1072 … ::std::vector< ::rtl::OUString >::iterator aFind = ::std::find(aList.begin(),aList.end(),sValue); in convertToPropertyValue()
1073 if ( aFind != aList.end() ) in convertToPropertyValue()
1074 aPropertyValue <<= static_cast<sal_uInt32>(aFind - aList.begin()); in convertToPropertyValue()
1084 ::std::vector< ::rtl::OUString > aList; in convertToPropertyValue()
1085 tools::StringListResource aRes(ModuleRes(RID_STR_VERTICAL_ALIGN_CONST),aList); in convertToPropertyValue()
1086 … ::std::vector< ::rtl::OUString >::iterator aFind = ::std::find(aList.begin(),aList.end(),sValue); in convertToPropertyValue()
1087 if ( aFind != aList.end() ) in convertToPropertyValue()
1088 aPropertyValue <<= static_cast<style::VerticalAlignment>(aFind - aList.begin()); in convertToPropertyValue()
1095 ::std::vector< ::rtl::OUString > aList; in convertToPropertyValue()
1096 tools::StringListResource aRes(ModuleRes(RID_STR_PARAADJUST_CONST),aList); in convertToPropertyValue()
1097 … ::std::vector< ::rtl::OUString >::iterator aFind = ::std::find(aList.begin(),aList.end(),sValue); in convertToPropertyValue()
1098 if ( aFind != aList.end() ) in convertToPropertyValue()
1099 aPropertyValue <<= static_cast<sal_Int16>(aFind - aList.begin()); in convertToPropertyValue()
1213 ::std::vector< ::rtl::OUString > aList; in convertToControlValue()
1214 tools::StringListResource aRes(ModuleRes(RID_STR_TYPE_CONST),aList); in convertToControlValue()
1215 if ( m_nDataFieldType < aList.size() ) in convertToControlValue()
1216 aControlValue <<= aList[m_nDataFieldType]; in convertToControlValue()
1223 ::std::vector< ::rtl::OUString > aList; in convertToControlValue()
1224 tools::StringListResource aRes(ModuleRes(RID_STR_VERTICAL_ALIGN_CONST),aList); in convertToControlValue()
1225 … if ( static_cast<sal_Int16>(nParagraphVertAlign) < static_cast<sal_Int16>(aList.size()) ) in convertToControlValue()
1226 aControlValue <<= aList[nParagraphVertAlign]; in convertToControlValue()
1233 ::std::vector< ::rtl::OUString > aList; in convertToControlValue()
1234 tools::StringListResource aRes(ModuleRes(RID_STR_PARAADJUST_CONST),aList); in convertToControlValue()
1235 if ( nParagraphAdjust < static_cast<sal_Int16>(aList.size()) ) in convertToControlValue()
1236 aControlValue <<= aList[nParagraphAdjust]; in convertToControlValue()
1658 ::std::vector< ::rtl::OUString > aList; in impl_ConvertUIToMimeType_nothrow()
1659 impl_fillMimeTypes_nothrow(aList); in impl_ConvertUIToMimeType_nothrow()
1661 …::std::vector< ::rtl::OUString >::const_iterator aFind = ::std::find(aList.begin(),aList.end(),_sU… in impl_ConvertUIToMimeType_nothrow()
1662 if ( aFind != aList.end() ) in impl_ConvertUIToMimeType_nothrow()
1664 const sal_Size nPos = aFind - aList.begin(); in impl_ConvertUIToMimeType_nothrow()