isLeftPage         66 Source/core/css/PageRuleCollector.cpp     : m_isLeftPage(isLeftPage(rootElementStyle, pageIndex))
isLeftPage         87 Source/core/css/PageRuleCollector.cpp static bool checkPageSelectorComponents(const CSSSelector* selector, bool isLeftPage, bool isFirstPage, const String& pageName)
isLeftPage         97 Source/core/css/PageRuleCollector.cpp         if ((pseudoType == CSSSelector::PseudoLeftPage && !isLeftPage)
isLeftPage         98 Source/core/css/PageRuleCollector.cpp             || (pseudoType == CSSSelector::PseudoRightPage && isLeftPage)
isLeftPage        107 Source/core/css/PageRuleCollector.cpp void PageRuleCollector::matchPageRulesForList(WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& matchedRules, const WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& rules, bool isLeftPage, bool isFirstPage, const String& pageName)
isLeftPage        112 Source/core/css/PageRuleCollector.cpp         if (!checkPageSelectorComponents(rule->selector(), isLeftPage, isFirstPage, pageName))
isLeftPage         42 Source/core/css/PageRuleCollector.h     bool isLeftPage(const RenderStyle* rootElementStyle, int pageIndex) const;
isLeftPage         43 Source/core/css/PageRuleCollector.h     bool isRightPage(const RenderStyle* rootElementStyle, int pageIndex) const { return !isLeftPage(rootElementStyle, pageIndex); }
isLeftPage         47 Source/core/css/PageRuleCollector.h     void matchPageRulesForList(WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& matchedRules, const WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& rules, bool isLeftPage, bool isFirstPage, const String& pageName);
isLeftPage        281 Source/core/css/resolver/StyleResolver.h     void matchPageRules(MatchResult&, RuleSet*, bool isLeftPage, bool isFirstPage, const String& pageName);
isLeftPage        282 Source/core/css/resolver/StyleResolver.h     void matchPageRulesForList(WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& matchedRules, const WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >&, bool isLeftPage, bool isFirstPage, const String& pageName);
isLeftPage        286 Source/core/css/resolver/StyleResolver.h     bool isLeftPage(int pageIndex) const;
isLeftPage        287 Source/core/css/resolver/StyleResolver.h     bool isRightPage(int pageIndex) const { return !isLeftPage(pageIndex); }