OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NodeSetValue
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/xml/
XPathValue.cpp
72
m_type =
NodeSetValue
;
79
case
NodeSetValue
:
95
case
NodeSetValue
:
127
case
NodeSetValue
:
XPathPath.h
49
virtual Value::Type resultType() const OVERRIDE { return Value::
NodeSetValue
; }
68
virtual Value::Type resultType() const OVERRIDE { return Value::
NodeSetValue
; }
83
virtual Value::Type resultType() const OVERRIDE { return Value::
NodeSetValue
; }
XPathValue.h
61
enum Type {
NodeSetValue
, BooleanValue, NumberValue, StringValue };
69
Value(const NodeSet& value) : m_type(
NodeSetValue
), m_bool(false), m_number(0), m_data(ValueData::create(value)) { }
70
Value(Node* value) : m_type(
NodeSetValue
), m_bool(false), m_number(0), m_data(ValueData::create()) { m_data->nodeSet().append(value); }
78
Value(PassOwnPtrWillBeRawPtr<NodeSet> value, const AdoptTag&) : m_type(
NodeSetValue
), m_bool(false), m_number(0), m_data(ValueData::create(value)) { }
82
bool isNodeSet() const { return m_type ==
NodeSetValue
; }
XPathPredicate.h
110
virtual Value::Type resultType() const OVERRIDE { return Value::
NodeSetValue
; }
XPathResult.cpp
55
case Value::
NodeSetValue
:
XPathFunctions.cpp
96
virtual Value::Type resultType() const OVERRIDE { return Value::
NodeSetValue
; }
Completed in 1277 milliseconds