Overview | Namespace | Class | Index | Help |
rtl_uString * * | This, |
sal_Int32 * | capacity, |
sal_Int32 | minimumCapacity ); |
virtual | abstract | const | volatile | template | static | inline | C-linkage |
NO | NO | NO | NO | NO | NO | NO | YES |
minimumCapacity
argument.
2
.
minimumCapacity
argument is nonpositive, this
method takes no action and simply returns.
capacity | in: old capicity, out: new capacity. |
minimumCapacity | the minimum desired capacity. |
rtl_uString * * | This, |
sal_Int32 * | capacity, |
sal_Int32 | offset, |
const sal_Unicode * | str, |
sal_Int32 | len ); |
virtual | abstract | const | volatile | template | static | inline | C-linkage |
NO | NO | NO | NO | NO | NO | NO | YES |
str
array
argument into this string buffer.
offset
. The length of this string buffer increases by
the length of the argument.
This | The string, on that the operation should take place |
capacity | the capacity of the string buffer |
offset | the offset. |
str | a character array. |
len | the number of characters to append. |
rtl_uString * * | This, |
sal_Int32 * | capacity, |
sal_Int32 | offset, |
const sal_Char * | str, |
sal_Int32 | len ); |
virtual | abstract | const | volatile | template | static | inline | C-linkage |
NO | NO | NO | NO | NO | NO | NO | YES |
str
array argument into this string buffer.
The characters of the array argument are inserted into the
contents of this string buffer at the position indicated by
offset
. The length of this string buffer increases by
the length of the argument.
This | The string, on that the operation should take place |
capacity | the capacity of the string buffer |
offset | the offset. |
str | a character array. |
len | the number of characters to append. |
rtl_uString * * | newStr, |
const sal_Unicode * | value, |
sal_Int32 | count ); |
virtual | abstract | const | volatile | template | static | inline | C-linkage |
NO | NO | NO | NO | NO | NO | NO | YES |
String
that contains characters from
the character array argument.
count
argument specifies
the length of the array. The initial capacity of the string buffer is
16
plus the length of the string argument.
newStr | out parameter, contains the new string. The reference count is 1. |
value | the initial value of the string. |
count | the length of value. |
rtl_uString * * | newStr, |
sal_Int32 | capacity, |
rtl_uString * | olsStr ); |
virtual | abstract | const | volatile | template | static | inline | C-linkage |
NO | NO | NO | NO | NO | NO | NO | YES |
String
that contains the same sequence of
characters as the string argument.
bufferLen
argument.
length
of the string argument.
newStr | out parameter, contains the new string. The reference count is 1. |
capacity | the initial len of the string buffer. |
oldStr | the initial value of the string. |
Copyright © 2003 Sun Microsystems, Inc.