OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_parentStack
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
SelectorFilter.h
48
bool parentStackIsEmpty() const { return
m_parentStack
.isEmpty(); }
49
bool parentStackIsConsistent(const ContainerNode* parentNode) const { return !
m_parentStack
.isEmpty() &&
m_parentStack
.last().element == parentNode; }
62
Vector<ParentStackFrame>
m_parentStack
;
SelectorFilter.cpp
55
ASSERT(
m_parentStack
.isEmpty() ||
m_parentStack
.last().element == parent.parentOrShadowHostElement());
56
ASSERT(!
m_parentStack
.isEmpty() || !parent.parentOrShadowHostElement());
57
m_parentStack
.append(ParentStackFrame(parent));
58
ParentStackFrame& parentFrame =
m_parentStack
.last();
69
ASSERT(!
m_parentStack
.isEmpty());
71
const ParentStackFrame& parentFrame =
m_parentStack
.last();
75
m_parentStack
.removeLast();
76
if (
m_parentStack
.isEmpty()) {
84
ASSERT(
m_parentStack
.isEmpty() == !m_ancestorIdentifierFilter)
[
all
...]
Completed in 426 milliseconds