OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:parentTreeScope
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScope.h
55
TreeScope*
parentTreeScope
() const { return m_parentTreeScope; }
TreeScope.cpp
387
for (current = this; current; current = current->
parentTreeScope
())
389
for (current = &otherScope; current; current = current->
parentTreeScope
())
475
for (const TreeScope* current = &scope; current; current = current->
parentTreeScope
()) {
/external/chromium_org/third_party/WebKit/Source/core/events/
EventPath.cpp
215
return lastTreeScope.
parentTreeScope
() == ¤tTreeScope;
220
return currentTreeScope.
parentTreeScope
() == &lastTreeScope;
EventRetargeter.cpp
180
scope = scope->
parentTreeScope
();
/external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.h
115
Node*
parentTreeScope
(Node*, ExceptionState&);
Internals.idl
63
[RaisesException] Node
parentTreeScope
(Node node);
Internals.cpp
373
Node* Internals::
parentTreeScope
(Node* node, ExceptionState& exceptionState)
379
const TreeScope*
parentTreeScope
= node->treeScope().
parentTreeScope
();
380
return
parentTreeScope
?
parentTreeScope
->rootNode() : 0;
[
all
...]
Completed in 419 milliseconds