OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_selectorArray
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelectorList.h
38
CSSSelectorList() :
m_selectorArray
(0) { }
46
bool isValid() const { return !!
m_selectorArray
; }
47
const CSSSelector* first() const { return
m_selectorArray
; }
49
bool hasOneSelector() const { return
m_selectorArray
&& !next(
m_selectorArray
); }
50
const CSSSelector* selectorAt(size_t index) const { return &
m_selectorArray
[index]; }
58
return current -
m_selectorArray
;
77
CSSSelector*
m_selectorArray
;
CSSSelectorList.cpp
43
m_selectorArray
= reinterpret_cast<CSSSelector*>(fastMalloc(sizeof(CSSSelector) * otherLength));
45
new (&
m_selectorArray
[i]) CSSSelector(other.
m_selectorArray
[i]);
51
m_selectorArray
= list.
m_selectorArray
;
52
list.
m_selectorArray
= 0;
64
m_selectorArray
= reinterpret_cast<CSSSelector*>(fastMalloc(sizeof(CSSSelector) * flattenedSize));
69
// Move item from the parser selector vector into
m_selectorArray
without invoking destructor (Ugh.)
71
memcpy(&
m_selectorArray
[arrayIndex], currentSelector, sizeof(CSSSelector));
75
ASSERT(!
m_selectorArray
[arrayIndex].isLastInSelectorList())
[
all
...]
Completed in 67 milliseconds