OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DefinitionMap
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
CustomElement.h
77
class
DefinitionMap
{
78
WTF_MAKE_NONCOPYABLE(
DefinitionMap
);
80
DefinitionMap
() { }
81
~
DefinitionMap
() { }
91
static
DefinitionMap
& definitions();
CustomElementRegistry.h
62
typedef HashMap<CustomElementDescriptor, RefPtr<CustomElementDefinition> >
DefinitionMap
;
63
DefinitionMap
m_definitions;
CustomElement.cpp
143
void CustomElement::
DefinitionMap
::add(Element* element, PassRefPtr<CustomElementDefinition> definition)
146
DefinitionMap
::ElementDefinitionHashMap::AddResult result = m_definitions.add(element, definition);
150
void CustomElement::
DefinitionMap
::remove(Element* element)
155
CustomElementDefinition* CustomElement::
DefinitionMap
::get(Element* element)
157
DefinitionMap
::ElementDefinitionHashMap::const_iterator it = m_definitions.find(element);
162
CustomElement::
DefinitionMap
& CustomElement::definitions()
164
DEFINE_STATIC_LOCAL(
DefinitionMap
, map, ());
Completed in 69 milliseconds