OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_isSorted
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/xml/
XPathNodeSet.h
41
NodeSet() :
m_isSorted
(true), m_subtreesAreDisjoint(false) { }
48
void swap(NodeSet& other) { std::swap(
m_isSorted
, other.
m_isSorted
); std::swap(m_subtreesAreDisjoint, other.m_subtreesAreDisjoint); m_nodes.swap(other.m_nodes); }
62
void markSorted(bool isSorted) {
m_isSorted
= isSorted; }
63
bool isSorted() const { return
m_isSorted
|| m_nodes.size() < 2; }
67
// No node in the set is ancestor of another. Unlike
m_isSorted
, this is assumed to be false, unless the caller sets it to true.
76
bool
m_isSorted
;
XPathNodeSet.cpp
139
if (
m_isSorted
)
144
const_cast<bool&>(
m_isSorted
) = true;
Completed in 30 milliseconds