Home
last modified time | relevance | path

Searched refs:foundPropertyIndex (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DStylePropertySet.cpp120 int foundPropertyIndex = findPropertyIndex(propertyID); in getPropertyCSSValue() local
121 if (foundPropertyIndex == -1) in getPropertyCSSValue()
123 return propertyAt(foundPropertyIndex).value(); in getPropertyCSSValue()
171 int foundPropertyIndex = findPropertyIndex(propertyID); in removeProperty() local
172 if (foundPropertyIndex == -1) { in removeProperty()
179 *returnText = propertyAt(foundPropertyIndex).value()->cssText(); in removeProperty()
183 m_propertyVector.remove(foundPropertyIndex); in removeProperty()
192 int foundPropertyIndex = findPropertyIndex(prefixingVariantForPropertyId(propertyID)); in removePrefixedOrUnprefixedProperty() local
193 if (foundPropertyIndex == -1) in removePrefixedOrUnprefixedProperty()
195 m_propertyVector.remove(foundPropertyIndex); in removePrefixedOrUnprefixedProperty()
[all …]
DStylePropertySerializer.cpp420 int foundPropertyIndex = m_propertySet.findPropertyIndex(propertyID); in appendFontLonghandValueIfExplicit() local
421 if (foundPropertyIndex == -1) in appendFontLonghandValueIfExplicit()
424 if (m_propertySet.propertyAt(foundPropertyIndex).isImplicit()) { in appendFontLonghandValueIfExplicit()
447 String value = m_propertySet.propertyAt(foundPropertyIndex).value()->cssText(); in appendFontLonghandValueIfExplicit()