Searched refs:styleSourceData (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DCSSPropertySourceData.h92 RefPtr<CSSStyleSourceData> styleSourceData; member in struct:WebCore::CSSRuleSourceData
H A DCSSParser.h70 bool parseDeclaration(CSSMutableStyleDeclaration*, const String&, RefPtr<CSSStyleSourceData>* styleSourceData = 0);
H A DCSSParser.cpp234 m_currentRuleData->styleSourceData = CSSStyleSourceData::create();
517 bool CSSParser::parseDeclaration(CSSMutableStyleDeclaration* declaration, const String& string, RefPtr<CSSStyleSourceData>* styleSourceData) argument
524 if (styleSourceData) {
526 m_currentRuleData->styleSourceData = CSSStyleSourceData::create();
544 m_currentRuleData->styleSourceData->styleBodyRange.start = 0;
545 m_currentRuleData->styleSourceData->styleBodyRange.end = string.length();
546 for (Vector<CSSPropertySourceData>::iterator it = m_currentRuleData->styleSourceData->propertyData.begin(), endIt = m_currentRuleData->styleSourceData->propertyData.end(); it != endIt; ++it) {
552 if (styleSourceData) {
553 *styleSourceData
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInspectorStyleSheet.cpp170 result->setObject("range", buildSourceRangeObject(sourceData->styleSourceData->styleBodyRange));
274 propertyStart = sourceData->styleSourceData->styleBodyRange.end - sourceData->styleSourceData->styleBodyRange.start;
363 SourceRange& bodyRange = sourceData->styleSourceData->styleBodyRange;
424 Vector<CSSPropertySourceData>* sourcePropertyData = sourceData ? &(sourceData->styleSourceData->propertyData) : 0;
818 const SourceRange& bodyRange = sourceData->styleSourceData->styleBodyRange;
1017 unsigned bodyStart = sourceData->styleSourceData->styleBodyRange.start;
1018 unsigned bodyEnd = sourceData->styleSourceData->styleBodyRange.end;
1112 Vector<CSSPropertySourceData>& propertyData = ruleData->styleSourceData->propertyData;
1117 unsigned styleStart = ruleData->styleSourceData
[all...]

Completed in 64 milliseconds