Lines Matching refs:aNames
296 Sequence<OUString> aNames(SCLAYOUTOPT_COUNT); in GetLayoutPropertyNames() local
297 OUString* pNames = aNames.getArray(); in GetLayoutPropertyNames()
305 return aNames; in GetLayoutPropertyNames()
316 Sequence<OUString> aNames(SCINPUTOPT_COUNT); in GetInputPropertyNames() local
317 OUString* pNames = aNames.getArray(); in GetInputPropertyNames()
321 return aNames; in GetInputPropertyNames()
333 Sequence<OUString> aNames(SCREVISOPT_COUNT); in GetRevisionPropertyNames() local
334 OUString* pNames = aNames.getArray(); in GetRevisionPropertyNames()
338 return aNames; in GetRevisionPropertyNames()
347 Sequence<OUString> aNames(SCCONTENTOPT_COUNT); in GetContentPropertyNames() local
348 OUString* pNames = aNames.getArray(); in GetContentPropertyNames()
352 return aNames; in GetContentPropertyNames()
361 Sequence<OUString> aNames(SCSORTLISTOPT_COUNT); in GetSortListPropertyNames() local
362 OUString* pNames = aNames.getArray(); in GetSortListPropertyNames()
366 return aNames; in GetSortListPropertyNames()
377 Sequence<OUString> aNames(SCMISCOPT_COUNT); in GetMiscPropertyNames() local
378 OUString* pNames = aNames.getArray(); in GetMiscPropertyNames()
382 return aNames; in GetMiscPropertyNames()
396 Sequence<OUString> aNames; in ScAppCfg() local
400 aNames = GetLayoutPropertyNames(); in ScAppCfg()
401 aValues = aLayoutItem.GetProperties(aNames); in ScAppCfg()
402 aLayoutItem.EnableNotification(aNames); in ScAppCfg()
404 DBG_ASSERT(aValues.getLength() == aNames.getLength(), "GetProperties failed"); in ScAppCfg()
405 if(aValues.getLength() == aNames.getLength()) in ScAppCfg()
407 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in ScAppCfg()
435 aNames = GetInputPropertyNames(); in ScAppCfg()
436 aValues = aInputItem.GetProperties(aNames); in ScAppCfg()
437 aInputItem.EnableNotification(aNames); in ScAppCfg()
439 DBG_ASSERT(aValues.getLength() == aNames.getLength(), "GetProperties failed"); in ScAppCfg()
440 if(aValues.getLength() == aNames.getLength()) in ScAppCfg()
442 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in ScAppCfg()
464 aNames = GetRevisionPropertyNames(); in ScAppCfg()
465 aValues = aRevisionItem.GetProperties(aNames); in ScAppCfg()
466 aRevisionItem.EnableNotification(aNames); in ScAppCfg()
468 DBG_ASSERT(aValues.getLength() == aNames.getLength(), "GetProperties failed"); in ScAppCfg()
469 if(aValues.getLength() == aNames.getLength()) in ScAppCfg()
471 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in ScAppCfg()
496 aNames = GetContentPropertyNames(); in ScAppCfg()
497 aValues = aContentItem.GetProperties(aNames); in ScAppCfg()
498 aContentItem.EnableNotification(aNames); in ScAppCfg()
500 DBG_ASSERT(aValues.getLength() == aNames.getLength(), "GetProperties failed"); in ScAppCfg()
501 if(aValues.getLength() == aNames.getLength()) in ScAppCfg()
503 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in ScAppCfg()
519 aNames = GetSortListPropertyNames(); in ScAppCfg()
520 aValues = aSortListItem.GetProperties(aNames); in ScAppCfg()
521 aSortListItem.EnableNotification(aNames); in ScAppCfg()
523 DBG_ASSERT(aValues.getLength() == aNames.getLength(), "GetProperties failed"); in ScAppCfg()
524 if(aValues.getLength() == aNames.getLength()) in ScAppCfg()
526 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in ScAppCfg()
542 aNames = GetMiscPropertyNames(); in ScAppCfg()
543 aValues = aMiscItem.GetProperties(aNames); in ScAppCfg()
544 aMiscItem.EnableNotification(aNames); in ScAppCfg()
546 DBG_ASSERT(aValues.getLength() == aNames.getLength(), "GetProperties failed"); in ScAppCfg()
547 if(aValues.getLength() == aNames.getLength()) in ScAppCfg()
549 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in ScAppCfg()
574 Sequence<OUString> aNames = GetLayoutPropertyNames(); in IMPL_LINK() local
575 Sequence<Any> aValues(aNames.getLength()); in IMPL_LINK()
578 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in IMPL_LINK()
599 aLayoutItem.PutProperties(aNames, aValues); in IMPL_LINK()
606 Sequence<OUString> aNames = GetInputPropertyNames(); in IMPL_LINK() local
607 Sequence<Any> aValues(aNames.getLength()); in IMPL_LINK()
610 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in IMPL_LINK()
625 aInputItem.PutProperties(aNames, aValues); in IMPL_LINK()
632 Sequence<OUString> aNames = GetRevisionPropertyNames(); in IMPL_LINK() local
633 Sequence<Any> aValues(aNames.getLength()); in IMPL_LINK()
636 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in IMPL_LINK()
654 aRevisionItem.PutProperties(aNames, aValues); in IMPL_LINK()
661 Sequence<OUString> aNames = GetContentPropertyNames(); in IMPL_LINK() local
662 Sequence<Any> aValues(aNames.getLength()); in IMPL_LINK()
665 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in IMPL_LINK()
674 aContentItem.PutProperties(aNames, aValues); in IMPL_LINK()
681 Sequence<OUString> aNames = GetSortListPropertyNames(); in IMPL_LINK() local
682 Sequence<Any> aValues(aNames.getLength()); in IMPL_LINK()
685 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in IMPL_LINK()
694 aSortListItem.PutProperties(aNames, aValues); in IMPL_LINK()
701 Sequence<OUString> aNames = GetMiscPropertyNames(); in IMPL_LINK() local
702 Sequence<Any> aValues(aNames.getLength()); in IMPL_LINK()
705 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in IMPL_LINK()
720 aMiscItem.PutProperties(aNames, aValues); in IMPL_LINK()