OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ElementRecord
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLElementStack.h
52
class
ElementRecord
{
53
WTF_MAKE_NONCOPYABLE(
ElementRecord
); WTF_MAKE_FAST_ALLOCATED;
55
~
ElementRecord
(); // Public for ~PassOwnPtr()
63
bool isAbove(
ElementRecord
*) const;
65
ElementRecord
* next() const { return m_next.get(); }
69
ElementRecord
(PassRefPtr<HTMLStackItem>, 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
125
HTMLElementStack::
ElementRecord
::
ElementRecord
(PassRefPtr<HTMLStackItem> item, PassOwnPtr<
ElementRecord
> next)
132
HTMLElementStack::
ElementRecord
::~
ElementRecord
()
136
void HTMLElementStack::
ElementRecord
::replaceElement(PassRefPtr<HTMLStackItem> item)
144
bool HTMLElementStack::
ElementRecord
::isAbove(
ElementRecord
* other) const
146
for (
ElementRecord
* below = next(); below; below = below->next()) {
350
void HTMLElementStack::insertAbove(PassRefPtr<HTMLStackItem> item,
ElementRecord
* recordBelow
[
all
...]
Completed in 321 milliseconds