Lines Matching refs:yyWord

202     QString yyWord;  member in CppParser
392 Q_ASSERT(yyWord.isDetached()); in getToken()
490 ushort *ptr = (ushort *)yyWord.unicode(); in getToken()
501 yyWord.resize(ptr - (ushort *)yyWord.unicode()); in getToken()
586 ushort *ptr = (ushort *)yyWord.unicode(); in getToken()
592 yyWord.resize(ptr - (ushort *)yyWord.unicode()); in getToken()
596 switch (yyWord.unicode()[0].unicode()) { in getToken()
598 if (yyWord == strNULL) in getToken()
602 if (yyWord == strQ_NULLPTR) in getToken()
604 if (yyWord == strQ_OBJECT) in getToken()
606 if (yyWord == strQ_SLOTS || yyWord == strQ_SIGNALS) in getToken()
610 if (yyWord == strclass) in getToken()
614 if (yyWord == strfriend) in getToken()
618 if (yyWord == strnamespace) in getToken()
620 if (yyWord == strnullptr) in getToken()
624 if (yyWord == stroperator) { in getToken()
638 if (yyWord == strpublic || yyWord == strprotected || yyWord == strprivate) in getToken()
642 if (yyWord == strreturn) in getToken()
646 if (yyWord == strstruct) in getToken()
648 if (yyWord == strslots || yyWord == strsignals) in getToken()
652 if (yyWord == strusing) in getToken()
659yyWord == QLatin1String("R") || yyWord == QLatin1String("LR") || yyWord == QLatin1String("u8R") || in getToken()
660 yyWord == QLatin1String("uR") || yyWord == QLatin1String("UR") in getToken()
662 ptr = reinterpret_cast<ushort *>(const_cast<QChar *>(yyWord.unicode())); in getToken()
701yyWord.resize(ptr_past_end - 1 - reinterpret_cast<const ushort *>(yyWord.unicode())); in getToken()
703 yyWord.resize(ptr - reinterpret_cast<const ushort *>(yyWord.unicode())); in getToken()
730 ushort *ptr = (ushort *)yyWord.unicode(); in getToken()
737 yyWord.resize(ptr - (ushort *)yyWord.unicode()); in getToken()
741 ushort *ptr = (ushort *)yyWord.unicode(); in getToken()
758 yyWord.resize(ptr - (ushort *)yyWord.unicode() - 2); in getToken()
765 ushort *ptr = (ushort *)yyWord.unicode(); in getToken()
777 yyWord.resize(ptr - (ushort *)yyWord.unicode()); in getToken()
1369 *s += ParserTool::transcode(yyWord); in matchString()
1371 *s += yyWord; in matchString()
1388 if (yyWord == strQApplication || yyWord == strQCoreApplication) { in matchEncoding()
1393 if (yyWord == strUnicodeUTF8 || yyWord == strDefaultCodec || yyWord == strCodecForTr) { in matchEncoding()
1397 if (yyWord == strLatin1) in matchEncoding()
1644 name += yyWord; in handleDeclareTrFunctions()
1684 yyWord.reserve(yyInStr.size()); // Rather insane. That's because we do no length checking. in parseInternal()
1700 text = QDir(QFileInfo(yyFileName).absolutePath()).absoluteFilePath(yyWord); in parseInternal()
1710 QStringList cSources = cd.m_allCSources.values(yyWord); in parseInternal()
1717 text = QDir(incPath).absoluteFilePath(yyWord); in parseInternal()
1745 text = yyWord; in parseInternal()
1754 if (yyWord == strfinal) { in parseInternal()
1813 text = yyWord; in parseInternal()
1825 text = yyWord; in parseInternal()
1850 text = yyWord; in parseInternal()
1878 text = yyWord; in parseInternal()
1893 text = yyWord; in parseInternal()
1923 switch (trFunctionAliasManager.trFunctionByName(yyWord)) { in parseInternal()
1965 prefix += yyWord; in parseInternal()
1978 switch (trFunctionAliasManager.trFunctionByName(yyWord)) { in parseInternal()
1998 functionName = yyWord; in parseInternal()
2116 const QChar *ptr = yyWord.unicode(); in processComment()
2118 yyWord.remove(0, 2); in processComment()
2119 extracomment += yyWord; in processComment()
2122 yyWord.remove(0, 2); in processComment()
2123 msgid = yyWord.simplified(); in processComment()
2126 yyWord.remove(0, 2); in processComment()
2127 text = yyWord.trimmed(); in processComment()
2133 sourcetext.reserve(sourcetext.length() + yyWord.length() - 2); in processComment()
2137 if (p >= yyWord.length()) in processComment()
2139 c = yyWord.unicode()[p++].unicode(); in processComment()
2147 if (p >= yyWord.length()) { in processComment()
2152 c = yyWord.unicode()[p++].unicode(); in processComment()
2156 if (p >= yyWord.length()) in processComment()
2158 c = yyWord.unicode()[p++].unicode(); in processComment()
2168 const ushort *uc = (const ushort *)yyWord.unicode(); // Is zero-terminated in processComment()
2175 comment = QString::fromRawData(yyWord.unicode() + idx, in processComment()
2176 yyWord.length() - idx).simplified(); in processComment()