#include <qstringlist.h>
#include <qset.h>
Go to the source code of this file.
◆ indexOfMutating()
Definition at line 607 of file qstringlist.cpp.
Referenced by QtPrivate::QStringList_indexOf().
610 from =
qMax(from + that->
size(), 0);
611 for (
int i = from; i < that->
size(); ++i) {
Q_DECL_CONSTEXPR const T & qMax(const T &a, const T &b)
const T & at(int i) const
Returns the item at index position i in the list.
int size() const
Returns the number of items in the list.
bool exactMatch(const QString &str) const
Returns true if str is matched exactly by this regular expression; otherwise returns false...
◆ lastIndexOfMutating()
Definition at line 618 of file qstringlist.cpp.
Referenced by QtPrivate::QStringList_lastIndexOf().
621 from += that->
size();
622 else if (from >= that->
size())
623 from = that->
size() - 1;
624 for (
int i = from; i >= 0; --i) {
const T & at(int i) const
Returns the item at index position i in the list.
int size() const
Returns the number of items in the list.
bool exactMatch(const QString &str) const
Returns true if str is matched exactly by this regular expression; otherwise returns false...