OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_parentstack
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/css/
CSSStyleSelector.h
239
Vector<ParentStackFrame>
m_parentStack
;
CSSStyleSelector.cpp
623
ASSERT(
m_parentStack
.isEmpty() ||
m_parentStack
.last().element == parent->parentElement());
624
ASSERT(!
m_parentStack
.isEmpty() || !parent->parentElement());
625
m_parentStack
.append(ParentStackFrame(parent));
626
ParentStackFrame& parentFrame =
m_parentStack
.last();
637
ASSERT(!
m_parentStack
.isEmpty());
639
const ParentStackFrame& parentFrame =
m_parentStack
.last();
643
m_parentStack
.removeLast();
644
if (
m_parentStack
.isEmpty()) {
652
if (
m_parentStack
.isEmpty())
[
all
...]
Completed in 865 milliseconds