Home
last modified time | relevance | path

Searched refs:propertyCount (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DViewportStyleResolver.cpp67 unsigned propertyCount = propertySet->propertyCount(); in addViewportRule() local
68 if (!propertyCount) in addViewportRule()
81 for (unsigned i = 0; i < propertyCount; ++i) in addViewportRule()
DStyleResolver.cpp877 for (unsigned j = 0; j < propertySetVector[i]->propertyCount(); ++j) { in createKeyframeAnimationEffect()
1277 unsigned propertyCount = properties->propertyCount(); in applyProperties() local
1278 for (unsigned i = 0; i < propertyCount; ++i) { in applyProperties()
DStyleBuilderCustom.cpp1145 for (unsigned i = 0; i < resultSet->propertyCount(); i++) { in resolveVariables()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DKeyframeList.cpp35 unsigned propertyCount = propertySet->propertyCount(); in addProperties() local
36 for (unsigned i = 0; i < propertyCount; ++i) { in addProperties()
/external/chromium_org/third_party/WebKit/Source/core/css/
DStylePropertySet.cpp103 m_propertyVector.reserveInitialCapacity(other.propertyCount()); in MutableStylePropertySet()
104 for (unsigned i = 0; i < other.propertyCount(); ++i) in MutableStylePropertySet()
130 for (unsigned i = 0; i < propertyCount(); ++i) { in variableCount()
374 unsigned size = other->propertyCount(); in mergeAndOverrideOnConflict()
387 unsigned size = propertyCount(); in addSubresourceStyleURLs()
394 unsigned size = propertyCount(); in hasFailedOrCanceledSubresources()
487 for (int n = propertyCount() - 1 ; n >= 0; --n) { in findPropertyIndex()
500 for (int i = propertyCount() - 1; i >= 0; --i) { in findVariableIndex()
572 const size_t propertyCount = propertySet->propertyCount(); in create() local
574 Vector<AtomicString> remainingNames(propertyCount); in create()
[all …]
DStylePropertySet.h86 unsigned propertyCount() const;
155 unsigned propertyCount() const { return m_arraySize; } in propertyCount() function
189 unsigned propertyCount() const { return m_propertyVector.size(); } in propertyCount() function
281 inline unsigned StylePropertySet::propertyCount() const in propertyCount() function
290 return !propertyCount(); in isEmpty()
DRuntimeCSSEnabled.cpp164 …nabledCSSPropertiesIntoVector(const CSSPropertyID* properties, size_t propertyCount, Vector<CSSPro… in filterEnabledCSSPropertiesIntoVector() argument
166 for (unsigned i = 0; i < propertyCount; i++) { in filterEnabledCSSPropertiesIntoVector()
DPropertySetCSSStyleDeclaration.cpp140 return m_propertySet->propertyCount(); in length()
145 if (i >= m_propertySet->propertyCount()) in item()
DStylePropertySerializer.cpp60 unsigned size = m_propertySet.propertyCount(); in asText()
/external/chromium_org/content/browser/resources/media/
Dmain.js155 var propertyCount = 0;
170 propertyCount += 1;
173 if (propertyCount === 0) {
/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditingStyle.cpp649 unsigned propertyCount = nodeStyle->propertyCount(); in removeStyleConflictingWithStyleOfNode() local
650 for (unsigned i = 0; i < propertyCount; ++i) in removeStyleConflictingWithStyleOfNode()
698 if (difference->propertyCount() == m_mutableStyle->propertyCount()) in triStateOfStyle()
744 unsigned propertyCount = m_mutableStyle->propertyCount(); in conflictsWithInlineStyleOfElement() local
745 for (unsigned i = 0; i < propertyCount; ++i) { in conflictsWithInlineStyleOfElement()
931 unsigned propertyCount = style->propertyCount(); in elementIsStyledSpanOrHTMLEquivalent() local
932 for (unsigned i = 0; i < propertyCount; ++i) { in elementIsStyledSpanOrHTMLEquivalent()
1113 unsigned propertyCount = style->propertyCount(); in mergeStyle() local
1114 for (unsigned i = 0; i < propertyCount; ++i) { in mergeStyle()
1166 unsigned propertyCount = m_mutableStyle->propertyCount(); in mergeStyleFromRulesForSerialization() local
[all …]
DReplaceSelectionCommand.cpp516 } else if (newInlineStyle->style()->propertyCount() != inlineStyle->propertyCount()) { in removeRedundantStylesAndKeepStyleSpanInline()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DWatchExpressionsSidebarPane.js172 if (properties.length == propertyCount) {
197 var propertyCount = 0;
201 ++propertyCount;
214 if (!propertyCount) {
225 this.expanded = (propertyCount != 0);
DObjectPropertiesSection.js688 WebInspector.ArrayGroupingTreeElement = function(object, fromIndex, toIndex, propertyCount) argument
695 this._propertyCount = propertyCount;
/external/chromium_org/third_party/WebKit/Source/core/page/
DPageSerializer.cpp342 unsigned propertyCount = styleDeclaration->propertyCount(); in retrieveResourcesForProperties() local
343 for (unsigned i = 0; i < propertyCount; ++i) { in retrieveResourcesForProperties()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleSheet.cpp558 unsigned propertyCount = propertyData.size(); in setPropertyText() local
561 if (propertyCount < 2) { in setPropertyText()
567 if (propertyData.at(propertyCount - 1).name != bogusPropertyName) { in setPropertyText()
875 int propertyCount; in newLineAndWhitespaceDelimiters() local
876 if (!sourcePropertyData || !(propertyCount = sourcePropertyData->size())) { in newLineAndWhitespaceDelimiters()
895 while (propertyIndex < propertyCount) { in newLineAndWhitespaceDelimiters()
/external/chromium_org/v8/src/
Dd8.js1282 result += value.propertyCount();
1286 for (var i = 0; i < value.propertyCount(); i++) {
1927 ProtocolValue.prototype.propertyCount = function() { method in ProtocolValue
1948 for (var i = 0; i < this.propertyCount(); i++) {
/external/v8/src/
Dd8.js1640 result += value.propertyCount();
1644 for (var i = 0; i < value.propertyCount(); i++) {
2544 ProtocolValue.prototype.propertyCount = function() { method in ProtocolValue
2565 for (var i = 0; i < this.propertyCount(); i++) {
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DSerializedScriptValue.cpp1166 static bool shouldSerializeDensely(uint32_t length, uint32_t propertyCount) in shouldSerializeDensely() argument
1172 return 6 * propertyCount >= length; in shouldSerializeDensely()
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
DCSSAnimations.cpp123 for (unsigned j = 0; j < properties->propertyCount(); j++) { in resolveKeyframes()