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

  /external/webkit/Source/WebCore/rendering/style/
QuotesData.h 29 class QuotesData : public RefCounted<QuotesData> {
31 virtual ~QuotesData();
32 static QuotesData* create(int stringCount);
36 bool operator==(const QuotesData&) const;
39 QuotesData(int stringCount) : length(stringCount) {}
QuotesData.cpp 22 #include "QuotesData.h"
26 QuotesData* QuotesData::create(int stringCount)
28 char* tmp = new char[sizeof(QuotesData)+sizeof(String)*stringCount];
31 new (tmp) QuotesData(stringCount);
33 new (tmp +sizeof(QuotesData) + sizeof(String)*i) String();
34 return reinterpret_cast<QuotesData*>(tmp);
37 bool QuotesData::operator==(const QuotesData& other) const
53 QuotesData::~QuotesData(
    [all...]

Completed in 20 milliseconds