HomeSort by relevance Sort by last modified time
    Searched defs:matchedProperties (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchedPropertiesCache.h 42 WillBeHeapVector<MatchedProperties> matchedProperties;
49 void trace(Visitor* visitor) { visitor->trace(matchedProperties); }
MatchedPropertiesCache.cpp 45 // A given cache entry is only kept alive if none of the MatchedProperties
48 HeapVector<MatchedProperties>::iterator it = cachedProperties->matchedProperties.begin();
49 HeapVector<MatchedProperties>::iterator end = cachedProperties->matchedProperties.end();
59 // At this point none of the entries in the matchedProperties vector
68 matchedProperties.appendVector(matchResult.matchedProperties);
79 matchedProperties.clear();
102 size_t size = matchResult.matchedProperties.size()
    [all...]
MatchResult.h 52 struct MatchedProperties {
55 MatchedProperties();
56 ~MatchedProperties();
74 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::MatchedProperties);
82 WillBeHeapVector<MatchedProperties, 64> matchedProperties;
102 inline bool operator==(const MatchedProperties& a, const MatchedProperties& b)
107 inline bool operator!=(const MatchedProperties& a, const MatchedProperties& b
    [all...]
StyleResolver.cpp 380 collector.matchedResult().ranges.lastAuthorRule = collector.matchedResult().matchedProperties.size() - 1;
401 collector.matchedResult().ranges.lastAuthorRule = collector.matchedResult().matchedProperties.size() - 1;
460 collector.matchedResult().ranges.lastUARule = collector.matchedResult().matchedProperties.size() - 1;
676 applyMatchedProperties<HighPriorityProperties>(state, result, false, 0, result.matchedProperties.size() - 1, inheritedOnly);
686 applyMatchedProperties<LowPriorityProperties>(state, result, false, 0, result.matchedProperties.size() - 1, inheritedOnly);
786 if (collector.matchedResult().matchedProperties.isEmpty())
    [all...]

Completed in 94 milliseconds