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.cpp1315 unsigned propertyCount = properties->propertyCount(); in applyProperties() local
1316 for (unsigned i = 0; i < propertyCount; ++i) { in applyProperties()
/external/chromium_org/third_party/WebKit/Source/core/css/
DStylePropertySet.h89 unsigned propertyCount() const;
156 unsigned propertyCount() const { return m_arraySize; } in propertyCount() function
193 unsigned propertyCount() const { return m_propertyVector.size(); } in propertyCount() function
270 inline unsigned StylePropertySet::propertyCount() const in propertyCount() function
279 return !propertyCount(); in isEmpty()
DStylePropertySet.cpp133 m_propertyVector.reserveInitialCapacity(other.propertyCount()); in MutableStylePropertySet()
134 for (unsigned i = 0; i < other.propertyCount(); ++i) in MutableStylePropertySet()
369 unsigned size = other->propertyCount(); in mergeAndOverrideOnConflict()
382 unsigned size = propertyCount(); in hasFailedOrCanceledSubresources()
DPropertySetCSSStyleDeclaration.cpp147 return propertySet().propertyCount(); in length()
152 if (i >= propertySet().propertyCount()) in item()
DStylePropertySerializer.cpp67 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/devtools/front_end/sources/
DWatchExpressionsSidebarPane.js168 if (properties.length == propertyCount) {
193 var propertyCount = 0;
197 ++propertyCount;
213 if (!propertyCount) {
224 this.expanded = (propertyCount != 0);
/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditingStyle.cpp650 unsigned propertyCount = nodeStyle->propertyCount(); in removeStyleConflictingWithStyleOfElement() local
651 for (unsigned i = 0; i < propertyCount; ++i) in removeStyleConflictingWithStyleOfElement()
699 if (difference->propertyCount() == m_mutableStyle->propertyCount()) in triStateOfStyle()
745 unsigned propertyCount = m_mutableStyle->propertyCount(); in conflictsWithInlineStyleOfElement() local
746 for (unsigned i = 0; i < propertyCount; ++i) { in conflictsWithInlineStyleOfElement()
932 unsigned propertyCount = style->propertyCount(); in elementIsStyledSpanOrHTMLEquivalent() local
933 for (unsigned i = 0; i < propertyCount; ++i) { in elementIsStyledSpanOrHTMLEquivalent()
1115 unsigned propertyCount = style->propertyCount(); in mergeStyle() local
1116 for (unsigned i = 0; i < propertyCount; ++i) { in mergeStyle()
1168 unsigned propertyCount = m_mutableStyle->propertyCount(); in mergeStyleFromRulesForSerialization() local
[all …]
DReplaceSelectionCommand.cpp540 } else if (newInlineStyle->style()->propertyCount() != inlineStyle->propertyCount()) { in removeRedundantStylesAndKeepStyleSpanInline()
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DCSSPropertyMetadata.cpp.tmpl45 …nabledCSSPropertiesIntoVector(const CSSPropertyID* properties, size_t propertyCount, Vector<CSSPro…
47 for (unsigned i = 0; i < propertyCount; i++) {
/external/chromium_org/third_party/WebKit/Source/core/page/
DPageSerializer.cpp349 unsigned propertyCount = styleDeclaration->propertyCount(); in retrieveResourcesForProperties() local
350 for (unsigned i = 0; i < propertyCount; ++i) { in retrieveResourcesForProperties()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleSheet.cpp545 unsigned propertyCount = propertyData.size(); in verifyPropertyText() local
548 if (propertyCount < 2) in verifyPropertyText()
552 if (propertyData.at(propertyCount - 1).name != bogusPropertyName) in verifyPropertyText()
752 int propertyCount = sourcePropertyData ? sourcePropertyData->size() : 0; in newLineAndWhitespaceDelimiters() local
753 if (!propertyCount) { in newLineAndWhitespaceDelimiters()
772 while (propertyIndex < propertyCount) { in newLineAndWhitespaceDelimiters()
1130 unsigned propertyCount = propertyData.size(); in verifyRuleText() local
1133 if (propertyCount != 1) in verifyRuleText()
/external/chromium_org/third_party/WebKit/Source/core/animation/
DStringKeyframe.cpp37 for (unsigned i = 0; i < m_propertySet->propertyCount(); ++i) in properties()
/external/chromium_org/v8/src/
Dd8.js1255 result += value.propertyCount();
1259 for (var i = 0; i < value.propertyCount(); i++) {
1900 ProtocolValue.prototype.propertyCount = function() { method in ProtocolValue
1921 for (var i = 0; i < this.propertyCount(); i++) {
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
DSoapSerializationEnvelope.java184 int propertyCount = obj.getPropertyCount(); in readSerializable() local
187 for (int i = 0; i < propertyCount && !propertyFound; i++) { in readSerializable()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DObjectPropertiesSection.js789 WebInspector.ArrayGroupingTreeElement = function(object, fromIndex, toIndex, propertyCount) argument
798 this._propertyCount = propertyCount;
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
DCSSAnimations.cpp109 for (unsigned j = 0; j < properties.propertyCount(); j++) { in resolveKeyframes()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DElement.cpp2810 for (unsigned i = 0; i < style->propertyCount(); ++i) { in needsURLResolutionForInlineStyle()
2820 for (unsigned i = 0; i < style.propertyCount(); ++i) { in reResolveURLsInInlineStyle()
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DSerializedScriptValue.cpp1425 static bool shouldSerializeDensely(uint32_t length, uint32_t propertyCount) in shouldSerializeDensely() argument
1431 return 6 * propertyCount >= length; in shouldSerializeDensely()