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