2011-08-26 13:03:33 +00:00
|
|
|
TEMPLATE=subdirs
|
|
|
|
SUBDIRS=\
|
2014-05-12 11:43:42 +00:00
|
|
|
collections \
|
2017-04-06 17:36:47 +00:00
|
|
|
containerapisymmetry \
|
2011-08-26 13:03:33 +00:00
|
|
|
qalgorithms \
|
2011-12-01 14:17:10 +00:00
|
|
|
qarraydata \
|
2013-02-07 21:56:57 +00:00
|
|
|
qarraydata_strictiterators \
|
2011-08-26 13:03:33 +00:00
|
|
|
qbitarray \
|
|
|
|
qbytearray \
|
2013-07-10 02:27:22 +00:00
|
|
|
qbytearraylist \
|
2011-08-26 13:03:33 +00:00
|
|
|
qbytearraymatcher \
|
2012-10-24 07:56:46 +00:00
|
|
|
qbytedatabuffer \
|
2011-08-26 13:03:33 +00:00
|
|
|
qcache \
|
|
|
|
qchar \
|
2013-11-13 10:37:37 +00:00
|
|
|
qcollator \
|
2013-08-24 09:15:19 +00:00
|
|
|
qcommandlineparser \
|
2011-08-26 13:03:33 +00:00
|
|
|
qcontiguouscache \
|
|
|
|
qcryptographichash \
|
|
|
|
qdate \
|
|
|
|
qdatetime \
|
|
|
|
qeasingcurve \
|
|
|
|
qexplicitlyshareddatapointer \
|
|
|
|
qfreelist \
|
|
|
|
qhash \
|
2013-02-07 21:56:57 +00:00
|
|
|
qhash_strictiterators \
|
2014-03-15 19:28:17 +00:00
|
|
|
qhashfunctions \
|
2015-10-18 13:50:05 +00:00
|
|
|
qlatin1string \
|
2011-08-26 13:03:33 +00:00
|
|
|
qline \
|
2013-06-17 09:35:46 +00:00
|
|
|
qlinkedlist \
|
2011-08-26 13:03:33 +00:00
|
|
|
qlist \
|
2013-02-07 21:56:57 +00:00
|
|
|
qlist_strictiterators \
|
2011-08-26 13:03:33 +00:00
|
|
|
qlocale \
|
|
|
|
qmap \
|
2013-02-07 21:56:57 +00:00
|
|
|
qmap_strictiterators \
|
2011-08-26 13:03:33 +00:00
|
|
|
qmargins \
|
2013-01-11 12:10:53 +00:00
|
|
|
qmessageauthenticationcode \
|
2012-02-28 18:54:46 +00:00
|
|
|
qpair \
|
2011-08-26 13:03:33 +00:00
|
|
|
qpoint \
|
2012-07-05 15:06:31 +00:00
|
|
|
qpointf \
|
2011-08-26 13:03:33 +00:00
|
|
|
qqueue \
|
|
|
|
qrect \
|
|
|
|
qregexp \
|
2012-01-23 22:47:59 +00:00
|
|
|
qregularexpression \
|
2011-08-26 13:03:33 +00:00
|
|
|
qringbuffer \
|
|
|
|
qscopedpointer \
|
|
|
|
qscopedvaluerollback \
|
|
|
|
qset \
|
|
|
|
qsharedpointer \
|
|
|
|
qsize \
|
|
|
|
qsizef \
|
|
|
|
qstl \
|
|
|
|
qstring \
|
2012-05-08 10:23:42 +00:00
|
|
|
qstring_no_cast_from_bytearray \
|
2015-12-11 14:48:33 +00:00
|
|
|
qstringapisymmetry \
|
2011-08-26 13:03:33 +00:00
|
|
|
qstringbuilder \
|
2011-06-23 13:26:08 +00:00
|
|
|
qstringiterator \
|
2011-08-26 13:03:33 +00:00
|
|
|
qstringlist \
|
|
|
|
qstringmatcher \
|
|
|
|
qstringref \
|
Long live QStringView!
QStringView is a simple container for (const QChar*, int) and (const
char16_t*, size_t). It acts as a replacement interface type for const
QString and const QStringRef, and enables passing all kinds of
string-like types to functions otherwise expecting const QString& -
without the need to convert to QString first.
The use of this new class is guarded by a macro that enables three
levels of QStringView support:
1. offer QStringView, overload some functions taking QString with
QStringView
2. like 1, but remove all overloads of functions taking QStringRef,
leaving only the function taking QStringView. Do this only where
QStringRef overloads tradionally existed.
3. like 2, but replace functions taking QString, too.
This is done in order to measure the impact of QStringView on code
size and execution speed, and to help guide the decision of which
level to choose for Qt 6.
This first patch adds QStringView with most of its planned
constructors, but not much more than iterators and isNull()/isEmpty().
Further patches will add support for QStringView to QStringBuilder,
add QStringView overloads of functions taking QString, and add the
complete API of const QString to QStringView.
[ChangeLog][QtCore][QStringView] New class, superseding const QString
and QStringRef as function parameters, accepting a wide variety of
UTF-16 string data sources, e.g. u"string", std::u16string{,_view},
and, on Windows, L"string", std::wstring{,_view} without converting to
QString first.
Change-Id: Iac273e46b2c61ec2c31b3dacebb29500599d6898
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
2015-10-22 13:51:14 +00:00
|
|
|
qstringview \
|
2011-08-26 13:03:33 +00:00
|
|
|
qtextboundaryfinder \
|
|
|
|
qtime \
|
2013-01-27 13:52:56 +00:00
|
|
|
qtimezone \
|
2011-08-26 13:03:33 +00:00
|
|
|
qtimeline \
|
|
|
|
qvarlengtharray \
|
2013-02-07 21:56:57 +00:00
|
|
|
qvector \
|
2014-03-29 02:45:33 +00:00
|
|
|
qvector_strictiterators \
|
|
|
|
qversionnumber
|
|
|
|
|
2017-07-22 14:41:44 +00:00
|
|
|
darwin: SUBDIRS += qmacautoreleasepool
|