This source file includes following definitions.
- end
- end
- length
- range
- range
- range
- toString
- hash
- trace
#include "config.h"
#include "core/css/CSSPropertySourceData.h"
#include "wtf/StaticConstructors.h"
#include "wtf/text/StringBuilder.h"
#include "wtf/text/StringHash.h"
namespace WebCore {
SourceRange::SourceRange()
: start(0)
, end(0)
{
}
SourceRange::SourceRange(unsigned start, unsigned end)
: start(start)
, end(end)
{
}
unsigned SourceRange::length() const
{
return end - start;
}
CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool disabled, bool parsedOk, const SourceRange& range)
: name(name)
, value(value)
, important(important)
, disabled(disabled)
, parsedOk(parsedOk)
, range(range)
{
}
CSSPropertySourceData::CSSPropertySourceData(const CSSPropertySourceData& other)
: name(other.name)
, value(other.value)
, important(other.important)
, disabled(other.disabled)
, parsedOk(other.parsedOk)
, range(other.range)
{
}
CSSPropertySourceData::CSSPropertySourceData()
: name("")
, value("")
, important(false)
, disabled(false)
, parsedOk(false)
, range(SourceRange(0, 0))
{
}
String CSSPropertySourceData::toString() const
{
DEFINE_STATIC_LOCAL(String, emptyValue, ("e"));
if (!name && value == emptyValue)
return String();
StringBuilder result;
if (disabled)
result.append("/* ");
result.append(name);
result.appendLiteral(": ");
result.append(value);
if (important)
result.appendLiteral(" !important");
result.append(';');
if (disabled)
result.append(" */");
return result.toString();
}
unsigned CSSPropertySourceData::hash() const
{
return StringHash::hash(name) + 3 * StringHash::hash(value) + 7 * important + 13 * parsedOk + 31;
}
void CSSRuleSourceData::trace(Visitor* visitor)
{
visitor->trace(ruleHeaderRange);
visitor->trace(ruleBodyRange);
visitor->trace(selectorRanges);
visitor->trace(styleSourceData);
visitor->trace(childRules);
}
}