亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? qstring.h

?? QT 開發環境里面一個很重要的文件
?? H
?? 第 1 頁 / 共 3 頁
字號:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtCore module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef QSTRING_H#define QSTRING_H#include <QtCore/qchar.h>#include <QtCore/qbytearray.h>#include <QtCore/qatomic.h>#include <QtCore/qnamespace.h>#ifdef QT_INCLUDE_COMPAT#include <Qt3Support/q3cstring.h>#endif#ifndef QT_NO_STL#  if defined (Q_CC_MSVC_NET) && _MSC_VER < 1310 // Avoids nasty warning for xlocale, line 450#    pragma warning (push)#    pragma warning (disable : 4189)#    include <string>#    pragma warning (pop)#  else#    include <string>#  endif#  ifndef QT_NO_STL_WCHAR// workaround for some headers not typedef'ing std::wstringtypedef std::basic_string<wchar_t> QStdWString;#  endif // QT_NO_STL_WCHAR#endif // QT_NO_STL#include <stdarg.h>#ifdef truncate#error qstring.h must be included before any header file that defines truncate#endifQT_BEGIN_HEADERQT_MODULE(Core)class QCharRef;class QRegExp;class QStringList;class QTextCodec;class QLatin1String;template <typename T> class QVector;class Q_CORE_EXPORT QString{public:    inline QString();    QString(const QChar *unicode, int size);    QString(QChar c);    QString(int size, QChar c);    inline QString(const QLatin1String &latin1);    inline QString(const QString &);    inline ~QString();    QString &operator=(QChar c);    QString &operator=(const QString &);    inline QString &operator=(const QLatin1String &);    inline int size() const { return d->size; }    inline int count() const { return d->size; }    inline int length() const;    inline bool isEmpty() const;    void resize(int size);    QString &fill(QChar c, int size = -1);    void truncate(int pos);    void chop(int n);    int capacity() const;    inline void reserve(int size);    inline void squeeze() { if (d->size < d->alloc) realloc(); }    inline const QChar *unicode() const;    inline QChar *data();    inline const QChar *data() const;    inline const QChar *constData() const;    inline void detach();    inline bool isDetached() const;    void clear();    inline const QChar at(int i) const;    const QChar operator[](int i) const;    QCharRef operator[](int i);    const QChar operator[](uint i) const;    QCharRef operator[](uint i);    QString arg(qlonglong a, int fieldwidth=0, int base=10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(qulonglong a, int fieldwidth=0, int base=10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(long a, int fieldwidth=0, int base=10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(ulong a, int fieldwidth=0, int base=10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(int a, int fieldWidth = 0, int base = 10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(uint a, int fieldWidth = 0, int base = 10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(short a, int fieldWidth = 0, int base = 10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(ushort a, int fieldWidth = 0, int base = 10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(double a, int fieldWidth = 0, char fmt = 'g', int prec = -1,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(char a, int fieldWidth = 0,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(QChar a, int fieldWidth = 0,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(const QString &a, int fieldWidth = 0,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(const QString &a1, const QString &a2) const Q_REQUIRED_RESULT;    QString arg(const QString &a1, const QString &a2, const QString &a3) const Q_REQUIRED_RESULT;    QString arg(const QString &a1, const QString &a2, const QString &a3,                const QString &a4) const Q_REQUIRED_RESULT;    QString    &vsprintf(const char *format, va_list ap);    QString    &sprintf(const char *format, ...)#if defined(Q_CC_GNU) && !defined(__INSURE__)        __attribute__ ((format (printf, 2, 3)))#endif        ;    int indexOf(QChar c, int from = 0, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    int indexOf(const QString &s, int from = 0, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    int lastIndexOf(QChar c, int from = -1, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    int lastIndexOf(const QString &s, int from = -1, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    inline QBool contains(QChar c, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    inline QBool contains(const QString &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    int count(QChar c, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    int count(const QString &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;#ifndef QT_NO_REGEXP    int indexOf(const QRegExp &, int from = 0) const;    int lastIndexOf(const QRegExp &, int from = -1) const;    inline QBool contains(const QRegExp &rx) const { return QBool(indexOf(rx) != -1); }    int count(const QRegExp &) const;#endif    enum SectionFlag {        SectionDefault             = 0x00,        SectionSkipEmpty           = 0x01,        SectionIncludeLeadingSep   = 0x02,        SectionIncludeTrailingSep  = 0x04,        SectionCaseInsensitiveSeps = 0x08    };    Q_DECLARE_FLAGS(SectionFlags, SectionFlag)    QString section(QChar sep, int start, int end = -1, SectionFlags flags = SectionDefault) const;    QString section(const QString &in_sep, int start, int end = -1, SectionFlags flags = SectionDefault) const;#ifndef QT_NO_REGEXP    QString section(const QRegExp &reg, int start, int end = -1, SectionFlags flags = SectionDefault) const;#endif    QString left(int len) const Q_REQUIRED_RESULT;    QString right(int len) const Q_REQUIRED_RESULT;    QString mid(int i, int len = -1) const Q_REQUIRED_RESULT;    bool startsWith(const QString &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    bool startsWith(const QLatin1String &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    bool startsWith(const QChar &c, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    bool endsWith(const QString &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    bool endsWith(const QLatin1String &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    bool endsWith(const QChar &c, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    QString leftJustified(int width, QChar fill = QLatin1Char(' '), bool trunc = false) const Q_REQUIRED_RESULT;    QString rightJustified(int width, QChar fill = QLatin1Char(' '), bool trunc = false) const Q_REQUIRED_RESULT;    QString toLower() const Q_REQUIRED_RESULT;    QString toUpper() const Q_REQUIRED_RESULT;    QString trimmed() const Q_REQUIRED_RESULT;    QString simplified() const Q_REQUIRED_RESULT;    QString &insert(int i, QChar c);    QString &insert(int i, const QChar *uc, int len);    inline QString &insert(int i, const QString &s) { return insert(i, s.constData(), s.length()); }    QString &insert(int i, const QLatin1String &s);    QString &append(QChar c);    QString &append(const QString &s);    QString &append(const QLatin1String &s);    inline QString &prepend(QChar c) { return insert(0, c); }    inline QString &prepend(const QString &s) { return insert(0, s); }    inline QString &prepend(const QLatin1String &s) { return insert(0, s); }    inline QString &operator+=(QChar c) { return append(c); }    inline QString &operator+=(QChar::SpecialCharacter c) { return append(QChar(c)); }    inline QString &operator+=(const QString &s) { return append(s); }    inline QString &operator+=(const QLatin1String &s) { return append(s); }    QString &remove(int i, int len);    QString &remove(QChar c, Qt::CaseSensitivity cs = Qt::CaseSensitive);    QString &remove(const QString &s, Qt::CaseSensitivity cs = Qt::CaseSensitive);    QString &replace(int i, int len, QChar after);    QString &replace(int i, int len, const QChar *s, int slen);    QString &replace(int i, int len, const QString &after);    QString &replace(QChar before, QChar after, Qt::CaseSensitivity cs = Qt::CaseSensitive);    QString &replace(QChar c, const QString &after, Qt::CaseSensitivity cs = Qt::CaseSensitive);    QString &replace(const QString &before, const QString &after,                     Qt::CaseSensitivity cs = Qt::CaseSensitive);#ifndef QT_NO_REGEXP    QString &replace(const QRegExp &rx, const QString &after);    inline QString &remove(const QRegExp &rx)    { return replace(rx, QString()); }#endif    enum SplitBehavior { KeepEmptyParts, SkipEmptyParts };    QStringList split(const QString &sep, SplitBehavior behavior = KeepEmptyParts,                      Qt::CaseSensitivity cs = Qt::CaseSensitive) const Q_REQUIRED_RESULT;    QStringList split(const QChar &sep, SplitBehavior behavior = KeepEmptyParts,                      Qt::CaseSensitivity cs = Qt::CaseSensitive) const Q_REQUIRED_RESULT;#ifndef QT_NO_REGEXP    QStringList split(const QRegExp &sep, SplitBehavior behavior = KeepEmptyParts) const Q_REQUIRED_RESULT;#endif    enum NormalizationForm {        NormalizationForm_D,        NormalizationForm_C,        NormalizationForm_KD,        NormalizationForm_KC    };    QString normalized(NormalizationForm mode) const Q_REQUIRED_RESULT;    QString normalized(NormalizationForm mode, QChar::UnicodeVersion version) const Q_REQUIRED_RESULT;    const ushort *utf16() const;    QByteArray toAscii() const Q_REQUIRED_RESULT;    QByteArray toLatin1() const Q_REQUIRED_RESULT;    QByteArray toUtf8() const Q_REQUIRED_RESULT;    QByteArray toLocal8Bit() const Q_REQUIRED_RESULT;    QVector<uint> toUcs4() const Q_REQUIRED_RESULT;    static QString fromAscii(const char *, int size = -1);    static QString fromLatin1(const char *, int size = -1);    static QString fromUtf8(const char *, int size = -1);    static QString fromLocal8Bit(const char *, int size = -1);    static QString fromUtf16(const ushort *, int size = -1);    static QString fromUcs4(const uint *, int size = -1);    static QString fromRawData(const QChar *, int size);    int toWCharArray(wchar_t *array) const;    static QString fromWCharArray(const wchar_t *, int size = -1);    QString &setUnicode(const QChar *unicode, int size);    inline QString &setUtf16(const ushort *utf16, int size);    // ### Qt 5: merge these two functions    int compare(const QString &s) const;    int compare(const QString &s, Qt::CaseSensitivity cs) const;    int compare(const QLatin1String &other, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    // ### Qt 5: merge these two functions    static inline int compare(const QString &s1, const QString &s2)    { return s1.compare(s2); }    static inline int compare(const QString &s1, const QString &s2, Qt::CaseSensitivity cs)    { return s1.compare(s2, cs); }    static inline int compare(const QString& s1, const QLatin1String &s2,                              Qt::CaseSensitivity cs = Qt::CaseSensitive)    { return s1.compare(s2, cs); }    static inline int compare(const QLatin1String& s1, const QString &s2,                              Qt::CaseSensitivity cs = Qt::CaseSensitive)    { return -s2.compare(s1, cs); }    int localeAwareCompare(const QString& s) const;    static int localeAwareCompare(const QString& s1, const QString& s2)    { return s1.localeAwareCompare(s2); }    short  toShort(bool *ok=0, int base=10) const;    ushort toUShort(bool *ok=0, int base=10) const;    int toInt(bool *ok=0, int base=10) const;    uint toUInt(bool *ok=0, int base=10) const;    long toLong(bool *ok=0, int base=10) const;    ulong toULong(bool *ok=0, int base=10) const;    qlonglong toLongLong(bool *ok=0, int base=10) const;    qulonglong toULongLong(bool *ok=0, int base=10) const;    float toFloat(bool *ok=0) const;    double toDouble(bool *ok=0) const;    QString &setNum(short, int base=10);    QString &setNum(ushort, int base=10);    QString &setNum(int, int base=10);    QString &setNum(uint, int base=10);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产91精品久久久久久久网曝门| 粉嫩欧美一区二区三区高清影视| 国产一区二区三区四| 日韩精品一区在线| 自拍偷拍亚洲综合| 国产精品一区二区果冻传媒| 在线91免费看| 一区二区三区蜜桃网| 成av人片一区二区| 2017欧美狠狠色| 亚洲成av人片一区二区三区| 91麻豆精品一区二区三区| 国产人久久人人人人爽| 蜜桃av噜噜一区| 欧美人伦禁忌dvd放荡欲情| 日韩理论片在线| 成人aa视频在线观看| 久久婷婷国产综合国色天香 | 捆绑变态av一区二区三区| 91香蕉视频在线| 中文字幕一区二区三| 国产一区日韩二区欧美三区| 日韩午夜电影在线观看| 午夜影院在线观看欧美| 欧美视频一区二区在线观看| 一区二区三区免费| 欧美三级电影在线看| 亚洲国产成人高清精品| 欧美日韩国产一级| 亚洲成人一区二区在线观看| 欧美日韩国产免费一区二区| 亚洲一线二线三线久久久| 91老师国产黑色丝袜在线| 日韩美女精品在线| 色婷婷久久久亚洲一区二区三区| 亚洲蜜桃精久久久久久久| 色婷婷精品大视频在线蜜桃视频| 一片黄亚洲嫩模| 欧美性生活影院| 日韩激情av在线| 日韩欧美亚洲一区二区| 国产在线精品不卡| 中文字幕中文字幕一区| 色94色欧美sute亚洲线路二| 天天操天天色综合| 精品国产伦一区二区三区免费 | 国产精品色婷婷久久58| 制服丝袜亚洲色图| 91麻豆免费观看| 欧美va亚洲va| 精品乱码亚洲一区二区不卡| 欧美久久久影院| www国产精品av| 国产午夜精品美女毛片视频| 中文在线一区二区| 久久免费的精品国产v∧| 日韩久久一区二区| 亚洲欧美激情在线| 精品在线你懂的| 国产亚洲欧美日韩俺去了| 99久久久免费精品国产一区二区| 亚洲一区二区三区四区五区中文| 日韩精品在线网站| 91网上在线视频| 美女爽到高潮91| 中文字幕人成不卡一区| 欧美区一区二区三区| 大胆欧美人体老妇| 日韩一区欧美二区| 国产精品系列在线| 欧美嫩在线观看| 成人黄页在线观看| 蜜桃视频在线观看一区二区| 国产精品狼人久久影院观看方式| 这里只有精品电影| 91免费视频大全| 国产一区在线观看视频| 亚洲午夜精品17c| 中文文精品字幕一区二区| 欧美美女网站色| 99国产精品久| 国产一区二区三区免费| 午夜影视日本亚洲欧洲精品| 欧美国产精品久久| 日韩免费高清av| 91久久精品国产91性色tv| 国产精品99久久久久久有的能看| 亚洲国产视频a| 中文字幕日韩av资源站| 国产婷婷一区二区| 精品噜噜噜噜久久久久久久久试看| 91福利精品视频| 丁香激情综合五月| 国产一区二区三区免费在线观看| 人人爽香蕉精品| 午夜精品久久久久久久| 亚洲免费在线视频| 成人免费在线播放视频| 国产午夜亚洲精品不卡| 精品国产成人系列| 欧美大黄免费观看| 欧美一区二区三区视频免费播放| 91精品福利视频| 日本道免费精品一区二区三区| 99久久99久久久精品齐齐| 高清不卡一区二区在线| 国产精品一区二区在线播放| 久久国产夜色精品鲁鲁99| 免费在线视频一区| 三级不卡在线观看| 免费久久精品视频| 日本欧美加勒比视频| 青草国产精品久久久久久| 日韩成人av影视| 久久精品国产精品青草| 精品一区二区三区影院在线午夜| 久久精品噜噜噜成人88aⅴ| 欧美aaaaaa午夜精品| 久久激情五月激情| 国产盗摄女厕一区二区三区| 丁香亚洲综合激情啪啪综合| 成人一级片网址| 91色在线porny| 欧美亚洲免费在线一区| 欧美日本一区二区| 久久综合九色综合97婷婷女人| 久久亚洲一区二区三区四区| 国产欧美精品日韩区二区麻豆天美| 欧美国产禁国产网站cc| 亚洲色图在线播放| 亚洲成人激情社区| 久久黄色级2电影| 国产成都精品91一区二区三| 91伊人久久大香线蕉| 欧美唯美清纯偷拍| 日韩欧美一级二级| 国产精品天干天干在观线| 亚洲欧美一区二区三区国产精品 | 天天影视色香欲综合网老头| 日本aⅴ免费视频一区二区三区| 日日夜夜一区二区| 国模一区二区三区白浆| 成人18视频在线播放| 色婷婷综合五月| 8x8x8国产精品| 欧美成人女星排行榜| 26uuu欧美日本| 国产调教视频一区| 亚洲人123区| 日韩精品午夜视频| 国产精品12区| 不卡高清视频专区| 欧美日韩中文国产| 欧美一级片在线| 国产欧美一区二区精品秋霞影院| 欧美激情一区三区| 亚洲午夜激情网页| 国产精品资源网站| 在线一区二区三区做爰视频网站| 91麻豆精品国产91久久久久| 欧美va亚洲va在线观看蝴蝶网| 亚洲欧洲精品成人久久奇米网 | 久久看人人爽人人| 亚洲另类在线一区| 乱一区二区av| 成人午夜短视频| 欧美日韩国产乱码电影| 国产欧美一区二区三区网站| 亚洲午夜一二三区视频| 久久精品国产精品青草| 91九色02白丝porn| 久久久蜜臀国产一区二区| 一区二区在线观看视频在线观看| 水蜜桃久久夜色精品一区的特点 | 亚洲狠狠爱一区二区三区| 另类调教123区 | 日韩欧美国产1| 中文字幕国产精品一区二区| 午夜精品久久久久久久久| 成人一区二区三区视频在线观看| 在线播放91灌醉迷j高跟美女 | 欧美三级日韩在线| 欧美经典一区二区| 天天综合色天天| 91亚洲精华国产精华精华液| 久久婷婷一区二区三区| 午夜久久久久久| 色呦呦网站一区| 国产日韩欧美激情| 国产一区二区三区精品视频| 欧美日韩亚洲综合一区二区三区| 中文字幕一区二区三区不卡在线| 精品夜夜嗨av一区二区三区| 欧美喷潮久久久xxxxx| 亚洲精品视频免费看| 国产成人免费视频网站 | 成人免费av网站| 欧美大片日本大片免费观看| 亚洲国产一区二区a毛片| av动漫一区二区|