OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:expected_node
(Results
1 - 8
of
8
) sorted by null
/external/google-breakpad/src/testing/gtest/test/
gtest_xml_test_utils.py
51
def AssertEquivalentNodes(self,
expected_node
, actual_node):
54
expected_node
(another DOM node object), in that either both of
58
* It has the same tag name as
expected_node
.
59
* It has the same set of attributes as
expected_node
, each with
60
the same value as the corresponding attribute of
expected_node
.
65
CDATA sections) as
expected_node
. Note that we ignore the
70
if
expected_node
.nodeType == Node.CDATA_SECTION_NODE:
72
self.assertEquals(
expected_node
.nodeValue, actual_node.nodeValue)
76
self.assertEquals(Node.ELEMENT_NODE,
expected_node
.nodeType)
77
self.assertEquals(
expected_node
.tagName, actual_node.tagName
[
all
...]
/external/googletest/googletest/test/
gtest_xml_test_utils.py
51
def AssertEquivalentNodes(self,
expected_node
, actual_node):
54
expected_node
(another DOM node object), in that either both of
58
* It has the same tag name as
expected_node
.
59
* It has the same set of attributes as
expected_node
, each with
60
the same value as the corresponding attribute of
expected_node
.
65
CDATA sections) as
expected_node
. Note that we ignore the
70
if
expected_node
.nodeType == Node.CDATA_SECTION_NODE:
72
self.assertEquals(
expected_node
.nodeValue, actual_node.nodeValue)
76
self.assertEquals(Node.ELEMENT_NODE,
expected_node
.nodeType)
77
self.assertEquals(
expected_node
.tagName, actual_node.tagName
[
all
...]
/external/protobuf/gtest/test/
gtest_xml_test_utils.py
51
def AssertEquivalentNodes(self,
expected_node
, actual_node):
54
expected_node
(another DOM node object), in that either both of
58
* It has the same tag name as
expected_node
.
59
* It has the same set of attributes as
expected_node
, each with
60
the same value as the corresponding attribute of
expected_node
.
64
CDATA sections) as
expected_node
. Note that we ignore the
69
if
expected_node
.nodeType == Node.CDATA_SECTION_NODE:
71
self.assertEquals(
expected_node
.nodeValue, actual_node.nodeValue)
75
self.assertEquals(Node.ELEMENT_NODE,
expected_node
.nodeType)
76
self.assertEquals(
expected_node
.tagName, actual_node.tagName
[
all
...]
/external/v8/testing/gtest/test/
gtest_xml_test_utils.py
51
def AssertEquivalentNodes(self,
expected_node
, actual_node):
54
expected_node
(another DOM node object), in that either both of
58
* It has the same tag name as
expected_node
.
59
* It has the same set of attributes as
expected_node
, each with
60
the same value as the corresponding attribute of
expected_node
.
65
CDATA sections) as
expected_node
. Note that we ignore the
70
if
expected_node
.nodeType == Node.CDATA_SECTION_NODE:
72
self.assertEquals(
expected_node
.nodeValue, actual_node.nodeValue)
76
self.assertEquals(Node.ELEMENT_NODE,
expected_node
.nodeType)
77
self.assertEquals(
expected_node
.tagName, actual_node.tagName
[
all
...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_xml_test_utils.py
51
def AssertEquivalentNodes(self,
expected_node
, actual_node):
54
expected_node
(another DOM node object), in that either both of
58
* It has the same tag name as
expected_node
.
59
* It has the same set of attributes as
expected_node
, each with
60
the same value as the corresponding attribute of
expected_node
.
65
CDATA sections) as
expected_node
. Note that we ignore the
70
if
expected_node
.nodeType == Node.CDATA_SECTION_NODE:
72
self.assertEquals(
expected_node
.nodeValue, actual_node.nodeValue)
76
self.assertEquals(Node.ELEMENT_NODE,
expected_node
.nodeType)
77
self.assertEquals(
expected_node
.tagName, actual_node.tagName
[
all
...]
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest_xml_test_utils.py
51
def AssertEquivalentNodes(self,
expected_node
, actual_node):
54
expected_node
(another DOM node object), in that either both of
58
* It has the same tag name as
expected_node
.
59
* It has the same set of attributes as
expected_node
, each with
60
the same value as the corresponding attribute of
expected_node
.
65
CDATA sections) as
expected_node
. Note that we ignore the
70
if
expected_node
.nodeType == Node.CDATA_SECTION_NODE:
72
self.assertEquals(
expected_node
.nodeValue, actual_node.nodeValue)
76
self.assertEquals(Node.ELEMENT_NODE,
expected_node
.nodeType)
77
self.assertEquals(
expected_node
.tagName, actual_node.tagName
[
all
...]
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
gtest_xml_test_utils.py
51
def AssertEquivalentNodes(self,
expected_node
, actual_node):
54
expected_node
(another DOM node object), in that either both of
58
* It has the same tag name as
expected_node
.
59
* It has the same set of attributes as
expected_node
, each with
60
the same value as the corresponding attribute of
expected_node
.
65
CDATA sections) as
expected_node
. Note that we ignore the
70
if
expected_node
.nodeType == Node.CDATA_SECTION_NODE:
72
self.assertEquals(
expected_node
.nodeValue, actual_node.nodeValue)
76
self.assertEquals(Node.ELEMENT_NODE,
expected_node
.nodeType)
77
self.assertEquals(
expected_node
.tagName, actual_node.tagName
[
all
...]
/external/webrtc/webrtc/libjingle/xmpp/
pubsubtasks.cc
27
const std::string&
expected_node
) {
43
return (actual_node ==
expected_node
);
Completed in 4025 milliseconds