OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ElementShadow
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ElementShadow.h
42
class
ElementShadow
{
43
WTF_MAKE_NONCOPYABLE(
ElementShadow
); WTF_MAKE_FAST_ALLOCATED;
45
static PassOwnPtr<
ElementShadow
> create();
46
~
ElementShadow
();
51
ElementShadow
* containingShadow() const;
77
ElementShadow
();
101
inline Element*
ElementShadow
::host() const
116
if (
ElementShadow
* shadow = this->shadow())
121
inline
ElementShadow
*
ElementShadow
::containingShadow() cons
[
all
...]
ElementShadow.cpp
28
#include "core/dom/shadow/
ElementShadow
.h"
44
void distributeTo(InsertionPoint*,
ElementShadow
*);
81
void DistributionPool::distributeTo(InsertionPoint* insertionPoint,
ElementShadow
*
elementShadow
)
94
elementShadow
->didDistributeNode(node, insertionPoint);
102
elementShadow
->didDistributeNode(fallbackNode, insertionPoint);
123
PassOwnPtr<
ElementShadow
>
ElementShadow
::create()
125
return adoptPtr(new
ElementShadow
());
128
ElementShadow
::ElementShadow(
[
all
...]
Completed in 119 milliseconds