OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ShareableElementData
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
ElementDataCache.h
41
class
ShareableElementData
;
48
PassRefPtrWillBeRawPtr<
ShareableElementData
> cachedShareableElementDataWithAttributes(const Vector<Attribute>&);
55
typedef WillBeHeapHashMap<unsigned, RefPtrWillBeMember<
ShareableElementData
>, AlreadyHashed> ShareableElementDataCache;
ElementData.cpp
49
return sizeof(
ShareableElementData
) + sizeof(Attribute) * count;
88
toShareableElementData(this)->~
ShareableElementData
();
139
ShareableElementData
::
ShareableElementData
(const Vector<Attribute>& attributes)
146
ShareableElementData
::~
ShareableElementData
()
152
ShareableElementData
::
ShareableElementData
(const UniqueElementData& other)
165
PassRefPtrWillBeRawPtr<
ShareableElementData
>
ShareableElementData
::createWithAttributes(const Vector<Attribute>& attributes
[
all
...]
ElementData.h
43
class
ShareableElementData
;
103
friend class
ShareableElementData
;
127
class
ShareableElementData
FINAL : public ElementData {
129
static PassRefPtrWillBeRawPtr<
ShareableElementData
> createWithAttributes(const Vector<Attribute>&);
131
explicit
ShareableElementData
(const Vector<Attribute>&);
132
explicit
ShareableElementData
(const UniqueElementData&);
133
~
ShareableElementData
();
137
// Add support for placement new as
ShareableElementData
is not allocated
152
DEFINE_ELEMENT_DATA_TYPE_CASTS(
ShareableElementData
, !data->isUnique(), !data.isUnique());
167
PassRefPtrWillBeRawPtr<
ShareableElementData
> makeShareableCopy() const
[
all
...]
ElementDataCache.cpp
41
inline bool hasSameAttributes(const Vector<Attribute>& attributes,
ShareableElementData
& elementData)
48
PassRefPtrWillBeRawPtr<
ShareableElementData
> ElementDataCache::cachedShareableElementDataWithAttributes(const Vector<Attribute>& attributes)
56
return
ShareableElementData
::createWithAttributes(attributes);
59
it->value =
ShareableElementData
::createWithAttributes(attributes);
Element.cpp
[
all
...]
Completed in 78 milliseconds