Lines Matching refs:aNames

356 	Sequence<OUString> aNames(SCLAYOUTOPT_COUNT);  in GetLayoutPropertyNames()  local
357 OUString* pNames = aNames.getArray(); in GetLayoutPropertyNames()
361 return aNames; in GetLayoutPropertyNames()
378 Sequence<OUString> aNames(SCDISPLAYOPT_COUNT); in GetDisplayPropertyNames() local
379 OUString* pNames = aNames.getArray(); in GetDisplayPropertyNames()
383 return aNames; in GetDisplayPropertyNames()
401 Sequence<OUString> aNames(SCGRIDOPT_COUNT); in GetGridPropertyNames() local
402 OUString* pNames = aNames.getArray(); in GetGridPropertyNames()
415 return aNames; in GetGridPropertyNames()
426 Sequence<OUString> aNames = GetLayoutPropertyNames(); in ScViewCfg() local
427 Sequence<Any> aValues = aLayoutItem.GetProperties(aNames); in ScViewCfg()
428 aLayoutItem.EnableNotification(aNames); in ScViewCfg()
430 DBG_ASSERT(aValues.getLength() == aNames.getLength(), "GetProperties failed"); in ScViewCfg()
431 if(aValues.getLength() == aNames.getLength()) in ScViewCfg()
433 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in ScViewCfg()
481 aNames = GetDisplayPropertyNames(); in ScViewCfg()
482 aValues = aDisplayItem.GetProperties(aNames); in ScViewCfg()
483 aDisplayItem.EnableNotification(aNames); in ScViewCfg()
485 DBG_ASSERT(aValues.getLength() == aNames.getLength(), "GetProperties failed"); in ScViewCfg()
486 if(aValues.getLength() == aNames.getLength()) in ScViewCfg()
488 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in ScViewCfg()
547 aNames = GetGridPropertyNames(); in ScViewCfg()
548 aValues = aGridItem.GetProperties(aNames); in ScViewCfg()
549 aGridItem.EnableNotification(aNames); in ScViewCfg()
551 DBG_ASSERT(aValues.getLength() == aNames.getLength(), "GetProperties failed"); in ScViewCfg()
552 if(aValues.getLength() == aNames.getLength()) in ScViewCfg()
554 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in ScViewCfg()
601 Sequence<OUString> aNames = GetLayoutPropertyNames(); in IMPL_LINK() local
602 Sequence<Any> aValues(aNames.getLength()); in IMPL_LINK()
605 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in IMPL_LINK()
645 aLayoutItem.PutProperties(aNames, aValues); in IMPL_LINK()
652 Sequence<OUString> aNames = GetDisplayPropertyNames(); in IMPL_LINK() local
653 Sequence<Any> aValues(aNames.getLength()); in IMPL_LINK()
656 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in IMPL_LINK()
689 aDisplayItem.PutProperties(aNames, aValues); in IMPL_LINK()
698 Sequence<OUString> aNames = GetGridPropertyNames(); in IMPL_LINK() local
699 Sequence<Any> aValues(aNames.getLength()); in IMPL_LINK()
702 for(int nProp = 0; nProp < aNames.getLength(); nProp++) in IMPL_LINK()
738 aGridItem.PutProperties(aNames, aValues); in IMPL_LINK()