Lines Matching refs:size

311     sal_uInt32 size;  in getValueType()  local
312 RegError err = key_.getValueInfo(rtl::OUString(), &type, &size); in getValueType()
452 static_cast< sal_uInt32 >(list.size())); in setLongListValue()
470 sal_uInt32 size; in getAsciiValue() local
471 RegError err = key_.getValueInfo(rtl::OUString(), &type, &size); in getAsciiValue()
491 if (size == 0) { in getAsciiValue()
500 if (size > SAL_MAX_INT32) { in getAsciiValue()
508 std::vector< char > list(size); in getAsciiValue()
519 if (list[size - 1] != '\0') { in getAsciiValue()
531 static_cast< sal_Int32 >(size - 1), RTL_TEXTENCODING_UTF8, in getAsciiValue()
621 sal_Int32 size = rtl_str_getLength(el); in getAsciiListValue() local
623 &value[static_cast< sal_Int32 >(i)].pData, el, size, in getAsciiListValue()
671 static_cast< sal_uInt32 >(list2.size())); in setAsciiListValue()
690 sal_uInt32 size; in getStringValue() local
691 RegError err = key_.getValueInfo(rtl::OUString(), &type, &size); in getStringValue()
712 if (size == 0 || (size & 1) == 1) { in getStringValue()
721 if (size > SAL_MAX_INT32) { in getStringValue()
729 std::vector< sal_Unicode > list(size); in getStringValue()
740 if (list[size/2 - 1] != 0) { in getStringValue()
749 return rtl::OUString(&list[0], static_cast< sal_Int32 >(size/2 - 1)); in getStringValue()
830 static_cast< sal_uInt32 >(list.size())); in setStringListValue()
850 sal_uInt32 size; in getBinaryValue() local
851 RegError err = key_.getValueInfo(rtl::OUString(), &type, &size); in getBinaryValue()
870 if (size > SAL_MAX_INT32) { in getBinaryValue()
878 css::uno::Sequence< sal_Int8 > value(static_cast< sal_Int32 >(size)); in getBinaryValue()