Home | History | Annotate | Download | only in html

Lines Matching refs:it

34       CssTokens.TokenIterator it) {
36 for (; it.hasNext(); it.advance()) {
37 switch (it.type()) {
39 it.advance();
51 if (bracketDepth != 0) { it.advance(); }
67 CssTokens.TokenIterator it = tokens.iterator();
69 while (it.hasTokenAfterSpace()) {
71 if (it.type() != CssTokens.TokenType.IDENT) {
72 errorRecoveryUntilSemiOrCloseBracket(it);
76 String name = it.next();
79 if (!(it.hasTokenAfterSpace() && ":".equals(it.token()))) {
80 errorRecoveryUntilSemiOrCloseBracket(it);
83 it.advance();
86 parsePropertyValue(it, handler);
92 CssTokens.TokenIterator it, PropertyHandler handler) {
94 while (it.hasNext()) {
95 CssTokens.TokenType type = it.type();
96 String token = it.token();
99 it.advance();
102 CssTokens.TokenIterator actuals = it.spliceToEnd();
147 it.advance();