summaryrefslogtreecommitdiffstats
path: root/sal/CppunitTest_sal_rtl_strings.mk
Commit message (Collapse)AuthorAgeFilesLines
* support for fast O(U)String concatenation using operator+Luboš Luňák2012-12-031-0/+2
| | | | | | | | | Operator+ now, instead of requiring O(U)String operands and returning another O(U)String object, keeps a track of the whole concatenation operation using temporary O(U)StringConcat objects and performs the whole operation only at the very end. Change-Id: I94b3348300a137498514d26e96459c1698328520
* gbuild: invert handling of standard system libraries:Michael Stahl2012-09-281-2/+0
| | | | | | | Always link in gb_STDLIBS, except when the library explicitly opts out with gb_LinkTarget_disable_standard_system_libs. Change-Id: I489a99114fbfa46d0421a27cf6c7b899dc268a4a
* gbuild: replace direct gb_STDLIBS use with ...Michael Stahl2012-09-281-1/+2
| | | | | | ... new gb_LinkTarget_add_standard_system_libs Change-Id: Ib2bc843098db3d8c6822b45a3d21724e67f57d69
* gbuild: split uwinapi out of gb_STDLIBSMichael Stahl2012-09-281-0/+1
| | | | Change-Id: I53316e0b9369d806197bccb42cf22d3497af43e7
* add O(U)String::startsWith() to complement endsWith()Luboš Luňák2012-09-061-0/+1
| | | | | | | There's match(), with the second argument defaulting to 0, which does the same, but that's pretty non-obvious. Change-Id: Idd4de9388f53e1b5dc5d48446d1001af32c0af3d
* gbuild: "use" vs. "add":Michael Stahl2012-04-081-1/+1
| | | | | | | | | Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
* No separate sal_textenc library built for AndroidTor Lillqvist2012-03-261-2/+4
| | | | | (As a low-hanging fruit to drop the shared library count by one... Each library less counts.)
* fix commentLuboš Luňák2012-03-261-1/+1
|
* sal_rtl_strings unittest depends on sal_textenc libraryLuboš Luňák2012-03-261-0/+5
| | | | there's a dlopen of it somewhere in sal's string classes
* OString ctor for string literals without RTL_CONSTASCII stuffLuboš Luňák2012-03-121-1/+2
|
* OUString ctor for string literals without RTL_CONSTASCII stuffLuboš Luňák2012-02-221-0/+1
| | | | http://lists.freedesktop.org/archives/libreoffice/2012-February/025662.html
* Various string function clean upStephan Bergmann2012-02-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added: * rtl::OString::matchL * rtl::OString::endsWith * rtl::OString::endsWithL * rtl::OString::indexOfL * rtl::OString::replaceFirst * rtl::OString::replaceAll * rtl::OString::getToken * rtl::OUString::endsWith * rtl::OUString::replaceFirst * rtl::OUString::replaceFirstAsciiL * rtl::OUString::replaceFirstAsciiLAsciiL * rtl::OUString::replaceAll * rtl::OUString::replaceAllAsciiL * rtl::OUString::replaceAllAsciiLAsciiL * rtl::OUString::getToken plus underlying C functions where necessary Deprecated: * comphelper::string::remove * comphelper::string::getToken Removed: * comphelper::string::searchAndReplaceAsciiL * comphelper::string::searchAndReplaceAllAsciiWithAscii * comphelper::string::searchAndReplaceAsciiI * comphelper::string::replace * comphelper::string::matchL * comphelper::string::matchIgnoreAsciiCaseL * comphelper::string::indexOfL Also fixed some apparent misuses of RTL_CONSTASCII_USTRINGPARAM -> RTL_CONSTASCII_STRINGPARAM.
* sal: add more unit testsMatúš Kukan2011-12-191-0/+42