HomeSort by relevance Sort by last modified time
    Searched refs:InspectorStyleProperty (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.h 95 struct InspectorStyleProperty {
96 InspectorStyleProperty()
100 InspectorStyleProperty(CSSPropertySourceData sourceData, bool hasSource, bool disabled)
138 static unsigned disabledIndexByOrdinal(unsigned ordinal, bool canUseSubsequent, Vector<InspectorStyleProperty>& allProperties);
141 bool disableProperty(unsigned indexToDisable, Vector<InspectorStyleProperty>& allProperties);
142 bool enableProperty(unsigned indexToEnable, Vector<InspectorStyleProperty>& allProperties);
143 bool populateAllProperties(Vector<InspectorStyleProperty>* result) const;
146 bool replacePropertyInStyleText(const InspectorStyleProperty& property, const String& newText);
154 Vector<InspectorStyleProperty> m_disabledProperties;
InspectorStyleSheet.cpp 191 Vector<InspectorStyleProperty> allProperties;
220 InspectorStyleProperty& property = allProperties.at(index);
264 InspectorStyleProperty& property = allProperties.at(index);
315 Vector<InspectorStyleProperty> allProperties;
322 InspectorStyleProperty& property = allProperties.at(index);
336 unsigned InspectorStyle::disabledIndexByOrdinal(unsigned ordinal, bool canUseSubsequent, Vector<InspectorStyleProperty>& allProperties)
340 InspectorStyleProperty& property = allProperties.at(i);
368 bool InspectorStyle::disableProperty(unsigned indexToDisable, Vector<InspectorStyleProperty>& allProperties)
371 const InspectorStyleProperty& property = allProperties.at(indexToDisable);
373 InspectorStyleProperty disabledProperty(property)
    [all...]

Completed in 198 milliseconds