Home
last modified time | relevance | path

Searched refs:XmlNode (Results 1 – 25 of 3768) sorted by relevance

12345678910>>...151

/dports/multimedia/assimp/assimp-5.1.3/code/AssetLib/X3D/
H A DX3DImporter.hpp277 void readHead(XmlNode &node);
279 void readScene(XmlNode &node);
290 void readArc2D(XmlNode &node);
293 void readDisk2D(XmlNode &node);
300 void readBox(XmlNode &node);
301 void readCone(XmlNode &node);
306 void readSphere(XmlNode &node);
334 void readInline(XmlNode &node);
351 void readColor(XmlNode &node);
363 void readNormal(XmlNode &node);
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/sys/system/configuration/
H A DHandlerBase.cs21 private static XmlNode GetAndRemoveAttribute(XmlNode node, string attrib, bool fRequired) { in GetAndRemoveAttribute()
42 … internal static XmlNode GetAndRemoveStringAttribute(XmlNode node, string attrib, ref string val) { in GetAndRemoveStringAttribute()
47 …internal static XmlNode GetAndRemoveRequiredStringAttribute(XmlNode node, string attrib, ref strin… in GetAndRemoveRequiredStringAttribute()
69 … internal static XmlNode GetAndRemoveBooleanAttribute(XmlNode node, string attrib, ref bool val) { in GetAndRemoveBooleanAttribute()
74 …internal static XmlNode GetAndRemoveRequiredBooleanAttribute(XmlNode node, string attrib, ref bool… in GetAndRemoveRequiredBooleanAttribute()
101 … internal static XmlNode GetAndRemoveIntegerAttribute(XmlNode node, string attrib, ref int val) { in GetAndRemoveIntegerAttribute()
106 …internal static XmlNode GetAndRemoveRequiredIntegerAttribute(XmlNode node, string attrib, ref int … in GetAndRemoveRequiredIntegerAttribute()
126 …internal static XmlNode GetAndRemovePositiveIntegerAttribute(XmlNode node, string attrib, ref int … in GetAndRemovePositiveIntegerAttribute()
132 …internal static XmlNode GetAndRemoveRequiredPositiveIntegerAttribute(XmlNode node, string attrib, … in GetAndRemoveRequiredPositiveIntegerAttribute()
158 … internal static XmlNode GetAndRemoveTypeAttribute(XmlNode node, string attrib, ref Type val) { in GetAndRemoveTypeAttribute()
[all …]
/dports/net-im/biboumi/biboumi-9.0/src/xmpp/
H A Dxmpp_stanza.cpp51 XmlNode::XmlNode(const std::string& name, XmlNode* parent): in XmlNode() function in XmlNode
65 XmlNode::XmlNode(const std::string& name): in XmlNode() function in XmlNode
66 XmlNode(name, nullptr) in XmlNode()
70 void XmlNode::delete_all_children() in delete_all_children()
110 const XmlNode* XmlNode::get_child(const std::string& name, const std::string& xmlns) const in get_child()
122 std::vector<const XmlNode*> res; in get_children()
131 XmlNode* XmlNode::add_child(std::unique_ptr<XmlNode> child) in add_child()
139 XmlNode* XmlNode::add_child(XmlNode&& child) in add_child()
145 XmlNode* XmlNode::add_child(const XmlNode& child) in add_child()
151 XmlNode* XmlNode::get_last_child() const in get_last_child()
[all …]
H A Dxmpp_stanza.hpp23 class XmlNode class
26 explicit XmlNode(const std::string& name, XmlNode* parent);
32 XmlNode(const XmlNode& node): in XmlNode() function in XmlNode
44 XmlNode(XmlNode&& node) = default;
45 XmlNode& operator=(const XmlNode&) = delete;
46 XmlNode& operator=(XmlNode&&) = delete;
48 ~XmlNode() = default;
91 XmlNode* add_child(std::unique_ptr<XmlNode> child);
92 XmlNode* add_child(XmlNode&& child);
93 XmlNode* add_child(const XmlNode& child);
[all …]
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/app/
H A DTemplateJig.java7 import com.lightcrafts.utils.xml.XmlNode;
30 XmlNode[] tools = getToolNodes(); in validate()
38 XmlNode[] nodes = getToolNodes(); in getToolNames()
40 for (XmlNode node : nodes) { in getToolNames()
63 private XmlNode[] getToolNodes() { in getToolNodes()
66 ArrayList<XmlNode> tools = new ArrayList<XmlNode>(); in getToolNodes()
67 for (XmlNode node : nodes) { in getToolNodes()
90 private XmlNode[] getRegionNodes() { in getRegionNodes()
93 ArrayList<XmlNode> tools = new ArrayList<XmlNode>(); in getRegionNodes()
94 for (XmlNode node : nodes) { in getRegionNodes()
[all …]
/dports/textproc/p5-XML-TinyXML/XML-TinyXML-0.34/
H A Dtxml.h105 } XmlNode; typedef
110 XmlNode *cNode;
126 XmlNode *XmlNextSibling(XmlNode *node);
133 XmlNode *XmlPrevSibling(XmlNode *node);
143 XmlNode *XmlCreateNode(char *name,char *val,XmlNode *parent);
156 char *XmlGetNodeValue(XmlNode *node);
161 void XmlDestroyNode(XmlNode *node);
168 XmlErr XmlAddChildNode(XmlNode *parent,XmlNode *child);
242 XmlNode *XmlGetChildNode(XmlNode *node,unsigned long index);
249 XmlNode *XmlGetChildNodeByName(XmlNode *node,char *name);
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Configuration/
H A DHandlerBase.cs33 private static XmlNode GetAndRemoveAttribute(XmlNode node, string attrib, bool fRequired) { in GetAndRemoveAttribute()
46 …private static XmlNode GetAndRemoveStringAttributeInternal(XmlNode node, string attrib, bool fRequ… in GetAndRemoveStringAttributeInternal()
55 … internal static XmlNode GetAndRemoveStringAttribute(XmlNode node, string attrib, ref string val) { in GetAndRemoveStringAttribute()
59 …internal static XmlNode GetAndRemoveRequiredStringAttribute(XmlNode node, string attrib, ref strin… in GetAndRemoveRequiredStringAttribute()
63 …internal static XmlNode GetAndRemoveNonEmptyStringAttribute(XmlNode node, string attrib, ref strin… in GetAndRemoveNonEmptyStringAttribute()
67 …internal static XmlNode GetAndRemoveRequiredNonEmptyStringAttribute(XmlNode node, string attrib, r… in GetAndRemoveRequiredNonEmptyStringAttribute()
83 …private static XmlNode GetAndRemoveBooleanAttributeInternal(XmlNode node, string attrib, bool fReq… in GetAndRemoveBooleanAttributeInternal()
102 … internal static XmlNode GetAndRemoveBooleanAttribute(XmlNode node, string attrib, ref bool val) { in GetAndRemoveBooleanAttribute()
141 …internal static XmlNode GetAndRemovePositiveIntegerAttribute(XmlNode node, string attrib, ref int … in GetAndRemovePositiveIntegerAttribute()
146 …private static XmlNode GetAndRemoveTypeAttributeInternal(XmlNode node, string attrib, bool fRequir… in GetAndRemoveTypeAttributeInternal()
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-core/source/utils/xml/
H A DXmlSerializer.cpp32 XmlNode::XmlNode(const XmlNode& other) : m_node(other.m_node), m_doc(other.m_doc) in XmlNode() function in XmlNode
36 XmlNode& XmlNode::operator=(const XmlNode& other) in operator =()
75 XmlNode XmlNode::NextNode() const in NextNode()
80 XmlNode XmlNode::NextNode(const char* name) const in NextNode()
85 XmlNode XmlNode::NextNode(const Aws::String& name) const in NextNode()
90 XmlNode XmlNode::FirstChild() const in FirstChild()
95 XmlNode XmlNode::FirstChild(const char* name) const in FirstChild()
100 XmlNode XmlNode::FirstChild(const Aws::String& name) const in FirstChild()
110 XmlNode XmlNode::Parent() const in Parent()
142 XmlNode XmlNode::CreateChildElement(const Aws::String& name) in CreateChildElement()
[all …]
/dports/math/casadi/casadi-3.5.5/casadi/core/
H A Dxml_node.cpp32 XmlNode::XmlNode() { in XmlNode() function in casadi::XmlNode
35 XmlNode::~XmlNode() { in ~XmlNode()
43 XmlNode& XmlNode::operator[](casadi_int i) { in operator []()
49 const XmlNode& XmlNode::operator[](casadi_int i) const { in operator []()
53 bool XmlNode::hasChild(const string& childname) const { in hasChild()
58 XmlNode& XmlNode::operator[](const string& childname) { in operator []()
71 const XmlNode& XmlNode::operator[](const string& childname) const { in operator []()
84 casadi_int XmlNode::size() const { in size()
88 const string& XmlNode::name() const { in name()
92 void XmlNode::setName(const string& name) { in setName()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/tests/XmlDocument/XmlNodeTests/InsertTests/
H A DTestHelper.cs14 public delegate XmlNode InsertFrontOrEnd(XmlNode parent, XmlNode newChild); in InsertFrontOrEnd()
17 … public delegate XmlNode InsertBeforeOrAfter(XmlNode parent, XmlNode newChild, XmlNode refChild); in InsertBeforeOrAfter()
42 public static XmlNode AppendChild(XmlNode parent, XmlNode newChild) in AppendChild()
49 public static XmlNode PrependChild(XmlNode parent, XmlNode newChild) in PrependChild()
56 public static XmlNode InsertBefore(XmlNode parent, XmlNode newChild, XmlNode refChild) in InsertBefore()
63 public static XmlNode InsertAfter(XmlNode parent, XmlNode newChild, XmlNode refChild) in InsertAfter()
104 public static void Verify(XmlNode parent, XmlNode child, XmlNode newChild) in Verify()
120 public static void Verify(XmlNode child, XmlNode newChild, InsertType insertType) in Verify()
142 public static void VerifySiblings(XmlNode refChild, XmlNode newChild, InsertType insertType) in VerifySiblings()
147 XmlNode prev = null; in VerifySiblings()
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-cloudfront/source/model/
H A DDistributionSummary.cpp82 XmlNode resultNode = xmlNode; in operator =()
86 XmlNode idNode = resultNode.FirstChild("Id"); in operator =()
92 XmlNode aRNNode = resultNode.FirstChild("ARN"); in operator =()
98 XmlNode statusNode = resultNode.FirstChild("Status"); in operator =()
116 XmlNode aliasesNode = resultNode.FirstChild("Aliases"); in operator =()
122 XmlNode originsNode = resultNode.FirstChild("Origins"); in operator =()
152 XmlNode commentNode = resultNode.FirstChild("Comment"); in operator =()
164 XmlNode enabledNode = resultNode.FirstChild("Enabled"); in operator =()
182 XmlNode webACLIdNode = resultNode.FirstChild("WebACLId"); in operator =()
222 XmlNode idNode = parentNode.CreateChildElement("Id"); in AddToNode()
[all …]
H A DDistributionConfig.cpp48 DistributionConfig::DistributionConfig(const XmlNode& xmlNode) : in DistributionConfig()
76 XmlNode resultNode = xmlNode; in operator =()
86 XmlNode aliasesNode = resultNode.FirstChild("Aliases"); in operator =()
98 XmlNode originsNode = resultNode.FirstChild("Origins"); in operator =()
128 XmlNode commentNode = resultNode.FirstChild("Comment"); in operator =()
134 XmlNode loggingNode = resultNode.FirstChild("Logging"); in operator =()
140 XmlNode priceClassNode = resultNode.FirstChild("PriceClass"); in operator =()
146 XmlNode enabledNode = resultNode.FirstChild("Enabled"); in operator =()
164 XmlNode webACLIdNode = resultNode.FirstChild("WebACLId"); in operator =()
187 void DistributionConfig::AddToNode(XmlNode& parentNode) const in AddToNode()
[all …]
/dports/multimedia/assimp/assimp-5.1.3/code/AssetLib/Collada/
H A DColladaParser.h87 void ReadContents(XmlNode &node);
90 void ReadStructure(XmlNode &node);
93 void ReadAssetInfo(XmlNode &node);
132 void ReadImageLibrary(XmlNode &node);
144 void ReadCameraLibrary(XmlNode &node);
150 void ReadLightLibrary(XmlNode &node);
156 void ReadEffectLibrary(XmlNode &node);
188 void ReadSource(XmlNode &node);
193 void ReadDataArray(XmlNode &node);
226 void ReadSceneLibrary(XmlNode &node);
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Dom/
H A DXmlNamedNodemap.cs13 internal XmlNode parent;
30 public virtual XmlNode SetNamedItem(XmlNode node) { in SetNamedItem()
99 XmlNode node = (XmlNode) nodes[i]; in FindNodeOffset()
111 XmlNode node = (XmlNode) nodes[i]; in FindNodeOffset()
120 internal virtual XmlNode AddNode( XmlNode node ) { in AddNode()
121 XmlNode oldParent; in AddNode()
141 internal virtual XmlNode AddNodeForLoad(XmlNode node, XmlDocument doc) { in AddNodeForLoad()
155 XmlNode oldNode = (XmlNode)nodes[i]; in RemoveNodeAt()
172 internal XmlNode ReplaceNodeAt( int i, XmlNode node ) { in ReplaceNodeAt()
178 internal virtual XmlNode InsertNodeAt( int i, XmlNode node ) { in InsertNodeAt()
[all …]
H A DXmlUnspecifiedAttribute.cs26 public override XmlNode CloneNode(bool deep) { in CloneNode()
42 public override XmlNode InsertBefore(XmlNode newChild, XmlNode refChild) { in InsertBefore()
43 XmlNode node = base.InsertBefore( newChild, refChild ); in InsertBefore()
48 public override XmlNode InsertAfter(XmlNode newChild, XmlNode refChild) { in InsertAfter()
49 XmlNode node = base.InsertAfter( newChild, refChild ); in InsertAfter()
54 public override XmlNode ReplaceChild(XmlNode newChild, XmlNode oldChild) { in ReplaceChild()
55 XmlNode node = base.ReplaceChild( newChild, oldChild ); in ReplaceChild()
60 public override XmlNode RemoveChild(XmlNode oldChild) { in RemoveChild()
61 XmlNode node = base.RemoveChild(oldChild); in RemoveChild()
66 public override XmlNode AppendChild(XmlNode newChild) { in AppendChild()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Dom/
H A DXmlNamedNodemap.cs12 internal XmlNode parent;
30 public virtual XmlNode SetNamedItem(XmlNode node) in SetNamedItem()
116 XmlNode node = (XmlNode)nodes[i]; in FindNodeOffset()
130 XmlNode node = (XmlNode)nodes[i]; in FindNodeOffset()
139 internal virtual XmlNode AddNode(XmlNode node) in AddNode()
141 XmlNode oldParent; in AddNode()
161 internal virtual XmlNode AddNodeForLoad(XmlNode node, XmlDocument doc) in AddNodeForLoad()
179 XmlNode oldNode = (XmlNode)nodes[i]; in RemoveNodeAt()
196 internal XmlNode ReplaceNodeAt(int i, XmlNode node) in ReplaceNodeAt()
203 internal virtual XmlNode InsertNodeAt(int i, XmlNode node) in InsertNodeAt()
[all …]
H A DXmlUnspecifiedAttribute.cs23 public override XmlNode CloneNode(bool deep) in CloneNode()
42 public override XmlNode InsertBefore(XmlNode newChild, XmlNode refChild) in InsertBefore()
44 XmlNode node = base.InsertBefore(newChild, refChild); in InsertBefore()
49 public override XmlNode InsertAfter(XmlNode newChild, XmlNode refChild) in InsertAfter()
51 XmlNode node = base.InsertAfter(newChild, refChild); in InsertAfter()
56 public override XmlNode ReplaceChild(XmlNode newChild, XmlNode oldChild) in ReplaceChild()
58 XmlNode node = base.ReplaceChild(newChild, oldChild); in ReplaceChild()
63 public override XmlNode RemoveChild(XmlNode oldChild) in RemoveChild()
65 XmlNode node = base.RemoveChild(oldChild); in RemoveChild()
70 public override XmlNode AppendChild(XmlNode newChild) in AppendChild()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Configuration.ConfigurationManager/src/System/Configuration/
H A DHandlerBase.cs16 private static XmlNode GetAndRemoveAttribute(XmlNode node, string attrib, bool fRequired) in GetAndRemoveAttribute()
18 XmlNode a = node.Attributes.RemoveNamedItem(attrib); in GetAndRemoveAttribute()
31 …private static XmlNode GetAndRemoveStringAttributeInternal(XmlNode node, string attrib, bool fRequ… in GetAndRemoveStringAttributeInternal()
33 XmlNode a = GetAndRemoveAttribute(node, attrib, fRequired); in GetAndRemoveStringAttributeInternal()
40 … internal static XmlNode GetAndRemoveStringAttribute(XmlNode node, string attrib, ref string val) in GetAndRemoveStringAttribute()
46 …private static XmlNode GetAndRemoveBooleanAttributeInternal(XmlNode node, string attrib, bool fReq… in GetAndRemoveBooleanAttributeInternal()
66 … internal static XmlNode GetAndRemoveBooleanAttribute(XmlNode node, string attrib, ref bool val) in GetAndRemoveBooleanAttribute()
72 …private static XmlNode GetAndRemoveIntegerAttributeInternal(XmlNode node, string attrib, bool fReq… in GetAndRemoveIntegerAttributeInternal()
98 … internal static XmlNode GetAndRemoveIntegerAttribute(XmlNode node, string attrib, ref int val) in GetAndRemoveIntegerAttribute()
154 internal static void CheckForNonElement(XmlNode node) in CheckForNonElement()
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-s3control/source/model/
H A DJobDescriptor.cpp47 JobDescriptor::JobDescriptor(const XmlNode& xmlNode) : in JobDescriptor()
72 JobDescriptor& JobDescriptor::operator =(const XmlNode& xmlNode) in operator =()
74 XmlNode resultNode = xmlNode; in operator =()
78 XmlNode jobIdNode = resultNode.FirstChild("JobId"); in operator =()
96 XmlNode jobArnNode = resultNode.FirstChild("JobArn"); in operator =()
102 XmlNode statusNode = resultNode.FirstChild("Status"); in operator =()
108 XmlNode manifestNode = resultNode.FirstChild("Manifest"); in operator =()
120 XmlNode priorityNode = resultNode.FirstChild("Priority"); in operator =()
150 XmlNode reportNode = resultNode.FirstChild("Report"); in operator =()
168 XmlNode roleArnNode = resultNode.FirstChild("RoleArn"); in operator =()
[all …]
H A DS3CopyObjectOperation.cpp51 S3CopyObjectOperation::S3CopyObjectOperation(const XmlNode& xmlNode) : in S3CopyObjectOperation()
82 XmlNode resultNode = xmlNode; in operator =()
86 XmlNode targetResourceNode = resultNode.FirstChild("TargetResource"); in operator =()
128 XmlNode newObjectTaggingNode = resultNode.FirstChild("NewObjectTagging"); in operator =()
140 XmlNode redirectLocationNode = resultNode.FirstChild("RedirectLocation"); in operator =()
146 XmlNode requesterPaysNode = resultNode.FirstChild("RequesterPays"); in operator =()
152 XmlNode storageClassNode = resultNode.FirstChild("StorageClass"); in operator =()
164 XmlNode sSEAwsKmsKeyIdNode = resultNode.FirstChild("SSEAwsKmsKeyId"); in operator =()
170 XmlNode targetKeyPrefixNode = resultNode.FirstChild("TargetKeyPrefix"); in operator =()
182 XmlNode objectLockModeNode = resultNode.FirstChild("ObjectLockMode"); in operator =()
[all …]
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/DAEValidator/library/src/
H A DXmlNode.cpp15 XmlNode::XmlNode(xmlNodePtr node) in XmlNode() function in opencollada::XmlNode
19 XmlNode::operator bool() const in operator bool()
24 bool XmlNode::operator == (const XmlNode & other) const in operator ==()
29 bool XmlNode::operator != (const XmlNode & other) const in operator !=()
34 XmlDoc & XmlNode::doc() const in doc()
39 XmlNode XmlNode::child(const string & name) const in child()
46 return XmlNode(node); in child()
49 return XmlNode(); in child()
52 XmlNode XmlNode::firstChild() const in firstChild()
117 XmlNode XmlNode::next(const string & name) const in next()
[all …]
/dports/devel/upp/upp/uppsrc/Core/src.tpp/
H A DXmlNode_en-us.tpp1 topic "XmlNode";
15 [s1;:XmlNode`:`:class: [@(0.0.255)3 class][3 _][*3 XmlNode]&]
28 [s5;:XmlNode`:`:Void`(`): [@(0.0.255) static] [@(0.0.255) const]_[_^XmlNode^ XmlNode][@(0.0.255) `&
111 [s5;:XmlNode`:`:At`(int`): [_^XmlNode^ XmlNode][@(0.0.255) `&]_[* At]([@(0.0.255) int]_[*@3 i])
118 [s5;:XmlNode`:`:Node`(int`)const: [@(0.0.255) const]_[_^XmlNode^ XmlNode][@(0.0.255) `&]_[* N
130 [s5;:XmlNode`:`:operator`[`]`(const char`*`)const: [@(0.0.255) const]_[_^XmlNode^ XmlNode
137 [s5;:XmlNode`:`:Add`(`): [_^XmlNode^ XmlNode][@(0.0.255) `&]_[* Add]()&]
165 [s5;:XmlNode`:`:operator`(`)`(const char`*`): [_^XmlNode^ XmlNode][@(0.0.255) `&]_[* operat
209 [s5;:XmlNode`:`:SetAttr`(const char`*`,const String`&`): [_^XmlNode^ XmlNode][@(0.0.255) `&
222 [s5;:XmlNode`:`:SetAttr`(const char`*`,int`): [_^XmlNode^ XmlNode][@(0.0.255) `&]_[* SetAtt
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DAssociationMap.java45 public final class AssociationMap<XmlNode> {
46 final static class Entry<XmlNode> {
48 private XmlNode element;
54 public XmlNode element() { in element()
65 …private final Map<XmlNode,Entry<XmlNode>> byElement = new IdentityHashMap<XmlNode,Entry<XmlNode>>(…
66 private final Map<Object,Entry<XmlNode>> byPeer = new IdentityHashMap<Object,Entry<XmlNode>>();
67 private final Set<XmlNode> usedNodes = new HashSet<XmlNode>();
77 e = new Entry<XmlNode>(); in addInner()
101 e = new Entry<XmlNode>(); in addOuter()
118 public void addUsed( XmlNode n ) { in addUsed()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DAssociationMap.java45 public final class AssociationMap<XmlNode> {
46 final static class Entry<XmlNode> {
48 private XmlNode element;
54 public XmlNode element() { in element()
65 …private final Map<XmlNode,Entry<XmlNode>> byElement = new IdentityHashMap<XmlNode,Entry<XmlNode>>(…
66 private final Map<Object,Entry<XmlNode>> byPeer = new IdentityHashMap<Object,Entry<XmlNode>>();
67 private final Set<XmlNode> usedNodes = new HashSet<XmlNode>();
77 e = new Entry<XmlNode>(); in addInner()
101 e = new Entry<XmlNode>(); in addOuter()
118 public void addUsed( XmlNode n ) { in addUsed()
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-route53/source/model/
H A DHealthCheckConfig.cpp55 HealthCheckConfig::HealthCheckConfig(const XmlNode& xmlNode) : in HealthCheckConfig()
90 XmlNode resultNode = xmlNode; in operator =()
94 XmlNode iPAddressNode = resultNode.FirstChild("IPAddress"); in operator =()
100 XmlNode portNode = resultNode.FirstChild("Port"); in operator =()
106 XmlNode typeNode = resultNode.FirstChild("Type"); in operator =()
148 XmlNode invertedNode = resultNode.FirstChild("Inverted"); in operator =()
154 XmlNode disabledNode = resultNode.FirstChild("Disabled"); in operator =()
184 XmlNode regionsNode = resultNode.FirstChild("Regions"); in operator =()
219 void HealthCheckConfig::AddToNode(XmlNode& parentNode) const in AddToNode()
230 XmlNode portNode = parentNode.CreateChildElement("Port"); in AddToNode()
[all …]

12345678910>>...151