Home | History | Annotate | Download | only in html

Lines Matching refs:it

123           for (CssTokens.TokenIterator it = tokens.iterator(); it.hasNext();
124 it.advance()) {
125 System.err.println(it.token() + ":" + it.type());
143 for (CssTokens.TokenIterator it = tokens.iterator(); it.hasNext();) {
144 CssTokens.TokenType type = it.type();
145 String token = it.next();
253 * This hack helps ignore it.
257 for (CssTokens.TokenIterator it = tokens.iterator(); it.hasNext();) {
258 if (it.type() != TokenType.NUMBER) {
259 sb.append(it.next());
262 sb.append(it.next());
263 } while (it.hasNext() && it.type() == TokenType.NUMBER);
264 if (it.hasNext() && it.type() == TokenType.WHITESPACE) {
265 it.advance();
267 if (it.hasNext()) {
268 String token = it.token();
269 switch (it.type()) {
273 it.advance();
274 if (it.hasNext() && it.token().startsWith(".")) {
277 it.backup();
299 it.advance();