Line | Source Code | Coverage |
---|
1 | /**************************************************************************** | - |
2 | ** | - |
3 | ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). | - |
4 | ** Contact: http://www.qt-project.org/legal | - |
5 | ** | - |
6 | ** This file is part of the QtGui module of the Qt Toolkit. | - |
7 | ** | - |
8 | ** $QT_BEGIN_LICENSE:LGPL$ | - |
9 | ** Commercial License Usage | - |
10 | ** Licensees holding valid commercial Qt licenses may use this file in | - |
11 | ** accordance with the commercial license agreement provided with the | - |
12 | ** Software or, alternatively, in accordance with the terms contained in | - |
13 | ** a written agreement between you and Digia. For licensing terms and | - |
14 | ** conditions see http://qt.digia.com/licensing. For further information | - |
15 | ** use the contact form at http://qt.digia.com/contact-us. | - |
16 | ** | - |
17 | ** GNU Lesser General Public License Usage | - |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser | - |
19 | ** General Public License version 2.1 as published by the Free Software | - |
20 | ** Foundation and appearing in the file LICENSE.LGPL included in the | - |
21 | ** packaging of this file. Please review the following information to | - |
22 | ** ensure the GNU Lesser General Public License version 2.1 requirements | - |
23 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. | - |
24 | ** | - |
25 | ** In addition, as a special exception, Digia gives you certain additional | - |
26 | ** rights. These rights are described in the Digia Qt LGPL Exception | - |
27 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. | - |
28 | ** | - |
29 | ** GNU General Public License Usage | - |
30 | ** Alternatively, this file may be used under the terms of the GNU | - |
31 | ** General Public License version 3.0 as published by the Free Software | - |
32 | ** Foundation and appearing in the file LICENSE.GPL included in the | - |
33 | ** packaging of this file. Please review the following information to | - |
34 | ** ensure the GNU General Public License version 3.0 requirements will be | - |
35 | ** met: http://www.gnu.org/copyleft/gpl.html. | - |
36 | ** | - |
37 | ** | - |
38 | ** $QT_END_LICENSE$ | - |
39 | ** | - |
40 | ****************************************************************************/ | - |
41 | | - |
42 | // auto generated. DO NOT EDIT. | - |
43 | class QCssScanner_Generated | - |
44 | { | - |
45 | public: | - |
46 | QCssScanner_Generated(const QString &inp); | - |
47 | | - |
48 | inline QChar next() { | - |
49 | return (pos < input.length()) ? input.at(pos++) : QChar(); executed: return (pos < input.length()) ? input.at(pos++) : QChar(); Execution Count:15080 | 15080 |
50 | } | - |
51 | int handleCommentStart(); | - |
52 | int lex(); | - |
53 | | - |
54 | QString input; | - |
55 | int pos; | - |
56 | int lexemStart; | - |
57 | int lexemLength; | - |
58 | }; | - |
59 | | - |
60 | QCssScanner_Generated::QCssScanner_Generated(const QString &inp) | - |
61 | { | - |
62 | input = inp; executed (the execution status of this line is deduced): input = inp; | - |
63 | pos = 0; executed (the execution status of this line is deduced): pos = 0; | - |
64 | lexemStart = 0; executed (the execution status of this line is deduced): lexemStart = 0; | - |
65 | lexemLength = 0; executed (the execution status of this line is deduced): lexemLength = 0; | - |
66 | } executed: } Execution Count:627 | 627 |
67 | | - |
68 | | - |
69 | int QCssScanner_Generated::lex() | - |
70 | { | - |
71 | lexemStart = pos; executed (the execution status of this line is deduced): lexemStart = pos; | - |
72 | lexemLength = 0; executed (the execution status of this line is deduced): lexemLength = 0; | - |
73 | int lastAcceptingPos = -1; executed (the execution status of this line is deduced): int lastAcceptingPos = -1; | - |
74 | int token = -1; executed (the execution status of this line is deduced): int token = -1; | - |
75 | QChar ch; executed (the execution status of this line is deduced): QChar ch; | - |
76 | | - |
77 | // initial state | - |
78 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
79 | if (ch.unicode() >= 9 && ch.unicode() <= 10) evaluated: ch.unicode() >= 9 yes Evaluation Count:3930 | yes Evaluation Count:627 |
evaluated: ch.unicode() <= 10 yes Evaluation Count:18 | yes Evaluation Count:3912 |
| 18-3930 |
80 | goto state_1; executed: goto state_1; Execution Count:18 | 18 |
81 | if (ch.unicode() >= 12 && ch.unicode() <= 13) evaluated: ch.unicode() >= 12 yes Evaluation Count:3912 | yes Evaluation Count:627 |
partially evaluated: ch.unicode() <= 13 no Evaluation Count:0 | yes Evaluation Count:3912 |
| 0-3912 |
82 | goto state_1; never executed: goto state_1; | 0 |
83 | if (ch.unicode() == 32) evaluated: ch.unicode() == 32 yes Evaluation Count:1270 | yes Evaluation Count:3269 |
| 1270-3269 |
84 | goto state_1; executed: goto state_1; Execution Count:1270 | 1270 |
85 | if (ch.unicode() == 33) { partially evaluated: ch.unicode() == 33 no Evaluation Count:0 | yes Evaluation Count:3269 |
| 0-3269 |
86 | token = QCss::EXCLAMATION_SYM; never executed (the execution status of this line is deduced): token = QCss::EXCLAMATION_SYM; | - |
87 | goto found; never executed: goto found; | 0 |
88 | } | - |
89 | if (ch.unicode() == 34) evaluated: ch.unicode() == 34 yes Evaluation Count:12 | yes Evaluation Count:3257 |
| 12-3257 |
90 | goto state_3; executed: goto state_3; Execution Count:12 | 12 |
91 | if (ch.unicode() == 35) evaluated: ch.unicode() == 35 yes Evaluation Count:17 | yes Evaluation Count:3240 |
| 17-3240 |
92 | goto state_4; executed: goto state_4; Execution Count:17 | 17 |
93 | if (ch.unicode() == 39) evaluated: ch.unicode() == 39 yes Evaluation Count:12 | yes Evaluation Count:3228 |
| 12-3228 |
94 | goto state_5; executed: goto state_5; Execution Count:12 | 12 |
95 | if (ch.unicode() == 40) { partially evaluated: ch.unicode() == 40 no Evaluation Count:0 | yes Evaluation Count:3228 |
| 0-3228 |
96 | token = QCss::LPAREN; never executed (the execution status of this line is deduced): token = QCss::LPAREN; | - |
97 | goto found; never executed: goto found; | 0 |
98 | } | - |
99 | if (ch.unicode() == 41) { evaluated: ch.unicode() == 41 yes Evaluation Count:6 | yes Evaluation Count:3222 |
| 6-3222 |
100 | token = QCss::RPAREN; executed (the execution status of this line is deduced): token = QCss::RPAREN; | - |
101 | goto found; executed: goto found; Execution Count:6 | 6 |
102 | } | - |
103 | if (ch.unicode() == 42) { evaluated: ch.unicode() == 42 yes Evaluation Count:180 | yes Evaluation Count:3042 |
| 180-3042 |
104 | token = QCss::STAR; executed (the execution status of this line is deduced): token = QCss::STAR; | - |
105 | goto found; executed: goto found; Execution Count:180 | 180 |
106 | } | - |
107 | if (ch.unicode() == 43) partially evaluated: ch.unicode() == 43 no Evaluation Count:0 | yes Evaluation Count:3042 |
| 0-3042 |
108 | goto state_9; never executed: goto state_9; | 0 |
109 | if (ch.unicode() == 44) evaluated: ch.unicode() == 44 yes Evaluation Count:15 | yes Evaluation Count:3027 |
| 15-3027 |
110 | goto state_10; executed: goto state_10; Execution Count:15 | 15 |
111 | if (ch.unicode() == 45) evaluated: ch.unicode() == 45 yes Evaluation Count:84 | yes Evaluation Count:2943 |
| 84-2943 |
112 | goto state_11; executed: goto state_11; Execution Count:84 | 84 |
113 | if (ch.unicode() == 46) evaluated: ch.unicode() == 46 yes Evaluation Count:7 | yes Evaluation Count:2936 |
| 7-2936 |
114 | goto state_12; executed: goto state_12; Execution Count:7 | 7 |
115 | if (ch.unicode() == 47) evaluated: ch.unicode() == 47 yes Evaluation Count:1 | yes Evaluation Count:2935 |
| 1-2935 |
116 | goto state_13; executed: goto state_13; Execution Count:1 | 1 |
117 | if (ch.unicode() >= 48 && ch.unicode() <= 57) evaluated: ch.unicode() >= 48 yes Evaluation Count:2308 | yes Evaluation Count:627 |
evaluated: ch.unicode() <= 57 yes Evaluation Count:333 | yes Evaluation Count:1975 |
| 333-2308 |
118 | goto state_14; executed: goto state_14; Execution Count:333 | 333 |
119 | if (ch.unicode() == 58) { evaluated: ch.unicode() == 58 yes Evaluation Count:529 | yes Evaluation Count:2073 |
| 529-2073 |
120 | token = QCss::COLON; executed (the execution status of this line is deduced): token = QCss::COLON; | - |
121 | goto found; executed: goto found; Execution Count:529 | 529 |
122 | } | - |
123 | if (ch.unicode() == 59) { evaluated: ch.unicode() == 59 yes Evaluation Count:408 | yes Evaluation Count:1665 |
| 408-1665 |
124 | token = QCss::SEMICOLON; executed (the execution status of this line is deduced): token = QCss::SEMICOLON; | - |
125 | goto found; executed: goto found; Execution Count:408 | 408 |
126 | } | - |
127 | if (ch.unicode() == 60) partially evaluated: ch.unicode() == 60 no Evaluation Count:0 | yes Evaluation Count:1665 |
| 0-1665 |
128 | goto state_17; never executed: goto state_17; | 0 |
129 | if (ch.unicode() == 61) { evaluated: ch.unicode() == 61 yes Evaluation Count:10 | yes Evaluation Count:1655 |
| 10-1655 |
130 | token = QCss::EQUAL; executed (the execution status of this line is deduced): token = QCss::EQUAL; | - |
131 | goto found; executed: goto found; Execution Count:10 | 10 |
132 | } | - |
133 | if (ch.unicode() == 62) partially evaluated: ch.unicode() == 62 no Evaluation Count:0 | yes Evaluation Count:1655 |
| 0-1655 |
134 | goto state_19; never executed: goto state_19; | 0 |
135 | if (ch.unicode() == 64) evaluated: ch.unicode() == 64 yes Evaluation Count:8 | yes Evaluation Count:1647 |
| 8-1647 |
136 | goto state_20; executed: goto state_20; Execution Count:8 | 8 |
137 | if (ch.unicode() == 91) { evaluated: ch.unicode() == 91 yes Evaluation Count:16 | yes Evaluation Count:1631 |
| 16-1631 |
138 | token = QCss::LBRACKET; executed (the execution status of this line is deduced): token = QCss::LBRACKET; | - |
139 | goto found; executed: goto found; Execution Count:16 | 16 |
140 | } | - |
141 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:1631 |
| 0-1631 |
142 | goto state_22; never executed: goto state_22; | 0 |
143 | if (ch.unicode() == 93) { evaluated: ch.unicode() == 93 yes Evaluation Count:16 | yes Evaluation Count:1615 |
| 16-1615 |
144 | token = QCss::RBRACKET; executed (the execution status of this line is deduced): token = QCss::RBRACKET; | - |
145 | goto found; executed: goto found; Execution Count:16 | 16 |
146 | } | - |
147 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:1615 |
| 0-1615 |
148 | goto state_24; never executed: goto state_24; | 0 |
149 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) evaluated: ch.unicode() >= 'a' yes Evaluation Count:969 | yes Evaluation Count:646 |
evaluated: ch.unicode() <= 'z' yes Evaluation Count:720 | yes Evaluation Count:249 |
evaluated: ch.unicode() >= 'A' yes Evaluation Count:268 | yes Evaluation Count:627 |
evaluated: ch.unicode() <= 'Z' yes Evaluation Count:19 | yes Evaluation Count:249 |
partially evaluated: ch.unicode() >= 256 no Evaluation Count:0 | yes Evaluation Count:876 |
| 0-969 |
150 | goto state_24; executed: goto state_24; Execution Count:739 | 739 |
151 | if (ch.unicode() == 123) partially evaluated: ch.unicode() == 123 no Evaluation Count:0 | yes Evaluation Count:876 |
| 0-876 |
152 | goto state_25; never executed: goto state_25; | 0 |
153 | if (ch.unicode() == 124) evaluated: ch.unicode() == 124 yes Evaluation Count:2 | yes Evaluation Count:874 |
| 2-874 |
154 | goto state_26; executed: goto state_26; Execution Count:2 | 2 |
155 | if (ch.unicode() == 125) { evaluated: ch.unicode() == 125 yes Evaluation Count:245 | yes Evaluation Count:629 |
| 245-629 |
156 | token = QCss::RBRACE; executed (the execution status of this line is deduced): token = QCss::RBRACE; | - |
157 | goto found; executed: goto found; Execution Count:245 | 245 |
158 | } | - |
159 | if (ch.unicode() == 126) evaluated: ch.unicode() == 126 yes Evaluation Count:2 | yes Evaluation Count:627 |
| 2-627 |
160 | goto state_28; executed: goto state_28; Execution Count:2 | 2 |
161 | goto out; executed: goto out; Execution Count:627 | 627 |
162 | state_1: | - |
163 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
164 | token = QCss::S; executed (the execution status of this line is deduced): token = QCss::S; | - |
165 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
166 | if (ch.unicode() >= 9 && ch.unicode() <= 10) evaluated: ch.unicode() >= 9 yes Evaluation Count:896 | yes Evaluation Count:392 |
partially evaluated: ch.unicode() <= 10 no Evaluation Count:0 | yes Evaluation Count:896 |
| 0-896 |
167 | goto state_29; never executed: goto state_29; | 0 |
168 | if (ch.unicode() >= 12 && ch.unicode() <= 13) evaluated: ch.unicode() >= 12 yes Evaluation Count:896 | yes Evaluation Count:392 |
partially evaluated: ch.unicode() <= 13 no Evaluation Count:0 | yes Evaluation Count:896 |
| 0-896 |
169 | goto state_29; never executed: goto state_29; | 0 |
170 | if (ch.unicode() == 32) evaluated: ch.unicode() == 32 yes Evaluation Count:2 | yes Evaluation Count:1286 |
| 2-1286 |
171 | goto state_29; executed: goto state_29; Execution Count:2 | 2 |
172 | if (ch.unicode() == 43) partially evaluated: ch.unicode() == 43 no Evaluation Count:0 | yes Evaluation Count:1286 |
| 0-1286 |
173 | goto state_9; never executed: goto state_9; | 0 |
174 | if (ch.unicode() == 44) partially evaluated: ch.unicode() == 44 no Evaluation Count:0 | yes Evaluation Count:1286 |
| 0-1286 |
175 | goto state_10; never executed: goto state_10; | 0 |
176 | if (ch.unicode() == 62) partially evaluated: ch.unicode() == 62 no Evaluation Count:0 | yes Evaluation Count:1286 |
| 0-1286 |
177 | goto state_19; never executed: goto state_19; | 0 |
178 | if (ch.unicode() == 123) evaluated: ch.unicode() == 123 yes Evaluation Count:245 | yes Evaluation Count:1041 |
| 245-1041 |
179 | goto state_25; executed: goto state_25; Execution Count:245 | 245 |
180 | goto out; executed: goto out; Execution Count:1041 | 1041 |
181 | state_3: | - |
182 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
183 | token = QCss::INVALID; executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
184 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
185 | if (ch.unicode() >= 1 && ch.unicode() <= 9) partially evaluated: ch.unicode() >= 1 yes Evaluation Count:12 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 9 no Evaluation Count:0 | yes Evaluation Count:12 |
| 0-12 |
186 | goto state_30; never executed: goto state_30; | 0 |
187 | if (ch.unicode() == 11) partially evaluated: ch.unicode() == 11 no Evaluation Count:0 | yes Evaluation Count:12 |
| 0-12 |
188 | goto state_30; never executed: goto state_30; | 0 |
189 | if (ch.unicode() >= 14 && ch.unicode() <= 33) partially evaluated: ch.unicode() >= 14 yes Evaluation Count:12 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 33 no Evaluation Count:0 | yes Evaluation Count:12 |
| 0-12 |
190 | goto state_30; never executed: goto state_30; | 0 |
191 | if (ch.unicode() == 34) partially evaluated: ch.unicode() == 34 no Evaluation Count:0 | yes Evaluation Count:12 |
| 0-12 |
192 | goto state_31; never executed: goto state_31; | 0 |
193 | if (ch.unicode() >= 35 && ch.unicode() <= 91) partially evaluated: ch.unicode() >= 35 yes Evaluation Count:12 | no Evaluation Count:0 |
evaluated: ch.unicode() <= 91 yes Evaluation Count:5 | yes Evaluation Count:7 |
| 0-12 |
194 | goto state_30; executed: goto state_30; Execution Count:5 | 5 |
195 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:7 |
| 0-7 |
196 | goto state_32; never executed: goto state_32; | 0 |
197 | if (ch.unicode() >= 93 && ch.unicode() <= 96) partially evaluated: ch.unicode() >= 93 yes Evaluation Count:7 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 96 no Evaluation Count:0 | yes Evaluation Count:7 |
| 0-7 |
198 | goto state_30; never executed: goto state_30; | 0 |
199 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) partially evaluated: ch.unicode() >= 'a' yes Evaluation Count:7 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:7 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0-7 |
200 | goto state_30; executed: goto state_30; Execution Count:7 | 7 |
201 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
202 | goto state_30; never executed: goto state_30; | 0 |
203 | goto out; never executed: goto out; | 0 |
204 | state_4: | - |
205 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
206 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:17 |
| 0-17 |
207 | goto state_33; never executed: goto state_33; | 0 |
208 | if (ch.unicode() >= 48 && ch.unicode() <= 57) partially evaluated: ch.unicode() >= 48 yes Evaluation Count:17 | no Evaluation Count:0 |
evaluated: ch.unicode() <= 57 yes Evaluation Count:2 | yes Evaluation Count:15 |
| 0-17 |
209 | goto state_33; executed: goto state_33; Execution Count:2 | 2 |
210 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:15 |
| 0-15 |
211 | goto state_34; never executed: goto state_34; | 0 |
212 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:15 |
| 0-15 |
213 | goto state_33; never executed: goto state_33; | 0 |
214 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) evaluated: ch.unicode() >= 'a' yes Evaluation Count:5 | yes Evaluation Count:10 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:5 | no Evaluation Count:0 |
partially evaluated: ch.unicode() >= 'A' yes Evaluation Count:10 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'Z' yes Evaluation Count:10 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 256 | 0-10 |
215 | goto state_33; executed: goto state_33; Execution Count:15 | 15 |
216 | goto out; never executed: goto out; | 0 |
217 | state_5: | - |
218 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
219 | token = QCss::INVALID; executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
220 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
221 | if (ch.unicode() >= 1 && ch.unicode() <= 9) partially evaluated: ch.unicode() >= 1 yes Evaluation Count:12 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 9 no Evaluation Count:0 | yes Evaluation Count:12 |
| 0-12 |
222 | goto state_35; never executed: goto state_35; | 0 |
223 | if (ch.unicode() == 11) partially evaluated: ch.unicode() == 11 no Evaluation Count:0 | yes Evaluation Count:12 |
| 0-12 |
224 | goto state_35; never executed: goto state_35; | 0 |
225 | if (ch.unicode() >= 14 && ch.unicode() <= 38) partially evaluated: ch.unicode() >= 14 yes Evaluation Count:12 | no Evaluation Count:0 |
evaluated: ch.unicode() <= 38 yes Evaluation Count:2 | yes Evaluation Count:10 |
| 0-12 |
226 | goto state_35; executed: goto state_35; Execution Count:2 | 2 |
227 | if (ch.unicode() == 39) partially evaluated: ch.unicode() == 39 no Evaluation Count:0 | yes Evaluation Count:10 |
| 0-10 |
228 | goto state_36; never executed: goto state_36; | 0 |
229 | if (ch.unicode() >= 40 && ch.unicode() <= 91) partially evaluated: ch.unicode() >= 40 yes Evaluation Count:10 | no Evaluation Count:0 |
evaluated: ch.unicode() <= 91 yes Evaluation Count:8 | yes Evaluation Count:2 |
| 0-10 |
230 | goto state_35; executed: goto state_35; Execution Count:8 | 8 |
231 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:2 |
| 0-2 |
232 | goto state_37; never executed: goto state_37; | 0 |
233 | if (ch.unicode() >= 93 && ch.unicode() <= 96) partially evaluated: ch.unicode() >= 93 yes Evaluation Count:2 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 96 no Evaluation Count:0 | yes Evaluation Count:2 |
| 0-2 |
234 | goto state_35; never executed: goto state_35; | 0 |
235 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) partially evaluated: ch.unicode() >= 'a' yes Evaluation Count:2 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:2 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0-2 |
236 | goto state_35; executed: goto state_35; Execution Count:2 | 2 |
237 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
238 | goto state_35; never executed: goto state_35; | 0 |
239 | goto out; never executed: goto out; | 0 |
240 | state_9: | - |
241 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
242 | token = QCss::PLUS; never executed (the execution status of this line is deduced): token = QCss::PLUS; | - |
243 | goto out; never executed: goto out; | 0 |
244 | state_10: | - |
245 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
246 | token = QCss::COMMA; executed (the execution status of this line is deduced): token = QCss::COMMA; | - |
247 | goto out; executed: goto out; Execution Count:15 | 15 |
248 | state_11: | - |
249 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
250 | token = QCss::MINUS; executed (the execution status of this line is deduced): token = QCss::MINUS; | - |
251 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
252 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:84 |
| 0-84 |
253 | goto state_38; never executed: goto state_38; | 0 |
254 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:84 |
| 0-84 |
255 | goto state_22; never executed: goto state_22; | 0 |
256 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:84 |
| 0-84 |
257 | goto state_24; never executed: goto state_24; | 0 |
258 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) partially evaluated: ch.unicode() >= 'a' yes Evaluation Count:84 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:84 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0-84 |
259 | goto state_24; executed: goto state_24; Execution Count:84 | 84 |
260 | goto out; never executed: goto out; | 0 |
261 | state_12: | - |
262 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
263 | token = QCss::DOT; executed (the execution status of this line is deduced): token = QCss::DOT; | - |
264 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
265 | if (ch.unicode() >= 48 && ch.unicode() <= 57) evaluated: ch.unicode() >= 48 yes Evaluation Count:3 | yes Evaluation Count:4 |
partially evaluated: ch.unicode() <= 57 no Evaluation Count:0 | yes Evaluation Count:3 |
| 0-4 |
266 | goto state_39; never executed: goto state_39; | 0 |
267 | goto out; executed: goto out; Execution Count:7 | 7 |
268 | state_13: | - |
269 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
270 | token = QCss::SLASH; executed (the execution status of this line is deduced): token = QCss::SLASH; | - |
271 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
272 | if (ch.unicode() == 42) { partially evaluated: ch.unicode() == 42 yes Evaluation Count:1 | no Evaluation Count:0 |
| 0-1 |
273 | token = handleCommentStart(); executed (the execution status of this line is deduced): token = handleCommentStart(); | - |
274 | goto found; executed: goto found; Execution Count:1 | 1 |
275 | } | - |
276 | goto out; never executed: goto out; | 0 |
277 | state_14: | - |
278 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
279 | token = QCss::NUMBER; executed (the execution status of this line is deduced): token = QCss::NUMBER; | - |
280 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
281 | if (ch.unicode() == 37) partially evaluated: ch.unicode() == 37 no Evaluation Count:0 | yes Evaluation Count:333 |
| 0-333 |
282 | goto state_41; never executed: goto state_41; | 0 |
283 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:333 |
| 0-333 |
284 | goto state_42; never executed: goto state_42; | 0 |
285 | if (ch.unicode() == 46) evaluated: ch.unicode() == 46 yes Evaluation Count:3 | yes Evaluation Count:330 |
| 3-330 |
286 | goto state_43; executed: goto state_43; Execution Count:3 | 3 |
287 | if (ch.unicode() >= 48 && ch.unicode() <= 57) evaluated: ch.unicode() >= 48 yes Evaluation Count:326 | yes Evaluation Count:4 |
evaluated: ch.unicode() <= 57 yes Evaluation Count:57 | yes Evaluation Count:269 |
| 4-326 |
288 | goto state_44; executed: goto state_44; Execution Count:57 | 57 |
289 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:273 |
| 0-273 |
290 | goto state_45; never executed: goto state_45; | 0 |
291 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:273 |
| 0-273 |
292 | goto state_46; never executed: goto state_46; | 0 |
293 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) evaluated: ch.unicode() >= 'a' yes Evaluation Count:225 | yes Evaluation Count:48 |
evaluated: ch.unicode() <= 'z' yes Evaluation Count:222 | yes Evaluation Count:3 |
evaluated: ch.unicode() >= 'A' yes Evaluation Count:3 | yes Evaluation Count:48 |
partially evaluated: ch.unicode() <= 'Z' no Evaluation Count:0 | yes Evaluation Count:3 |
partially evaluated: ch.unicode() >= 256 no Evaluation Count:0 | yes Evaluation Count:51 |
| 0-225 |
294 | goto state_46; executed: goto state_46; Execution Count:222 | 222 |
295 | goto out; executed: goto out; Execution Count:51 | 51 |
296 | state_17: | - |
297 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
298 | if (ch.unicode() == 33) never evaluated: ch.unicode() == 33 | 0 |
299 | goto state_47; never executed: goto state_47; | 0 |
300 | goto out; never executed: goto out; | 0 |
301 | state_19: | - |
302 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
303 | token = QCss::GREATER; never executed (the execution status of this line is deduced): token = QCss::GREATER; | - |
304 | goto out; never executed: goto out; | 0 |
305 | state_20: | - |
306 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
307 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:8 |
| 0-8 |
308 | goto state_48; never executed: goto state_48; | 0 |
309 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:8 |
| 0-8 |
310 | goto state_49; never executed: goto state_49; | 0 |
311 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:8 |
| 0-8 |
312 | goto state_50; never executed: goto state_50; | 0 |
313 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) partially evaluated: ch.unicode() >= 'a' yes Evaluation Count:8 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:8 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0-8 |
314 | goto state_50; executed: goto state_50; Execution Count:8 | 8 |
315 | goto out; never executed: goto out; | 0 |
316 | state_22: | - |
317 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
318 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
319 | goto state_51; never executed: goto state_51; | 0 |
320 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
321 | goto state_51; never executed: goto state_51; | 0 |
322 | if (ch.unicode() >= 14 && ch.unicode() <= 47) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 47 | 0 |
323 | goto state_51; never executed: goto state_51; | 0 |
324 | if (ch.unicode() >= 58 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 58 never evaluated: ch.unicode() <= 96 | 0 |
325 | goto state_51; never executed: goto state_51; | 0 |
326 | if (ch.unicode() >= 103) never evaluated: ch.unicode() >= 103 | 0 |
327 | goto state_51; never executed: goto state_51; | 0 |
328 | goto out; never executed: goto out; | 0 |
329 | state_24: | - |
330 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
331 | token = QCss::IDENT; executed (the execution status of this line is deduced): token = QCss::IDENT; | - |
332 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
333 | if (ch.unicode() == 40) partially evaluated: ch.unicode() == 40 no Evaluation Count:0 | yes Evaluation Count:823 |
| 0-823 |
334 | goto state_52; never executed: goto state_52; | 0 |
335 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:823 |
| 0-823 |
336 | goto state_53; never executed: goto state_53; | 0 |
337 | if (ch.unicode() >= 48 && ch.unicode() <= 57) evaluated: ch.unicode() >= 48 yes Evaluation Count:788 | yes Evaluation Count:35 |
partially evaluated: ch.unicode() <= 57 no Evaluation Count:0 | yes Evaluation Count:788 |
| 0-788 |
338 | goto state_53; never executed: goto state_53; | 0 |
339 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:823 |
| 0-823 |
340 | goto state_54; never executed: goto state_54; | 0 |
341 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:823 |
| 0-823 |
342 | goto state_53; never executed: goto state_53; | 0 |
343 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) evaluated: ch.unicode() >= 'a' yes Evaluation Count:765 | yes Evaluation Count:58 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:765 | no Evaluation Count:0 |
evaluated: ch.unicode() >= 'A' yes Evaluation Count:22 | yes Evaluation Count:36 |
evaluated: ch.unicode() <= 'Z' yes Evaluation Count:13 | yes Evaluation Count:9 |
partially evaluated: ch.unicode() >= 256 no Evaluation Count:0 | yes Evaluation Count:45 |
| 0-765 |
344 | goto state_53; executed: goto state_53; Execution Count:778 | 778 |
345 | goto out; executed: goto out; Execution Count:45 | 45 |
346 | state_25: | - |
347 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
348 | token = QCss::LBRACE; executed (the execution status of this line is deduced): token = QCss::LBRACE; | - |
349 | goto out; executed: goto out; Execution Count:245 | 245 |
350 | state_26: | - |
351 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
352 | token = QCss::OR; executed (the execution status of this line is deduced): token = QCss::OR; | - |
353 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
354 | if (ch.unicode() == 61) { partially evaluated: ch.unicode() == 61 yes Evaluation Count:2 | no Evaluation Count:0 |
| 0-2 |
355 | token = QCss::DASHMATCH; executed (the execution status of this line is deduced): token = QCss::DASHMATCH; | - |
356 | goto found; executed: goto found; Execution Count:2 | 2 |
357 | } | - |
358 | goto out; never executed: goto out; | 0 |
359 | state_28: | - |
360 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
361 | if (ch.unicode() == 61) { partially evaluated: ch.unicode() == 61 yes Evaluation Count:2 | no Evaluation Count:0 |
| 0-2 |
362 | token = QCss::INCLUDES; executed (the execution status of this line is deduced): token = QCss::INCLUDES; | - |
363 | goto found; executed: goto found; Execution Count:2 | 2 |
364 | } | - |
365 | goto out; never executed: goto out; | 0 |
366 | state_29: | - |
367 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
368 | token = QCss::S; executed (the execution status of this line is deduced): token = QCss::S; | - |
369 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
370 | if (ch.unicode() >= 9 && ch.unicode() <= 10) partially evaluated: ch.unicode() >= 9 yes Evaluation Count:4 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 10 no Evaluation Count:0 | yes Evaluation Count:4 |
| 0-4 |
371 | goto state_29; never executed: goto state_29; | 0 |
372 | if (ch.unicode() >= 12 && ch.unicode() <= 13) partially evaluated: ch.unicode() >= 12 yes Evaluation Count:4 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 13 no Evaluation Count:0 | yes Evaluation Count:4 |
| 0-4 |
373 | goto state_29; never executed: goto state_29; | 0 |
374 | if (ch.unicode() == 32) evaluated: ch.unicode() == 32 yes Evaluation Count:2 | yes Evaluation Count:2 |
| 2 |
375 | goto state_29; executed: goto state_29; Execution Count:2 | 2 |
376 | if (ch.unicode() == 43) partially evaluated: ch.unicode() == 43 no Evaluation Count:0 | yes Evaluation Count:2 |
| 0-2 |
377 | goto state_9; never executed: goto state_9; | 0 |
378 | if (ch.unicode() == 44) partially evaluated: ch.unicode() == 44 no Evaluation Count:0 | yes Evaluation Count:2 |
| 0-2 |
379 | goto state_10; never executed: goto state_10; | 0 |
380 | if (ch.unicode() == 62) partially evaluated: ch.unicode() == 62 no Evaluation Count:0 | yes Evaluation Count:2 |
| 0-2 |
381 | goto state_19; never executed: goto state_19; | 0 |
382 | if (ch.unicode() == 123) partially evaluated: ch.unicode() == 123 no Evaluation Count:0 | yes Evaluation Count:2 |
| 0-2 |
383 | goto state_25; never executed: goto state_25; | 0 |
384 | goto out; executed: goto out; Execution Count:2 | 2 |
385 | state_30: | - |
386 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
387 | token = QCss::INVALID; executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
388 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
389 | if (ch.unicode() >= 1 && ch.unicode() <= 9) partially evaluated: ch.unicode() >= 1 yes Evaluation Count:91 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 9 no Evaluation Count:0 | yes Evaluation Count:91 |
| 0-91 |
390 | goto state_30; never executed: goto state_30; | 0 |
391 | if (ch.unicode() == 11) partially evaluated: ch.unicode() == 11 no Evaluation Count:0 | yes Evaluation Count:91 |
| 0-91 |
392 | goto state_30; never executed: goto state_30; | 0 |
393 | if (ch.unicode() >= 14 && ch.unicode() <= 33) partially evaluated: ch.unicode() >= 14 yes Evaluation Count:91 | no Evaluation Count:0 |
evaluated: ch.unicode() <= 33 yes Evaluation Count:6 | yes Evaluation Count:85 |
| 0-91 |
394 | goto state_30; executed: goto state_30; Execution Count:6 | 6 |
395 | if (ch.unicode() == 34) evaluated: ch.unicode() == 34 yes Evaluation Count:12 | yes Evaluation Count:73 |
| 12-73 |
396 | goto state_31; executed: goto state_31; Execution Count:12 | 12 |
397 | if (ch.unicode() >= 35 && ch.unicode() <= 91) partially evaluated: ch.unicode() >= 35 yes Evaluation Count:73 | no Evaluation Count:0 |
evaluated: ch.unicode() <= 91 yes Evaluation Count:11 | yes Evaluation Count:62 |
| 0-73 |
398 | goto state_30; executed: goto state_30; Execution Count:11 | 11 |
399 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:62 |
| 0-62 |
400 | goto state_32; never executed: goto state_32; | 0 |
401 | if (ch.unicode() >= 93 && ch.unicode() <= 96) partially evaluated: ch.unicode() >= 93 yes Evaluation Count:62 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 96 no Evaluation Count:0 | yes Evaluation Count:62 |
| 0-62 |
402 | goto state_30; never executed: goto state_30; | 0 |
403 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) partially evaluated: ch.unicode() >= 'a' yes Evaluation Count:62 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:62 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0-62 |
404 | goto state_30; executed: goto state_30; Execution Count:62 | 62 |
405 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
406 | goto state_30; never executed: goto state_30; | 0 |
407 | goto out; never executed: goto out; | 0 |
408 | state_31: | - |
409 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
410 | token = QCss::STRING; executed (the execution status of this line is deduced): token = QCss::STRING; | - |
411 | goto out; executed: goto out; Execution Count:12 | 12 |
412 | state_32: | - |
413 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
414 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
415 | goto state_57; never executed: goto state_57; | 0 |
416 | if (ch.unicode() == 10) never evaluated: ch.unicode() == 10 | 0 |
417 | goto state_58; never executed: goto state_58; | 0 |
418 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
419 | goto state_57; never executed: goto state_57; | 0 |
420 | if (ch.unicode() == 12) never evaluated: ch.unicode() == 12 | 0 |
421 | goto state_59; never executed: goto state_59; | 0 |
422 | if (ch.unicode() == 13) never evaluated: ch.unicode() == 13 | 0 |
423 | goto state_60; never executed: goto state_60; | 0 |
424 | if (ch.unicode() >= 14 && ch.unicode() <= 47) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 47 | 0 |
425 | goto state_57; never executed: goto state_57; | 0 |
426 | if (ch.unicode() >= 58 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 58 never evaluated: ch.unicode() <= 96 | 0 |
427 | goto state_57; never executed: goto state_57; | 0 |
428 | if (ch.unicode() >= 103) never evaluated: ch.unicode() >= 103 | 0 |
429 | goto state_57; never executed: goto state_57; | 0 |
430 | goto out; never executed: goto out; | 0 |
431 | state_33: | - |
432 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
433 | token = QCss::HASH; executed (the execution status of this line is deduced): token = QCss::HASH; | - |
434 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
435 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:17 |
| 0-17 |
436 | goto state_61; never executed: goto state_61; | 0 |
437 | if (ch.unicode() >= 48 && ch.unicode() <= 57) partially evaluated: ch.unicode() >= 48 yes Evaluation Count:17 | no Evaluation Count:0 |
evaluated: ch.unicode() <= 57 yes Evaluation Count:3 | yes Evaluation Count:14 |
| 0-17 |
438 | goto state_61; executed: goto state_61; Execution Count:3 | 3 |
439 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:14 |
| 0-14 |
440 | goto state_62; never executed: goto state_62; | 0 |
441 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:14 |
| 0-14 |
442 | goto state_61; never executed: goto state_61; | 0 |
443 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) evaluated: ch.unicode() >= 'a' yes Evaluation Count:4 | yes Evaluation Count:10 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:4 | no Evaluation Count:0 |
partially evaluated: ch.unicode() >= 'A' yes Evaluation Count:10 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'Z' yes Evaluation Count:10 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 256 | 0-10 |
444 | goto state_61; executed: goto state_61; Execution Count:14 | 14 |
445 | goto out; never executed: goto out; | 0 |
446 | state_34: | - |
447 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
448 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
449 | goto state_63; never executed: goto state_63; | 0 |
450 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
451 | goto state_63; never executed: goto state_63; | 0 |
452 | if (ch.unicode() >= 14 && ch.unicode() <= 47) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 47 | 0 |
453 | goto state_63; never executed: goto state_63; | 0 |
454 | if (ch.unicode() >= 58 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 58 never evaluated: ch.unicode() <= 96 | 0 |
455 | goto state_63; never executed: goto state_63; | 0 |
456 | if (ch.unicode() >= 103) never evaluated: ch.unicode() >= 103 | 0 |
457 | goto state_63; never executed: goto state_63; | 0 |
458 | goto out; never executed: goto out; | 0 |
459 | state_35: | - |
460 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
461 | token = QCss::INVALID; executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
462 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
463 | if (ch.unicode() >= 1 && ch.unicode() <= 9) partially evaluated: ch.unicode() >= 1 yes Evaluation Count:93 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 9 no Evaluation Count:0 | yes Evaluation Count:93 |
| 0-93 |
464 | goto state_35; never executed: goto state_35; | 0 |
465 | if (ch.unicode() == 11) partially evaluated: ch.unicode() == 11 no Evaluation Count:0 | yes Evaluation Count:93 |
| 0-93 |
466 | goto state_35; never executed: goto state_35; | 0 |
467 | if (ch.unicode() >= 14 && ch.unicode() <= 38) partially evaluated: ch.unicode() >= 14 yes Evaluation Count:93 | no Evaluation Count:0 |
evaluated: ch.unicode() <= 38 yes Evaluation Count:8 | yes Evaluation Count:85 |
| 0-93 |
468 | goto state_35; executed: goto state_35; Execution Count:8 | 8 |
469 | if (ch.unicode() == 39) evaluated: ch.unicode() == 39 yes Evaluation Count:12 | yes Evaluation Count:73 |
| 12-73 |
470 | goto state_36; executed: goto state_36; Execution Count:12 | 12 |
471 | if (ch.unicode() >= 40 && ch.unicode() <= 91) partially evaluated: ch.unicode() >= 40 yes Evaluation Count:73 | no Evaluation Count:0 |
evaluated: ch.unicode() <= 91 yes Evaluation Count:10 | yes Evaluation Count:63 |
| 0-73 |
472 | goto state_35; executed: goto state_35; Execution Count:10 | 10 |
473 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:63 |
| 0-63 |
474 | goto state_37; never executed: goto state_37; | 0 |
475 | if (ch.unicode() >= 93 && ch.unicode() <= 96) partially evaluated: ch.unicode() >= 93 yes Evaluation Count:63 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 96 no Evaluation Count:0 | yes Evaluation Count:63 |
| 0-63 |
476 | goto state_35; never executed: goto state_35; | 0 |
477 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) partially evaluated: ch.unicode() >= 'a' yes Evaluation Count:63 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:63 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0-63 |
478 | goto state_35; executed: goto state_35; Execution Count:63 | 63 |
479 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
480 | goto state_35; never executed: goto state_35; | 0 |
481 | goto out; never executed: goto out; | 0 |
482 | state_36: | - |
483 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
484 | token = QCss::STRING; executed (the execution status of this line is deduced): token = QCss::STRING; | - |
485 | goto out; executed: goto out; Execution Count:12 | 12 |
486 | state_37: | - |
487 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
488 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
489 | goto state_64; never executed: goto state_64; | 0 |
490 | if (ch.unicode() == 10) never evaluated: ch.unicode() == 10 | 0 |
491 | goto state_65; never executed: goto state_65; | 0 |
492 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
493 | goto state_64; never executed: goto state_64; | 0 |
494 | if (ch.unicode() == 12) never evaluated: ch.unicode() == 12 | 0 |
495 | goto state_66; never executed: goto state_66; | 0 |
496 | if (ch.unicode() == 13) never evaluated: ch.unicode() == 13 | 0 |
497 | goto state_67; never executed: goto state_67; | 0 |
498 | if (ch.unicode() >= 14 && ch.unicode() <= 47) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 47 | 0 |
499 | goto state_64; never executed: goto state_64; | 0 |
500 | if (ch.unicode() >= 58 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 58 never evaluated: ch.unicode() <= 96 | 0 |
501 | goto state_64; never executed: goto state_64; | 0 |
502 | if (ch.unicode() >= 103) never evaluated: ch.unicode() >= 103 | 0 |
503 | goto state_64; never executed: goto state_64; | 0 |
504 | goto out; never executed: goto out; | 0 |
505 | state_38: | - |
506 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
507 | if (ch.unicode() == 62) { never evaluated: ch.unicode() == 62 | 0 |
508 | token = QCss::CDC; never executed (the execution status of this line is deduced): token = QCss::CDC; | - |
509 | goto found; never executed: goto found; | 0 |
510 | } | - |
511 | goto out; never executed: goto out; | 0 |
512 | state_39: | - |
513 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
514 | token = QCss::NUMBER; executed (the execution status of this line is deduced): token = QCss::NUMBER; | - |
515 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
516 | if (ch.unicode() == 37) partially evaluated: ch.unicode() == 37 no Evaluation Count:0 | yes Evaluation Count:8 |
| 0-8 |
517 | goto state_41; never executed: goto state_41; | 0 |
518 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:8 |
| 0-8 |
519 | goto state_42; never executed: goto state_42; | 0 |
520 | if (ch.unicode() >= 48 && ch.unicode() <= 57) partially evaluated: ch.unicode() >= 48 yes Evaluation Count:8 | no Evaluation Count:0 |
evaluated: ch.unicode() <= 57 yes Evaluation Count:5 | yes Evaluation Count:3 |
| 0-8 |
521 | goto state_69; executed: goto state_69; Execution Count:5 | 5 |
522 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:3 |
| 0-3 |
523 | goto state_45; never executed: goto state_45; | 0 |
524 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:3 |
| 0-3 |
525 | goto state_46; never executed: goto state_46; | 0 |
526 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) partially evaluated: ch.unicode() >= 'a' yes Evaluation Count:3 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:3 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0-3 |
527 | goto state_46; executed: goto state_46; Execution Count:3 | 3 |
528 | goto out; never executed: goto out; | 0 |
529 | state_41: | - |
530 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
531 | token = QCss::PERCENTAGE; never executed (the execution status of this line is deduced): token = QCss::PERCENTAGE; | - |
532 | goto out; never executed: goto out; | 0 |
533 | state_42: | - |
534 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
535 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
536 | goto state_45; never executed: goto state_45; | 0 |
537 | if (ch.unicode() == 95) never evaluated: ch.unicode() == 95 | 0 |
538 | goto state_46; never executed: goto state_46; | 0 |
539 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
540 | goto state_46; never executed: goto state_46; | 0 |
541 | goto out; never executed: goto out; | 0 |
542 | state_43: | - |
543 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
544 | if (ch.unicode() >= 48 && ch.unicode() <= 57) partially evaluated: ch.unicode() >= 48 yes Evaluation Count:8 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 57 yes Evaluation Count:8 | no Evaluation Count:0 |
| 0-8 |
545 | goto state_39; executed: goto state_39; Execution Count:8 | 8 |
546 | goto out; never executed: goto out; | 0 |
547 | state_44: | - |
548 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
549 | token = QCss::NUMBER; executed (the execution status of this line is deduced): token = QCss::NUMBER; | - |
550 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
551 | if (ch.unicode() == 37) partially evaluated: ch.unicode() == 37 no Evaluation Count:0 | yes Evaluation Count:76 |
| 0-76 |
552 | goto state_41; never executed: goto state_41; | 0 |
553 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:76 |
| 0-76 |
554 | goto state_42; never executed: goto state_42; | 0 |
555 | if (ch.unicode() == 46) evaluated: ch.unicode() == 46 yes Evaluation Count:5 | yes Evaluation Count:71 |
| 5-71 |
556 | goto state_43; executed: goto state_43; Execution Count:5 | 5 |
557 | if (ch.unicode() >= 48 && ch.unicode() <= 57) evaluated: ch.unicode() >= 48 yes Evaluation Count:69 | yes Evaluation Count:2 |
evaluated: ch.unicode() <= 57 yes Evaluation Count:19 | yes Evaluation Count:50 |
| 2-69 |
558 | goto state_44; executed: goto state_44; Execution Count:19 | 19 |
559 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:52 |
| 0-52 |
560 | goto state_45; never executed: goto state_45; | 0 |
561 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:52 |
| 0-52 |
562 | goto state_46; never executed: goto state_46; | 0 |
563 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) evaluated: ch.unicode() >= 'a' yes Evaluation Count:41 | yes Evaluation Count:11 |
evaluated: ch.unicode() <= 'z' yes Evaluation Count:38 | yes Evaluation Count:3 |
evaluated: ch.unicode() >= 'A' yes Evaluation Count:3 | yes Evaluation Count:11 |
partially evaluated: ch.unicode() <= 'Z' no Evaluation Count:0 | yes Evaluation Count:3 |
partially evaluated: ch.unicode() >= 256 no Evaluation Count:0 | yes Evaluation Count:14 |
| 0-41 |
564 | goto state_46; executed: goto state_46; Execution Count:38 | 38 |
565 | goto out; executed: goto out; Execution Count:14 | 14 |
566 | state_45: | - |
567 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
568 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
569 | goto state_70; never executed: goto state_70; | 0 |
570 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
571 | goto state_70; never executed: goto state_70; | 0 |
572 | if (ch.unicode() >= 14 && ch.unicode() <= 47) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 47 | 0 |
573 | goto state_70; never executed: goto state_70; | 0 |
574 | if (ch.unicode() >= 58 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 58 never evaluated: ch.unicode() <= 96 | 0 |
575 | goto state_70; never executed: goto state_70; | 0 |
576 | if (ch.unicode() >= 103) never evaluated: ch.unicode() >= 103 | 0 |
577 | goto state_70; never executed: goto state_70; | 0 |
578 | goto out; never executed: goto out; | 0 |
579 | state_46: | - |
580 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
581 | token = QCss::LENGTH; executed (the execution status of this line is deduced): token = QCss::LENGTH; | - |
582 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
583 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:268 |
| 0-268 |
584 | goto state_71; never executed: goto state_71; | 0 |
585 | if (ch.unicode() >= 48 && ch.unicode() <= 57) partially evaluated: ch.unicode() >= 48 yes Evaluation Count:268 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 57 no Evaluation Count:0 | yes Evaluation Count:268 |
| 0-268 |
586 | goto state_71; never executed: goto state_71; | 0 |
587 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:268 |
| 0-268 |
588 | goto state_72; never executed: goto state_72; | 0 |
589 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:268 |
| 0-268 |
590 | goto state_71; never executed: goto state_71; | 0 |
591 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) partially evaluated: ch.unicode() >= 'a' yes Evaluation Count:268 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:268 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0-268 |
592 | goto state_71; executed: goto state_71; Execution Count:268 | 268 |
593 | goto out; never executed: goto out; | 0 |
594 | state_47: | - |
595 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
596 | if (ch.unicode() == 45) never evaluated: ch.unicode() == 45 | 0 |
597 | goto state_73; never executed: goto state_73; | 0 |
598 | goto out; never executed: goto out; | 0 |
599 | state_48: | - |
600 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
601 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
602 | goto state_49; never executed: goto state_49; | 0 |
603 | if (ch.unicode() == 95) never evaluated: ch.unicode() == 95 | 0 |
604 | goto state_50; never executed: goto state_50; | 0 |
605 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
606 | goto state_50; never executed: goto state_50; | 0 |
607 | goto out; never executed: goto out; | 0 |
608 | state_49: | - |
609 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
610 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
611 | goto state_74; never executed: goto state_74; | 0 |
612 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
613 | goto state_74; never executed: goto state_74; | 0 |
614 | if (ch.unicode() >= 14 && ch.unicode() <= 47) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 47 | 0 |
615 | goto state_74; never executed: goto state_74; | 0 |
616 | if (ch.unicode() >= 58 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 58 never evaluated: ch.unicode() <= 96 | 0 |
617 | goto state_74; never executed: goto state_74; | 0 |
618 | if (ch.unicode() >= 103) never evaluated: ch.unicode() >= 103 | 0 |
619 | goto state_74; never executed: goto state_74; | 0 |
620 | goto out; never executed: goto out; | 0 |
621 | state_50: | - |
622 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
623 | token = QCss::ATKEYWORD_SYM; executed (the execution status of this line is deduced): token = QCss::ATKEYWORD_SYM; | - |
624 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
625 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:8 |
| 0-8 |
626 | goto state_75; never executed: goto state_75; | 0 |
627 | if (ch.unicode() >= 48 && ch.unicode() <= 57) partially evaluated: ch.unicode() >= 48 yes Evaluation Count:8 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 57 no Evaluation Count:0 | yes Evaluation Count:8 |
| 0-8 |
628 | goto state_75; never executed: goto state_75; | 0 |
629 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:8 |
| 0-8 |
630 | goto state_76; never executed: goto state_76; | 0 |
631 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:8 |
| 0-8 |
632 | goto state_75; never executed: goto state_75; | 0 |
633 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) partially evaluated: ch.unicode() >= 'a' yes Evaluation Count:8 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:8 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0-8 |
634 | goto state_75; executed: goto state_75; Execution Count:8 | 8 |
635 | goto out; never executed: goto out; | 0 |
636 | state_51: | - |
637 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
638 | token = QCss::IDENT; never executed (the execution status of this line is deduced): token = QCss::IDENT; | - |
639 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
640 | if (ch.unicode() == 40) never evaluated: ch.unicode() == 40 | 0 |
641 | goto state_52; never executed: goto state_52; | 0 |
642 | if (ch.unicode() == 45) never evaluated: ch.unicode() == 45 | 0 |
643 | goto state_53; never executed: goto state_53; | 0 |
644 | if (ch.unicode() >= 48 && ch.unicode() <= 57) never evaluated: ch.unicode() >= 48 never evaluated: ch.unicode() <= 57 | 0 |
645 | goto state_53; never executed: goto state_53; | 0 |
646 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
647 | goto state_54; never executed: goto state_54; | 0 |
648 | if (ch.unicode() == 95) never evaluated: ch.unicode() == 95 | 0 |
649 | goto state_53; never executed: goto state_53; | 0 |
650 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
651 | goto state_53; never executed: goto state_53; | 0 |
652 | goto out; never executed: goto out; | 0 |
653 | state_52: | - |
654 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
655 | token = QCss::FUNCTION; executed (the execution status of this line is deduced): token = QCss::FUNCTION; | - |
656 | goto out; executed: goto out; Execution Count:6 | 6 |
657 | state_53: | - |
658 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
659 | token = QCss::IDENT; executed (the execution status of this line is deduced): token = QCss::IDENT; | - |
660 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
661 | if (ch.unicode() == 40) evaluated: ch.unicode() == 40 yes Evaluation Count:6 | yes Evaluation Count:6972 |
| 6-6972 |
662 | goto state_52; executed: goto state_52; Execution Count:6 | 6 |
663 | if (ch.unicode() == 45) evaluated: ch.unicode() == 45 yes Evaluation Count:608 | yes Evaluation Count:6364 |
| 608-6364 |
664 | goto state_53; executed: goto state_53; Execution Count:608 | 608 |
665 | if (ch.unicode() >= 48 && ch.unicode() <= 57) evaluated: ch.unicode() >= 48 yes Evaluation Count:6284 | yes Evaluation Count:80 |
evaluated: ch.unicode() <= 57 yes Evaluation Count:1 | yes Evaluation Count:6283 |
| 1-6284 |
666 | goto state_53; executed: goto state_53; Execution Count:1 | 1 |
667 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:6363 |
| 0-6363 |
668 | goto state_54; never executed: goto state_54; | 0 |
669 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:6363 |
| 0-6363 |
670 | goto state_53; never executed: goto state_53; | 0 |
671 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) evaluated: ch.unicode() >= 'a' yes Evaluation Count:5638 | yes Evaluation Count:725 |
evaluated: ch.unicode() <= 'z' yes Evaluation Count:5588 | yes Evaluation Count:50 |
evaluated: ch.unicode() >= 'A' yes Evaluation Count:66 | yes Evaluation Count:709 |
evaluated: ch.unicode() <= 'Z' yes Evaluation Count:3 | yes Evaluation Count:63 |
partially evaluated: ch.unicode() >= 256 no Evaluation Count:0 | yes Evaluation Count:772 |
| 0-5638 |
672 | goto state_53; executed: goto state_53; Execution Count:5591 | 5591 |
673 | goto out; executed: goto out; Execution Count:772 | 772 |
674 | state_54: | - |
675 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
676 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
677 | goto state_77; never executed: goto state_77; | 0 |
678 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
679 | goto state_77; never executed: goto state_77; | 0 |
680 | if (ch.unicode() >= 14 && ch.unicode() <= 47) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 47 | 0 |
681 | goto state_77; never executed: goto state_77; | 0 |
682 | if (ch.unicode() >= 58 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 58 never evaluated: ch.unicode() <= 96 | 0 |
683 | goto state_77; never executed: goto state_77; | 0 |
684 | if (ch.unicode() >= 103) never evaluated: ch.unicode() >= 103 | 0 |
685 | goto state_77; never executed: goto state_77; | 0 |
686 | goto out; never executed: goto out; | 0 |
687 | state_57: | - |
688 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
689 | token = QCss::INVALID; never executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
690 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
691 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
692 | goto state_30; never executed: goto state_30; | 0 |
693 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
694 | goto state_30; never executed: goto state_30; | 0 |
695 | if (ch.unicode() >= 14 && ch.unicode() <= 33) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 33 | 0 |
696 | goto state_30; never executed: goto state_30; | 0 |
697 | if (ch.unicode() == 34) never evaluated: ch.unicode() == 34 | 0 |
698 | goto state_31; never executed: goto state_31; | 0 |
699 | if (ch.unicode() >= 35 && ch.unicode() <= 91) never evaluated: ch.unicode() >= 35 never evaluated: ch.unicode() <= 91 | 0 |
700 | goto state_30; never executed: goto state_30; | 0 |
701 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
702 | goto state_32; never executed: goto state_32; | 0 |
703 | if (ch.unicode() >= 93 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 93 never evaluated: ch.unicode() <= 96 | 0 |
704 | goto state_30; never executed: goto state_30; | 0 |
705 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
706 | goto state_30; never executed: goto state_30; | 0 |
707 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
708 | goto state_30; never executed: goto state_30; | 0 |
709 | goto out; never executed: goto out; | 0 |
710 | state_58: | - |
711 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
712 | token = QCss::INVALID; never executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
713 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
714 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
715 | goto state_30; never executed: goto state_30; | 0 |
716 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
717 | goto state_30; never executed: goto state_30; | 0 |
718 | if (ch.unicode() >= 14 && ch.unicode() <= 33) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 33 | 0 |
719 | goto state_30; never executed: goto state_30; | 0 |
720 | if (ch.unicode() == 34) never evaluated: ch.unicode() == 34 | 0 |
721 | goto state_31; never executed: goto state_31; | 0 |
722 | if (ch.unicode() >= 35 && ch.unicode() <= 91) never evaluated: ch.unicode() >= 35 never evaluated: ch.unicode() <= 91 | 0 |
723 | goto state_30; never executed: goto state_30; | 0 |
724 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
725 | goto state_32; never executed: goto state_32; | 0 |
726 | if (ch.unicode() >= 93 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 93 never evaluated: ch.unicode() <= 96 | 0 |
727 | goto state_30; never executed: goto state_30; | 0 |
728 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
729 | goto state_30; never executed: goto state_30; | 0 |
730 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
731 | goto state_30; never executed: goto state_30; | 0 |
732 | goto out; never executed: goto out; | 0 |
733 | state_59: | - |
734 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
735 | token = QCss::INVALID; never executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
736 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
737 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
738 | goto state_30; never executed: goto state_30; | 0 |
739 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
740 | goto state_30; never executed: goto state_30; | 0 |
741 | if (ch.unicode() >= 14 && ch.unicode() <= 33) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 33 | 0 |
742 | goto state_30; never executed: goto state_30; | 0 |
743 | if (ch.unicode() == 34) never evaluated: ch.unicode() == 34 | 0 |
744 | goto state_31; never executed: goto state_31; | 0 |
745 | if (ch.unicode() >= 35 && ch.unicode() <= 91) never evaluated: ch.unicode() >= 35 never evaluated: ch.unicode() <= 91 | 0 |
746 | goto state_30; never executed: goto state_30; | 0 |
747 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
748 | goto state_32; never executed: goto state_32; | 0 |
749 | if (ch.unicode() >= 93 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 93 never evaluated: ch.unicode() <= 96 | 0 |
750 | goto state_30; never executed: goto state_30; | 0 |
751 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
752 | goto state_30; never executed: goto state_30; | 0 |
753 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
754 | goto state_30; never executed: goto state_30; | 0 |
755 | goto out; never executed: goto out; | 0 |
756 | state_60: | - |
757 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
758 | token = QCss::INVALID; never executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
759 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
760 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
761 | goto state_30; never executed: goto state_30; | 0 |
762 | if (ch.unicode() == 10) never evaluated: ch.unicode() == 10 | 0 |
763 | goto state_78; never executed: goto state_78; | 0 |
764 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
765 | goto state_30; never executed: goto state_30; | 0 |
766 | if (ch.unicode() >= 14 && ch.unicode() <= 33) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 33 | 0 |
767 | goto state_30; never executed: goto state_30; | 0 |
768 | if (ch.unicode() == 34) never evaluated: ch.unicode() == 34 | 0 |
769 | goto state_31; never executed: goto state_31; | 0 |
770 | if (ch.unicode() >= 35 && ch.unicode() <= 91) never evaluated: ch.unicode() >= 35 never evaluated: ch.unicode() <= 91 | 0 |
771 | goto state_30; never executed: goto state_30; | 0 |
772 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
773 | goto state_32; never executed: goto state_32; | 0 |
774 | if (ch.unicode() >= 93 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 93 never evaluated: ch.unicode() <= 96 | 0 |
775 | goto state_30; never executed: goto state_30; | 0 |
776 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
777 | goto state_30; never executed: goto state_30; | 0 |
778 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
779 | goto state_30; never executed: goto state_30; | 0 |
780 | goto out; never executed: goto out; | 0 |
781 | state_61: | - |
782 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
783 | token = QCss::HASH; executed (the execution status of this line is deduced): token = QCss::HASH; | - |
784 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
785 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:73 |
| 0-73 |
786 | goto state_61; never executed: goto state_61; | 0 |
787 | if (ch.unicode() >= 48 && ch.unicode() <= 57) evaluated: ch.unicode() >= 48 yes Evaluation Count:71 | yes Evaluation Count:2 |
evaluated: ch.unicode() <= 57 yes Evaluation Count:26 | yes Evaluation Count:45 |
| 2-71 |
788 | goto state_61; executed: goto state_61; Execution Count:26 | 26 |
789 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:47 |
| 0-47 |
790 | goto state_62; never executed: goto state_62; | 0 |
791 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:47 |
| 0-47 |
792 | goto state_61; never executed: goto state_61; | 0 |
793 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) evaluated: ch.unicode() >= 'a' yes Evaluation Count:13 | yes Evaluation Count:34 |
evaluated: ch.unicode() <= 'z' yes Evaluation Count:10 | yes Evaluation Count:3 |
evaluated: ch.unicode() >= 'A' yes Evaluation Count:23 | yes Evaluation Count:14 |
evaluated: ch.unicode() <= 'Z' yes Evaluation Count:20 | yes Evaluation Count:3 |
partially evaluated: ch.unicode() >= 256 no Evaluation Count:0 | yes Evaluation Count:17 |
| 0-34 |
794 | goto state_61; executed: goto state_61; Execution Count:30 | 30 |
795 | goto out; executed: goto out; Execution Count:17 | 17 |
796 | state_62: | - |
797 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
798 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
799 | goto state_79; never executed: goto state_79; | 0 |
800 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
801 | goto state_79; never executed: goto state_79; | 0 |
802 | if (ch.unicode() >= 14 && ch.unicode() <= 47) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 47 | 0 |
803 | goto state_79; never executed: goto state_79; | 0 |
804 | if (ch.unicode() >= 58 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 58 never evaluated: ch.unicode() <= 96 | 0 |
805 | goto state_79; never executed: goto state_79; | 0 |
806 | if (ch.unicode() >= 103) never evaluated: ch.unicode() >= 103 | 0 |
807 | goto state_79; never executed: goto state_79; | 0 |
808 | goto out; never executed: goto out; | 0 |
809 | state_63: | - |
810 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
811 | token = QCss::HASH; never executed (the execution status of this line is deduced): token = QCss::HASH; | - |
812 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
813 | if (ch.unicode() == 45) never evaluated: ch.unicode() == 45 | 0 |
814 | goto state_61; never executed: goto state_61; | 0 |
815 | if (ch.unicode() >= 48 && ch.unicode() <= 57) never evaluated: ch.unicode() >= 48 never evaluated: ch.unicode() <= 57 | 0 |
816 | goto state_61; never executed: goto state_61; | 0 |
817 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
818 | goto state_62; never executed: goto state_62; | 0 |
819 | if (ch.unicode() == 95) never evaluated: ch.unicode() == 95 | 0 |
820 | goto state_61; never executed: goto state_61; | 0 |
821 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
822 | goto state_61; never executed: goto state_61; | 0 |
823 | goto out; never executed: goto out; | 0 |
824 | state_64: | - |
825 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
826 | token = QCss::INVALID; never executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
827 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
828 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
829 | goto state_35; never executed: goto state_35; | 0 |
830 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
831 | goto state_35; never executed: goto state_35; | 0 |
832 | if (ch.unicode() >= 14 && ch.unicode() <= 38) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 38 | 0 |
833 | goto state_35; never executed: goto state_35; | 0 |
834 | if (ch.unicode() == 39) never evaluated: ch.unicode() == 39 | 0 |
835 | goto state_36; never executed: goto state_36; | 0 |
836 | if (ch.unicode() >= 40 && ch.unicode() <= 91) never evaluated: ch.unicode() >= 40 never evaluated: ch.unicode() <= 91 | 0 |
837 | goto state_35; never executed: goto state_35; | 0 |
838 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
839 | goto state_37; never executed: goto state_37; | 0 |
840 | if (ch.unicode() >= 93 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 93 never evaluated: ch.unicode() <= 96 | 0 |
841 | goto state_35; never executed: goto state_35; | 0 |
842 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
843 | goto state_35; never executed: goto state_35; | 0 |
844 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
845 | goto state_35; never executed: goto state_35; | 0 |
846 | goto out; never executed: goto out; | 0 |
847 | state_65: | - |
848 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
849 | token = QCss::INVALID; never executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
850 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
851 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
852 | goto state_35; never executed: goto state_35; | 0 |
853 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
854 | goto state_35; never executed: goto state_35; | 0 |
855 | if (ch.unicode() >= 14 && ch.unicode() <= 38) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 38 | 0 |
856 | goto state_35; never executed: goto state_35; | 0 |
857 | if (ch.unicode() == 39) never evaluated: ch.unicode() == 39 | 0 |
858 | goto state_36; never executed: goto state_36; | 0 |
859 | if (ch.unicode() >= 40 && ch.unicode() <= 91) never evaluated: ch.unicode() >= 40 never evaluated: ch.unicode() <= 91 | 0 |
860 | goto state_35; never executed: goto state_35; | 0 |
861 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
862 | goto state_37; never executed: goto state_37; | 0 |
863 | if (ch.unicode() >= 93 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 93 never evaluated: ch.unicode() <= 96 | 0 |
864 | goto state_35; never executed: goto state_35; | 0 |
865 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
866 | goto state_35; never executed: goto state_35; | 0 |
867 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
868 | goto state_35; never executed: goto state_35; | 0 |
869 | goto out; never executed: goto out; | 0 |
870 | state_66: | - |
871 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
872 | token = QCss::INVALID; never executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
873 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
874 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
875 | goto state_35; never executed: goto state_35; | 0 |
876 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
877 | goto state_35; never executed: goto state_35; | 0 |
878 | if (ch.unicode() >= 14 && ch.unicode() <= 38) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 38 | 0 |
879 | goto state_35; never executed: goto state_35; | 0 |
880 | if (ch.unicode() == 39) never evaluated: ch.unicode() == 39 | 0 |
881 | goto state_36; never executed: goto state_36; | 0 |
882 | if (ch.unicode() >= 40 && ch.unicode() <= 91) never evaluated: ch.unicode() >= 40 never evaluated: ch.unicode() <= 91 | 0 |
883 | goto state_35; never executed: goto state_35; | 0 |
884 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
885 | goto state_37; never executed: goto state_37; | 0 |
886 | if (ch.unicode() >= 93 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 93 never evaluated: ch.unicode() <= 96 | 0 |
887 | goto state_35; never executed: goto state_35; | 0 |
888 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
889 | goto state_35; never executed: goto state_35; | 0 |
890 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
891 | goto state_35; never executed: goto state_35; | 0 |
892 | goto out; never executed: goto out; | 0 |
893 | state_67: | - |
894 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
895 | token = QCss::INVALID; never executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
896 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
897 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
898 | goto state_35; never executed: goto state_35; | 0 |
899 | if (ch.unicode() == 10) never evaluated: ch.unicode() == 10 | 0 |
900 | goto state_80; never executed: goto state_80; | 0 |
901 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
902 | goto state_35; never executed: goto state_35; | 0 |
903 | if (ch.unicode() >= 14 && ch.unicode() <= 38) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 38 | 0 |
904 | goto state_35; never executed: goto state_35; | 0 |
905 | if (ch.unicode() == 39) never evaluated: ch.unicode() == 39 | 0 |
906 | goto state_36; never executed: goto state_36; | 0 |
907 | if (ch.unicode() >= 40 && ch.unicode() <= 91) never evaluated: ch.unicode() >= 40 never evaluated: ch.unicode() <= 91 | 0 |
908 | goto state_35; never executed: goto state_35; | 0 |
909 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
910 | goto state_37; never executed: goto state_37; | 0 |
911 | if (ch.unicode() >= 93 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 93 never evaluated: ch.unicode() <= 96 | 0 |
912 | goto state_35; never executed: goto state_35; | 0 |
913 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
914 | goto state_35; never executed: goto state_35; | 0 |
915 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
916 | goto state_35; never executed: goto state_35; | 0 |
917 | goto out; never executed: goto out; | 0 |
918 | state_69: | - |
919 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
920 | token = QCss::NUMBER; executed (the execution status of this line is deduced): token = QCss::NUMBER; | - |
921 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
922 | if (ch.unicode() == 37) partially evaluated: ch.unicode() == 37 no Evaluation Count:0 | yes Evaluation Count:5 |
| 0-5 |
923 | goto state_41; never executed: goto state_41; | 0 |
924 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:5 |
| 0-5 |
925 | goto state_42; never executed: goto state_42; | 0 |
926 | if (ch.unicode() >= 48 && ch.unicode() <= 57) partially evaluated: ch.unicode() >= 48 yes Evaluation Count:5 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 57 no Evaluation Count:0 | yes Evaluation Count:5 |
| 0-5 |
927 | goto state_69; never executed: goto state_69; | 0 |
928 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:5 |
| 0-5 |
929 | goto state_45; never executed: goto state_45; | 0 |
930 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:5 |
| 0-5 |
931 | goto state_46; never executed: goto state_46; | 0 |
932 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) partially evaluated: ch.unicode() >= 'a' yes Evaluation Count:5 | no Evaluation Count:0 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:5 | no Evaluation Count:0 |
never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0-5 |
933 | goto state_46; executed: goto state_46; Execution Count:5 | 5 |
934 | goto out; never executed: goto out; | 0 |
935 | state_70: | - |
936 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
937 | token = QCss::LENGTH; never executed (the execution status of this line is deduced): token = QCss::LENGTH; | - |
938 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
939 | if (ch.unicode() == 45) never evaluated: ch.unicode() == 45 | 0 |
940 | goto state_71; never executed: goto state_71; | 0 |
941 | if (ch.unicode() >= 48 && ch.unicode() <= 57) never evaluated: ch.unicode() >= 48 never evaluated: ch.unicode() <= 57 | 0 |
942 | goto state_71; never executed: goto state_71; | 0 |
943 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
944 | goto state_72; never executed: goto state_72; | 0 |
945 | if (ch.unicode() == 95) never evaluated: ch.unicode() == 95 | 0 |
946 | goto state_71; never executed: goto state_71; | 0 |
947 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
948 | goto state_71; never executed: goto state_71; | 0 |
949 | goto out; never executed: goto out; | 0 |
950 | state_71: | - |
951 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
952 | token = QCss::LENGTH; executed (the execution status of this line is deduced): token = QCss::LENGTH; | - |
953 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
954 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:268 |
| 0-268 |
955 | goto state_71; never executed: goto state_71; | 0 |
956 | if (ch.unicode() >= 48 && ch.unicode() <= 57) evaluated: ch.unicode() >= 48 yes Evaluation Count:262 | yes Evaluation Count:6 |
partially evaluated: ch.unicode() <= 57 no Evaluation Count:0 | yes Evaluation Count:262 |
| 0-262 |
957 | goto state_71; never executed: goto state_71; | 0 |
958 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:268 |
| 0-268 |
959 | goto state_72; never executed: goto state_72; | 0 |
960 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:268 |
| 0-268 |
961 | goto state_71; never executed: goto state_71; | 0 |
962 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) evaluated: ch.unicode() >= 'a' yes Evaluation Count:28 | yes Evaluation Count:240 |
partially evaluated: ch.unicode() <= 'z' no Evaluation Count:0 | yes Evaluation Count:28 |
evaluated: ch.unicode() >= 'A' yes Evaluation Count:28 | yes Evaluation Count:240 |
partially evaluated: ch.unicode() <= 'Z' no Evaluation Count:0 | yes Evaluation Count:28 |
partially evaluated: ch.unicode() >= 256 no Evaluation Count:0 | yes Evaluation Count:268 |
| 0-268 |
963 | goto state_71; never executed: goto state_71; | 0 |
964 | goto out; executed: goto out; Execution Count:268 | 268 |
965 | state_72: | - |
966 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
967 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
968 | goto state_81; never executed: goto state_81; | 0 |
969 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
970 | goto state_81; never executed: goto state_81; | 0 |
971 | if (ch.unicode() >= 14 && ch.unicode() <= 47) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 47 | 0 |
972 | goto state_81; never executed: goto state_81; | 0 |
973 | if (ch.unicode() >= 58 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 58 never evaluated: ch.unicode() <= 96 | 0 |
974 | goto state_81; never executed: goto state_81; | 0 |
975 | if (ch.unicode() >= 103) never evaluated: ch.unicode() >= 103 | 0 |
976 | goto state_81; never executed: goto state_81; | 0 |
977 | goto out; never executed: goto out; | 0 |
978 | state_73: | - |
979 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
980 | if (ch.unicode() == 45) { never evaluated: ch.unicode() == 45 | 0 |
981 | token = QCss::CDO; never executed (the execution status of this line is deduced): token = QCss::CDO; | - |
982 | goto found; never executed: goto found; | 0 |
983 | } | - |
984 | goto out; never executed: goto out; | 0 |
985 | state_74: | - |
986 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
987 | token = QCss::ATKEYWORD_SYM; never executed (the execution status of this line is deduced): token = QCss::ATKEYWORD_SYM; | - |
988 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
989 | if (ch.unicode() == 45) never evaluated: ch.unicode() == 45 | 0 |
990 | goto state_75; never executed: goto state_75; | 0 |
991 | if (ch.unicode() >= 48 && ch.unicode() <= 57) never evaluated: ch.unicode() >= 48 never evaluated: ch.unicode() <= 57 | 0 |
992 | goto state_75; never executed: goto state_75; | 0 |
993 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
994 | goto state_76; never executed: goto state_76; | 0 |
995 | if (ch.unicode() == 95) never evaluated: ch.unicode() == 95 | 0 |
996 | goto state_75; never executed: goto state_75; | 0 |
997 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
998 | goto state_75; never executed: goto state_75; | 0 |
999 | goto out; never executed: goto out; | 0 |
1000 | state_75: | - |
1001 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
1002 | token = QCss::ATKEYWORD_SYM; executed (the execution status of this line is deduced): token = QCss::ATKEYWORD_SYM; | - |
1003 | ch = next(); executed (the execution status of this line is deduced): ch = next(); | - |
1004 | if (ch.unicode() == 45) partially evaluated: ch.unicode() == 45 no Evaluation Count:0 | yes Evaluation Count:37 |
| 0-37 |
1005 | goto state_75; never executed: goto state_75; | 0 |
1006 | if (ch.unicode() >= 48 && ch.unicode() <= 57) evaluated: ch.unicode() >= 48 yes Evaluation Count:29 | yes Evaluation Count:8 |
partially evaluated: ch.unicode() <= 57 no Evaluation Count:0 | yes Evaluation Count:29 |
| 0-29 |
1007 | goto state_75; never executed: goto state_75; | 0 |
1008 | if (ch.unicode() == 92) partially evaluated: ch.unicode() == 92 no Evaluation Count:0 | yes Evaluation Count:37 |
| 0-37 |
1009 | goto state_76; never executed: goto state_76; | 0 |
1010 | if (ch.unicode() == 95) partially evaluated: ch.unicode() == 95 no Evaluation Count:0 | yes Evaluation Count:37 |
| 0-37 |
1011 | goto state_75; never executed: goto state_75; | 0 |
1012 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) evaluated: ch.unicode() >= 'a' yes Evaluation Count:29 | yes Evaluation Count:8 |
partially evaluated: ch.unicode() <= 'z' yes Evaluation Count:29 | no Evaluation Count:0 |
partially evaluated: ch.unicode() >= 'A' no Evaluation Count:0 | yes Evaluation Count:8 |
never evaluated: ch.unicode() <= 'Z' partially evaluated: ch.unicode() >= 256 no Evaluation Count:0 | yes Evaluation Count:8 |
| 0-29 |
1013 | goto state_75; executed: goto state_75; Execution Count:29 | 29 |
1014 | goto out; executed: goto out; Execution Count:8 | 8 |
1015 | state_76: | - |
1016 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
1017 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
1018 | goto state_83; never executed: goto state_83; | 0 |
1019 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
1020 | goto state_83; never executed: goto state_83; | 0 |
1021 | if (ch.unicode() >= 14 && ch.unicode() <= 47) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 47 | 0 |
1022 | goto state_83; never executed: goto state_83; | 0 |
1023 | if (ch.unicode() >= 58 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 58 never evaluated: ch.unicode() <= 96 | 0 |
1024 | goto state_83; never executed: goto state_83; | 0 |
1025 | if (ch.unicode() >= 103) never evaluated: ch.unicode() >= 103 | 0 |
1026 | goto state_83; never executed: goto state_83; | 0 |
1027 | goto out; never executed: goto out; | 0 |
1028 | state_77: | - |
1029 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
1030 | token = QCss::IDENT; never executed (the execution status of this line is deduced): token = QCss::IDENT; | - |
1031 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
1032 | if (ch.unicode() == 40) never evaluated: ch.unicode() == 40 | 0 |
1033 | goto state_52; never executed: goto state_52; | 0 |
1034 | if (ch.unicode() == 45) never evaluated: ch.unicode() == 45 | 0 |
1035 | goto state_53; never executed: goto state_53; | 0 |
1036 | if (ch.unicode() >= 48 && ch.unicode() <= 57) never evaluated: ch.unicode() >= 48 never evaluated: ch.unicode() <= 57 | 0 |
1037 | goto state_53; never executed: goto state_53; | 0 |
1038 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
1039 | goto state_54; never executed: goto state_54; | 0 |
1040 | if (ch.unicode() == 95) never evaluated: ch.unicode() == 95 | 0 |
1041 | goto state_53; never executed: goto state_53; | 0 |
1042 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
1043 | goto state_53; never executed: goto state_53; | 0 |
1044 | goto out; never executed: goto out; | 0 |
1045 | state_78: | - |
1046 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
1047 | token = QCss::INVALID; never executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
1048 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
1049 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
1050 | goto state_30; never executed: goto state_30; | 0 |
1051 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
1052 | goto state_30; never executed: goto state_30; | 0 |
1053 | if (ch.unicode() >= 14 && ch.unicode() <= 33) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 33 | 0 |
1054 | goto state_30; never executed: goto state_30; | 0 |
1055 | if (ch.unicode() == 34) never evaluated: ch.unicode() == 34 | 0 |
1056 | goto state_31; never executed: goto state_31; | 0 |
1057 | if (ch.unicode() >= 35 && ch.unicode() <= 91) never evaluated: ch.unicode() >= 35 never evaluated: ch.unicode() <= 91 | 0 |
1058 | goto state_30; never executed: goto state_30; | 0 |
1059 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
1060 | goto state_32; never executed: goto state_32; | 0 |
1061 | if (ch.unicode() >= 93 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 93 never evaluated: ch.unicode() <= 96 | 0 |
1062 | goto state_30; never executed: goto state_30; | 0 |
1063 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
1064 | goto state_30; never executed: goto state_30; | 0 |
1065 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
1066 | goto state_30; never executed: goto state_30; | 0 |
1067 | goto out; never executed: goto out; | 0 |
1068 | state_79: | - |
1069 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
1070 | token = QCss::HASH; never executed (the execution status of this line is deduced): token = QCss::HASH; | - |
1071 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
1072 | if (ch.unicode() == 45) never evaluated: ch.unicode() == 45 | 0 |
1073 | goto state_61; never executed: goto state_61; | 0 |
1074 | if (ch.unicode() >= 48 && ch.unicode() <= 57) never evaluated: ch.unicode() >= 48 never evaluated: ch.unicode() <= 57 | 0 |
1075 | goto state_61; never executed: goto state_61; | 0 |
1076 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
1077 | goto state_62; never executed: goto state_62; | 0 |
1078 | if (ch.unicode() == 95) never evaluated: ch.unicode() == 95 | 0 |
1079 | goto state_61; never executed: goto state_61; | 0 |
1080 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
1081 | goto state_61; never executed: goto state_61; | 0 |
1082 | goto out; never executed: goto out; | 0 |
1083 | state_80: | - |
1084 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
1085 | token = QCss::INVALID; never executed (the execution status of this line is deduced): token = QCss::INVALID; | - |
1086 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
1087 | if (ch.unicode() >= 1 && ch.unicode() <= 9) never evaluated: ch.unicode() >= 1 never evaluated: ch.unicode() <= 9 | 0 |
1088 | goto state_35; never executed: goto state_35; | 0 |
1089 | if (ch.unicode() == 11) never evaluated: ch.unicode() == 11 | 0 |
1090 | goto state_35; never executed: goto state_35; | 0 |
1091 | if (ch.unicode() >= 14 && ch.unicode() <= 38) never evaluated: ch.unicode() >= 14 never evaluated: ch.unicode() <= 38 | 0 |
1092 | goto state_35; never executed: goto state_35; | 0 |
1093 | if (ch.unicode() == 39) never evaluated: ch.unicode() == 39 | 0 |
1094 | goto state_36; never executed: goto state_36; | 0 |
1095 | if (ch.unicode() >= 40 && ch.unicode() <= 91) never evaluated: ch.unicode() >= 40 never evaluated: ch.unicode() <= 91 | 0 |
1096 | goto state_35; never executed: goto state_35; | 0 |
1097 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
1098 | goto state_37; never executed: goto state_37; | 0 |
1099 | if (ch.unicode() >= 93 && ch.unicode() <= 96) never evaluated: ch.unicode() >= 93 never evaluated: ch.unicode() <= 96 | 0 |
1100 | goto state_35; never executed: goto state_35; | 0 |
1101 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
1102 | goto state_35; never executed: goto state_35; | 0 |
1103 | if (ch.unicode() >= 123) never evaluated: ch.unicode() >= 123 | 0 |
1104 | goto state_35; never executed: goto state_35; | 0 |
1105 | goto out; never executed: goto out; | 0 |
1106 | state_81: | - |
1107 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
1108 | token = QCss::LENGTH; never executed (the execution status of this line is deduced): token = QCss::LENGTH; | - |
1109 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
1110 | if (ch.unicode() == 45) never evaluated: ch.unicode() == 45 | 0 |
1111 | goto state_71; never executed: goto state_71; | 0 |
1112 | if (ch.unicode() >= 48 && ch.unicode() <= 57) never evaluated: ch.unicode() >= 48 never evaluated: ch.unicode() <= 57 | 0 |
1113 | goto state_71; never executed: goto state_71; | 0 |
1114 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
1115 | goto state_72; never executed: goto state_72; | 0 |
1116 | if (ch.unicode() == 95) never evaluated: ch.unicode() == 95 | 0 |
1117 | goto state_71; never executed: goto state_71; | 0 |
1118 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
1119 | goto state_71; never executed: goto state_71; | 0 |
1120 | goto out; never executed: goto out; | 0 |
1121 | state_83: | - |
1122 | lastAcceptingPos = pos; never executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
1123 | token = QCss::ATKEYWORD_SYM; never executed (the execution status of this line is deduced): token = QCss::ATKEYWORD_SYM; | - |
1124 | ch = next(); never executed (the execution status of this line is deduced): ch = next(); | - |
1125 | if (ch.unicode() == 45) never evaluated: ch.unicode() == 45 | 0 |
1126 | goto state_75; never executed: goto state_75; | 0 |
1127 | if (ch.unicode() >= 48 && ch.unicode() <= 57) never evaluated: ch.unicode() >= 48 never evaluated: ch.unicode() <= 57 | 0 |
1128 | goto state_75; never executed: goto state_75; | 0 |
1129 | if (ch.unicode() == 92) never evaluated: ch.unicode() == 92 | 0 |
1130 | goto state_76; never executed: goto state_76; | 0 |
1131 | if (ch.unicode() == 95) never evaluated: ch.unicode() == 95 | 0 |
1132 | goto state_75; never executed: goto state_75; | 0 |
1133 | if ((ch.unicode() >= 'a' && ch.unicode() <= 'z') || (ch.unicode() >= 'A' && ch.unicode() <= 'Z') || ch.unicode() >= 256) never evaluated: ch.unicode() >= 'a' never evaluated: ch.unicode() <= 'z' never evaluated: ch.unicode() >= 'A' never evaluated: ch.unicode() <= 'Z' never evaluated: ch.unicode() >= 256 | 0 |
1134 | goto state_75; never executed: goto state_75; | 0 |
1135 | goto out; never executed: goto out; | 0 |
1136 | found: | - |
1137 | lastAcceptingPos = pos; executed (the execution status of this line is deduced): lastAcceptingPos = pos; | - |
1138 | | - |
1139 | out: code before this statement executed: out: Execution Count:1415 | 1415 |
1140 | if (lastAcceptingPos != -1) { evaluated: lastAcceptingPos != -1 yes Evaluation Count:3930 | yes Evaluation Count:627 |
| 627-3930 |
1141 | lexemLength = lastAcceptingPos - lexemStart; executed (the execution status of this line is deduced): lexemLength = lastAcceptingPos - lexemStart; | - |
1142 | pos = lastAcceptingPos; executed (the execution status of this line is deduced): pos = lastAcceptingPos; | - |
1143 | } executed: } Execution Count:3930 | 3930 |
1144 | return token; executed: return token; Execution Count:4557 | 4557 |
1145 | } | - |
1146 | | - |
1147 | | - |
| | |