OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ElementRecord
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/html/parser/
HTMLElementStack.h
53
class
ElementRecord
{
54
WTF_MAKE_NONCOPYABLE(
ElementRecord
);
56
~
ElementRecord
(); // Public for ~PassOwnPtr()
62
bool isAbove(
ElementRecord
*) const;
64
ElementRecord
* next() const { return m_next.get(); }
69
ElementRecord
(PassRefPtr<ContainerNode>, PassOwnPtr<
ElementRecord
>);
71
PassOwnPtr<
ElementRecord
> releaseNext() { return m_next.release(); }
72
void setNext(PassOwnPtr<
ElementRecord
> next) { m_next = next; }
75
OwnPtr<
ElementRecord
> m_next
[
all
...]
HTMLElementStack.cpp
134
HTMLElementStack::
ElementRecord
::
ElementRecord
(PassRefPtr<ContainerNode> node, PassOwnPtr<
ElementRecord
> next)
141
HTMLElementStack::
ElementRecord
::~
ElementRecord
()
145
void HTMLElementStack::
ElementRecord
::replaceElement(PassRefPtr<Element> element)
153
bool HTMLElementStack::
ElementRecord
::isAbove(
ElementRecord
* other) const
155
for (
ElementRecord
* below = next(); below; below = below->next()) {
327
void HTMLElementStack::insertAbove(PassRefPtr<Element> element,
ElementRecord
* recordBelow
[
all
...]
HTMLConstructionSite.h
72
PassRefPtr<Element> createHTMLElementFromElementRecord(HTMLElementStack::
ElementRecord
*);
HTMLTreeBuilder.h
177
HTMLElementStack::
ElementRecord
* furthestBlockForFormattingElement(Element*);
HTMLTreeBuilder.cpp
605
HTMLElementStack::
ElementRecord
* nodeRecord = m_tree.openElements()->topRecord();
[
all
...]
HTMLConstructionSite.cpp
385
PassRefPtr<Element> HTMLConstructionSite::createHTMLElementFromElementRecord(HTMLElementStack::
ElementRecord
* record)
470
HTMLElementStack::
ElementRecord
* lastTableElementRecord = m_openElements.topmost(tableTag.localName());
Completed in 121 milliseconds