OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:selectorcheckingcontext
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.h
67
struct
SelectorCheckingContext
{
69
SelectorCheckingContext
(const CSSSelector* selector, Element* element, VisitedMatchType visitedMatchType)
108
Match match(const
SelectorCheckingContext
&, const SiblingTraversalStrategy&, MatchResult* = 0) const;
111
bool checkOne(const
SelectorCheckingContext
&, const SiblingTraversalStrategy&, unsigned* specificity = 0) const;
129
Match matchForSubSelector(const
SelectorCheckingContext
&, const SiblingTraversalStrategy&, MatchResult*) const;
131
Match matchForRelation(const
SelectorCheckingContext
&, const SiblingTraversalStrategy&, MatchResult*) const;
133
Match matchForShadowDistributed(const Element*, const SiblingTraversalStrategy&,
SelectorCheckingContext
& nextContext, MatchResult* = 0) const;
135
bool checkScrollbarPseudoClass(const
SelectorCheckingContext
&, Document*, const CSSSelector*) const;
136
Element* parentElement(const
SelectorCheckingContext
&) const;
137
bool scopeContainsLastMatchedElement(const
SelectorCheckingContext
&) const
[
all
...]
SelectorChecker.cpp
83
Element* SelectorChecker::parentElement(const
SelectorCheckingContext
& context) const
97
bool SelectorChecker::scopeContainsLastMatchedElement(const
SelectorCheckingContext
& context) const
119
static inline bool nextSelectorExceedsScope(const SelectorChecker::
SelectorCheckingContext
& context)
131
SelectorChecker::Match SelectorChecker::match(const
SelectorCheckingContext
& context, const SiblingTraversalStrategy& siblingTraversalStrategy, MatchResult* result) const
194
static inline SelectorChecker::
SelectorCheckingContext
prepareNextContextForRelation(const SelectorChecker::
SelectorCheckingContext
& context)
196
SelectorChecker::
SelectorCheckingContext
nextContext(context);
203
SelectorChecker::Match SelectorChecker::matchForSubSelector(const
SelectorCheckingContext
& context, const SiblingTraversalStrategy& siblingTraversalStrategy, MatchResult* result) const
205
SelectorCheckingContext
nextContext = prepareNextContextForRelation(context);
223
SelectorChecker::Match SelectorChecker::matchForRelation(const
SelectorCheckingContext
& context, const SiblingTraversalStrategy& siblingTraversalStrategy, MatchResult* result) cons
[
all
...]
ElementRuleCollector.cpp
285
SelectorChecker::
SelectorCheckingContext
context(ruleData.selector(), m_context.element(), SelectorChecker::VisitedMatchEnabled);
/external/chromium_org/third_party/WebKit/Source/core/dom/
SelectorQuery.cpp
152
SelectorChecker::
SelectorCheckingContext
selectorCheckingContext
(selectorData.selector, &element, SelectorChecker::VisitedMatchDisabled);
153
selectorCheckingContext
.behaviorAtBoundary = SelectorChecker::StaysWithinTreeScope;
154
selectorCheckingContext
.scope = !rootNode.isDocumentNode() && rootNode.isContainerNode() ? &toContainerNode(rootNode) : 0;
155
return selectorChecker.match(
selectorCheckingContext
, DOMSiblingTraversalStrategy()) == SelectorChecker::SelectorMatches;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.h
347
SelectorChecker::
SelectorCheckingContext
selectorCheckingContext
(s, regionElement, SelectorChecker::VisitedMatchDisabled);
348
if (selectorChecker.match(
selectorCheckingContext
, DOMSiblingTraversalStrategy()) == SelectorChecker::SelectorMatches)
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
HTMLContentElement.cpp
106
SelectorChecker::
SelectorCheckingContext
context(selector, element, SelectorChecker::VisitedMatchEnabled);
/external/chromium_org/tools/telemetry/unittest_data/
perf_report_output.txt
157
0.47^14229607^HTMLParserThrea^chrome ^[.] bool WebCore::SelectorChecker::checkOne<WebCore::DOMSiblingTraversalStrategy>(WebCore::SelectorChecker::
SelectorCheckingContext
const&, WebCore::DOMSiblingTraversalStrategy const&) const
159
--- bool WebCore::SelectorChecker::checkOne<WebCore::DOMSiblingTraversalStrategy>(WebCore::SelectorChecker::
SelectorCheckingContext
const&, WebCore::DOMSiblingTraversalStrategy const&) const
[
all
...]
Completed in 302 milliseconds