Uses of Class
org.idpf.epubcheck.util.css.CssTokenList.CssTokenIterator
Packages that use CssTokenList.CssTokenIterator
-
Uses of CssTokenList.CssTokenIterator in org.idpf.epubcheck.util.css
Methods in org.idpf.epubcheck.util.css that return CssTokenList.CssTokenIteratorModifier and TypeMethodDescription(package private) CssTokenList.CssTokenIteratorprivate CssTokenList.CssTokenIteratorCssParser.scan(Reader reader, String systemID, CssErrorHandler err) Methods in org.idpf.epubcheck.util.css with parameters of type CssTokenList.CssTokenIteratorModifier and TypeMethodDescriptionCssGrammar.CssConstructFactory.CssTokenTransform.build(CssToken start, CssTokenList.CssTokenIterator iter, com.google.common.base.Predicate<CssToken> limit, com.google.common.base.Predicate<CssGrammar.CssConstruct> permitted) (package private) static CssGrammar.CssConstructCssGrammar.CssConstructFactory.create(CssToken start, CssTokenList.CssTokenIterator iter, com.google.common.base.Predicate<CssToken> limit, com.google.common.base.Predicate<CssGrammar.CssConstruct> permitted) (package private) CssGrammar.CssAttributeMatchSelectorCssGrammar.CssSelectorConstructFactory.createAttributeMatchSelector(CssToken tk, CssTokenList.CssTokenIterator iter, CssErrorHandler err) (package private) CssGrammar.CssAttributeSelectorCssGrammar.CssSelectorConstructFactory.createAttributeSelector(CssToken start, CssTokenList.CssTokenIterator iter, CssErrorHandler err) (package private) CssGrammar.CssSelectorCombinatorCssGrammar.CssSelectorConstructFactory.createCombinator(CssToken start, CssTokenList.CssTokenIterator iter, CssErrorHandler err) Create a combinator.(package private) CssGrammar.CssConstructCssGrammar.CssSelectorConstructFactory.createFunctionalPseudo(CssToken start, CssTokenList.CssTokenIterator iter, com.google.common.base.Predicate<CssToken> limit, CssErrorHandler err) (package private) CssGrammar.CssConstructCssGrammar.CssSelectorConstructFactory.createFunctionalSelectorListPseudo(CssToken start, CssTokenList.CssTokenIterator iter, CssErrorHandler err, boolean forgiving, boolean relative) (package private) CssGrammar.CssPseudoSelectorCssGrammar.CssSelectorConstructFactory.createPseudoSelector(CssToken start, CssTokenList.CssTokenIterator iter, CssErrorHandler err) CssGrammar.CssSelectorConstructFactory.createSelectorList(CssToken start, CssTokenList.CssTokenIterator iter, CssErrorHandler err) With start inparam being the first significant token in a selector, build the selector group (aka comma separated selectors), expected return when iter.last is '{'.private List<CssGrammar.CssSelector> CssGrammar.CssSelectorConstructFactory.createSelectorList(CssToken start, CssTokenList.CssTokenIterator iter, CssErrorHandler err, boolean forgiving, boolean relative, com.google.common.base.Predicate<CssToken> endMatcher) (package private) CssGrammar.CssConstructCssGrammar.CssSelectorConstructFactory.createSimpleSelector(CssToken start, CssTokenList.CssTokenIterator iter, CssErrorHandler err) Create one item in a simple selector sequence.CssGrammar.CssSelectorConstructFactory.createSimpleSelectorSequence(CssToken start, CssTokenList.CssTokenIterator iter, CssErrorHandler err) Create a simple selector sequence.(package private) CssGrammar.CssTypeSelectorCssGrammar.CssSelectorConstructFactory.createTypeSelector(CssToken start, CssTokenList.CssTokenIterator iter, CssErrorHandler err) private voidCssParser.handleAtRule(CssToken start, CssTokenList.CssTokenIterator iter, CssContentHandler doc, CssErrorHandler err) With start token required to be an ATKEYWORD, collect at-rule parameters if any, and if the at-rule has a block, invoke those handlers.private CssGrammar.CssConstructCssParser.handleAtRuleParam(CssToken start, CssTokenList.CssTokenIterator iter, CssContentHandler doc, CssErrorHandler err) With inparam token being the first token of an atrule param, create the construct and return it.private CssGrammar.CssDeclarationCssParser.handleDeclaration(CssToken name, CssTokenList.CssTokenIterator iter, CssContentHandler doc, CssErrorHandler err, boolean isStyleAttribute) With start expected to be an IDENT token representing the property name, build the declaration and return after hitting ';' or '}'.private voidCssParser.handleDeclarationBlock(CssToken start, CssTokenList.CssTokenIterator iter, CssContentHandler doc, CssErrorHandler err) With start token being the first non-ignorable token inside the declaration block, iterate issuing CssDeclaration objects until the block ends.private booleanCssParser.handlePropertyValue(CssGrammar.CssDeclaration declaration, CssToken start, CssTokenList.CssTokenIterator iter, boolean isStyleAttribute) Append property value components to declaration.value, return false if fail with iter.last at the the token which caused the fail.private voidCssParser.handleRuleSet(CssToken start, CssTokenList.CssTokenIterator iter, CssContentHandler doc, CssErrorHandler err) With the start token expected to be the first token of a selector group, create and issue the group, then invoke handleDeclarationBlock.private booleanCssParser.hasRuleSet(CssGrammar.CssAtRule atRule, CssTokenList.CssTokenIterator iter) With iter.last at '{', discover the at-rule type.