Home
last modified time | relevance | path

Searched refs:newChild (Results 1 – 25 of 1899) sorted by relevance

12345678910>>...76

/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_dependencies/xerces-c/src/xercesc/dom/impl/
H A DDOMParentNode.cpp64 return insertBefore(newChild, 0); in appendChild()
141 if(newChild==NULL) in insertBefore()
153 if(newChild->hasChildNodes()) { in insertBefore()
158 treeSafe=(newChild!=a); in insertBefore()
170 return newChild; in insertBefore()
219 fFirstChild = newChild; in insertBefore()
239 fFirstChild = newChild; in insertBefore()
267 return newChild; in insertBefore()
345 insertBefore(newChild, oldChild); in replaceChild()
382 fFirstChild = newChild; in appendChildFast()
[all …]
/dports/textproc/xerces-c3/xerces-c-3.2.3/src/xercesc/dom/impl/
H A DDOMParentNode.cpp91 return insertBefore(newChild, 0); in appendChild()
168 if(newChild==NULL) in insertBefore()
180 if(newChild->hasChildNodes()) { in insertBefore()
185 treeSafe=(newChild!=a); in insertBefore()
197 return newChild; in insertBefore()
246 fFirstChild = newChild; in insertBefore()
266 fFirstChild = newChild; in insertBefore()
294 return newChild; in insertBefore()
372 insertBefore(newChild, oldChild); in replaceChild()
409 fFirstChild = newChild; in appendChildFast()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/tests/XmlDocument/XmlNodeTests/InsertTests/
H A DTestHelper.cs45 Assert.NotNull(newChild); in AppendChild()
46 return parent.AppendChild(newChild); in AppendChild()
52 Assert.NotNull(newChild); in PrependChild()
53 return parent.PrependChild(newChild); in PrependChild()
59 Assert.NotNull(newChild); in InsertBefore()
66 Assert.NotNull(newChild); in InsertAfter()
108 Assert.NotNull(newChild); in Verify()
123 Assert.NotNull(newChild); in Verify()
145 Assert.NotNull(newChild); in VerifySiblings()
154 prev = newChild; in VerifySiblings()
[all …]
/dports/textproc/domc/domc-0.8.0/src/
H A Dnode.c282 return newChild; in DOM_Node_insertBefore()
284 if (INVALID_HIER_REQ(node, newChild) || _isAncestor(newChild, node)) { in DOM_Node_insertBefore()
303 node->lastChild = newChild; in DOM_Node_insertBefore()
335 return newChild; in DOM_Node_insertBefore()
387 if (INVALID_HIER_REQ(node, newChild) || _isAncestor(newChild, node)) { in DOM_Node_replaceChild()
413 newChild->previousSibling->nextSibling = newChild; in DOM_Node_replaceChild()
416 newChild->nextSibling->previousSibling = newChild; in DOM_Node_replaceChild()
503 return newChild; in DOM_Node_appendChild()
505 if (INVALID_HIER_REQ(node, newChild) || _isAncestor(newChild, node)) { in DOM_Node_appendChild()
524 node->lastChild = newChild; in DOM_Node_appendChild()
[all …]
/dports/misc/visp/visp-3.4.0/3rdparty/atidaq/
H A Dnode.c93 e->node = newChild; in NodeList_insert()
142 e->node = newChild; in NodeList_replace()
193 e->node = newChild; in NodeList_append()
431 return newChild; in DOM_Node_insertBefore()
445 node->lastChild = newChild; in DOM_Node_insertBefore()
464 return newChild; in DOM_Node_insertBefore()
529 newChild->previousSibling->nextSibling = newChild; in DOM_Node_replaceChild()
532 newChild->nextSibling->previousSibling = newChild; in DOM_Node_replaceChild()
623 return newChild; in DOM_Node_appendChild()
639 node->lastChild = newChild; in DOM_Node_appendChild()
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/Tools/Wings3DExporter/
H A Dio3d_ogre.py29 self.materials_elem = mesh_elem.newChild(None, "materials", None)
31 self.submeshes_elem = mesh_elem.newChild(None, "submeshes", None)
48 ambient_elem = material_elem.newChild(None, "ambient", None)
51 diffuse_elem = material_elem.newChild(None, "diffuse", None)
54 specular_elem = material_elem.newChild(None, "specular", None)
62 tex_elem = texs_elem.newChild(None, "texturelayer", None)
71 vb_elem = geometry_elem.newChild(None, "vertexbuffer", None)
83 vertex_elem = vb_elem.newChild(None, "vertex", None)
88 normal_elem = vertex_elem.newChild(None, "normal", None)
101 faces_elem = submesh_elem.newChild(None, "faces", None)
[all …]
/dports/graphics/ogre3d/ogre-1.11.6/Tools/Wings3DExporter/
H A Dio3d_ogre.py29 self.materials_elem = mesh_elem.newChild(None, "materials", None)
31 self.submeshes_elem = mesh_elem.newChild(None, "submeshes", None)
48 ambient_elem = material_elem.newChild(None, "ambient", None)
51 diffuse_elem = material_elem.newChild(None, "diffuse", None)
54 specular_elem = material_elem.newChild(None, "specular", None)
62 tex_elem = texs_elem.newChild(None, "texturelayer", None)
71 vb_elem = geometry_elem.newChild(None, "vertexbuffer", None)
83 vertex_elem = vb_elem.newChild(None, "vertex", None)
88 normal_elem = vertex_elem.newChild(None, "normal", None)
101 faces_elem = submesh_elem.newChild(None, "faces", None)
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/
H A DCounterNode.cpp237 ASSERT(newChild); in insertAfter()
238 ASSERT(!newChild->m_parent); in insertAfter()
243 if (newChild->m_hasResetType) { in insertAfter()
255 m_firstChild = newChild; in insertAfter()
258 newChild->m_parent = this; in insertAfter()
261 if (!newChild->m_firstChild || newChild->m_hasResetType) { in insertAfter()
271 newChild->m_countInParent = newChild->computeCountInParent(); in insertAfter()
304 newChild->m_firstChild = 0; in insertAfter()
305 newChild->m_lastChild = 0; in insertAfter()
306 newChild->m_countInParent = newChild->computeCountInParent(); in insertAfter()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/auto/xmlpatternssdk/
H A DDebugExpressionFactory.cpp144 ASTItem *newChild = 0; in processTreePass() local
155 newChild = new ASTItem(m_ast, QLatin1String("Type Check")); in processTreePass()
180 Q_ASSERT(newChild); in processTreePass()
181 m_ast->appendChild(newChild); in processTreePass()
182 newChild->appendChild(buildASTTree(expr, newChild, QPatternist::SequenceType::Ptr())); in processTreePass()
219 m_ast->appendChild(newChild); in processTemplateRule()
221newChild->appendChild(buildASTTree(pattern->matchPattern(), newChild, QPatternist::SequenceType::P… in processTemplateRule()
222 newChild->appendChild(buildASTTree(body, newChild, QPatternist::SequenceType::Ptr())); in processTemplateRule()
251 ASTItem *const newChild = new ASTItem(m_ast, QLatin1String(title) in processNamedTemplate() local
255 m_ast->appendChild(newChild); in processNamedTemplate()
[all …]
/dports/textproc/p5-SVG/SVG-2.86/lib/SVG/
H A DDOM.pm408 my ( $self, $newChild, $refChild ) = @_;
434 my ( $self, $newChild ) = @_;
443 my ( $self, $newChild ) = @_;
455 $self->removeChild($newChild) if $newChild->{-parent} eq $self;
551 my ( $self, $newChild, $index ) = @_;
558 weaken( $newChild->{-docref} );
559 $newChild->{-parent} = $self;
560 weaken( $newChild->{-parent} );
563 if ( defined( $newChild->{id} ) ) {
564 $self->{-docref}->{-idlist}->{ $newChild->{id} } = $newChild;
[all …]
/dports/devel/poco/poco-1.10.1-all/XML/src/
H A DAbstractContainerNode.cpp81 poco_check_ptr (newChild); in insertBefore()
87 if (newChild == refChild) in insertBefore()
88 return newChild; in insertBefore()
89 if (this == newChild) in insertBefore()
112 newChild->duplicate(); in insertBefore()
150 return newChild; in insertBefore()
156 poco_check_ptr (newChild); in replaceChild()
163 if (newChild == oldChild) in replaceChild()
164 return newChild; in replaceChild()
165 if (this == newChild) in replaceChild()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Dom/
H A DXmlNode.cs205 if (this == newChild || AncestorNode(newChild)) in InsertBefore()
218 return newChild; in InsertBefore()
229 newChild.ParentNode.RemoveChild( newChild ); in InsertBefore()
244 if (!(newChild is XmlLinkedNode) || !IsValidChildType(newChild.NodeType)) in InsertBefore()
304 if (this == newChild || AncestorNode(newChild)) in InsertAfter()
317 return newChild; in InsertAfter()
328 newChild.ParentNode.RemoveChild( newChild ); in InsertAfter()
345 if (!(newChild is XmlLinkedNode) || !IsValidChildType(newChild.NodeType)) in InsertAfter()
500 if (this == newChild || AncestorNode(newChild)) in AppendChild()
504 newChild.ParentNode.RemoveChild( newChild ); in AppendChild()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Dom/
H A DXmlNode.cs235 if (this == newChild || AncestorNode(newChild)) in InsertBefore()
248 return newChild; in InsertBefore()
259 newChild.ParentNode.RemoveChild(newChild); in InsertBefore()
276 if (!(newChild is XmlLinkedNode) || !IsValidChildType(newChild.NodeType)) in InsertBefore()
349 if (this == newChild || AncestorNode(newChild)) in InsertAfter()
362 return newChild; in InsertAfter()
373 newChild.ParentNode.RemoveChild(newChild); in InsertAfter()
392 if (!(newChild is XmlLinkedNode) || !IsValidChildType(newChild.NodeType)) in InsertAfter()
576 if (this == newChild || AncestorNode(newChild)) in AppendChild()
580 newChild.ParentNode.RemoveChild(newChild); in AppendChild()
[all …]
/dports/science/dftbplus/dftbplus-19.1/external/xmlf90/
H A Ddom_node.f90261 function appendChild(node, newChild)
263 type(fnode), pointer :: newChild local
275 node % firstChild => newChild
286 appendChild => newChild
340 type(fnode), pointer :: newChild local
356 node%firstChild => newChild
364 node%lastChild => newChild
521 type(fnode), pointer :: newChild local
540 node%firstChild => newChild
547 newChild % parentNode => node
[all …]
/dports/textproc/xmlf90/xmlf90-1.5.5/src/dom/
H A Dm_dom_node.f90262 function appendChild(node, newChild)
264 type(fnode), pointer :: newChild local
276 node % firstChild => newChild
287 appendChild => newChild
341 type(fnode), pointer :: newChild local
357 node%firstChild => newChild
365 node%lastChild => newChild
519 type(fnode), pointer :: newChild local
538 node%firstChild => newChild
545 newChild % parentNode => node
[all …]
/dports/www/kf5-khtml/khtml-5.89.0/src/rendering/
H A Drender_container.cpp67 if (!newChild->isText() && !newChild->isReplaced()) { in addChild()
137 table->addChild(newChild); in addChild()
143 if (newChild->isText() && newChild->style()->textTransform() == CAPITALIZE) { in addChild()
149 newChild->attach(); in addChild()
543 newChild->setParent(this); in appendChildNode()
553 setLastChild(newChild); in appendChildNode()
558 if (newChild->firstChild() || newChild->layer()) { in appendChildNode()
560 newChild->addLayers(layer, newChild); in appendChildNode()
562 …if (newChild->style() && (newChild->style()->hasFixedBackgroundImage() || newChild->style()->posit… in appendChildNode()
591 if (newChild->firstChild() || newChild->isPosWithStaticDim() || !newChild->isPositioned()) { in appendChildNode()
[all …]
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/sbml/math/test/
H A DTestChildFunctions.cpp148 newChild->setName("newChild"); in START_TEST()
150 int i = N->addChild(newChild); in START_TEST()
198 newChild->setName("newChild"); in START_TEST()
203 int i = N->addChild(newChild); in START_TEST()
248 int i = N->addChild(newChild); in START_TEST()
291 newChild->setName("newChild"); in START_TEST()
293 int i = N->addChild(newChild); in START_TEST()
334 newChild->setName("newChild"); in START_TEST()
336 int i = N->addChild(newChild); in START_TEST()
377 newChild->setName("newChild"); in START_TEST()
[all …]
/dports/biology/libsbml/libsbml-5.19.0/src/sbml/math/test/
H A DTestChildFunctions.cpp148 newChild->setName("newChild"); in START_TEST()
150 int i = N->addChild(newChild); in START_TEST()
198 newChild->setName("newChild"); in START_TEST()
203 int i = N->addChild(newChild); in START_TEST()
248 int i = N->addChild(newChild); in START_TEST()
291 newChild->setName("newChild"); in START_TEST()
293 int i = N->addChild(newChild); in START_TEST()
334 newChild->setName("newChild"); in START_TEST()
336 int i = N->addChild(newChild); in START_TEST()
377 newChild->setName("newChild"); in START_TEST()
[all …]
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/fo/flow/
H A DAbstractRetrieveMarker.java111 FONode newChild = child.clone(newParent, true); in cloneSingleNode() local
115 (FObj) newChild, parentPropertyList); in cloneSingleNode()
118 newChild.processNode( in cloneSingleNode()
123 addChildTo(newChild, newParent); in cloneSingleNode()
124 newChild.startOfNode(); in cloneSingleNode()
125 switch (newChild.getNameId()) { in cloneSingleNode()
149 newChild.endOfNode(); in cloneSingleNode()
151 FOText ft = (FOText) newChild; in cloneSingleNode()
153 addChildTo(newChild, newParent); in cloneSingleNode()
160 newChild.endOfNode(); in cloneSingleNode()
[all …]
/dports/comms/cubicsdr/CubicSDR-0248e5a/src/
H A DAppConfig.cpp95 *node->newChild("id") = deviceId; in save()
96 *node->newChild("name") = deviceName; in save()
97 *node->newChild("ppm") = ppm.load(); in save()
98 *node->newChild("offset") = offset.load(); in save()
100 *node->newChild("agc_mode") = agcMode.load()?1:0; in save()
103 *node->newChild("antenna") = antennaName; in save()
119 DataNode *rigIFs = node->newChild("rig_ifs"); in save()
584 *window_node->newChild("x") = winX.load(); in save()
609 *rec_node->newChild("path") = recordingPath; in save()
634 *rig_node->newChild("rate") = rigRate.load(); in save()
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/gnu/xml/libxmlj/dom/
H A DGnomeNode.java213 DocumentType dt = (DocumentType) newChild; in insertBefore()
218 if (newChild == null) in insertBefore()
222 if (!(newChild instanceof GnomeNode)) in insertBefore()
230 return xmljInsertBefore(newChild, refChild); in insertBefore()
241 DocumentType dt = (DocumentType) newChild; in replaceChild()
246 if (newChild == null) in replaceChild()
250 if (!(newChild instanceof GnomeNode)) in replaceChild()
258 return xmljReplaceChild(newChild, oldChild); in replaceChild()
277 public Node appendChild(Node newChild) in appendChild() argument
287 if (!(newChild instanceof GnomeNode)) in appendChild()
[all …]
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/gnu/xml/libxmlj/dom/
H A DGnomeNode.java213 DocumentType dt = (DocumentType) newChild; in insertBefore()
218 if (newChild == null) in insertBefore()
222 if (!(newChild instanceof GnomeNode)) in insertBefore()
230 return xmljInsertBefore(newChild, refChild); in insertBefore()
241 DocumentType dt = (DocumentType) newChild; in replaceChild()
246 if (newChild == null) in replaceChild()
250 if (!(newChild instanceof GnomeNode)) in replaceChild()
258 return xmljReplaceChild(newChild, oldChild); in replaceChild()
277 public Node appendChild(Node newChild) in appendChild() argument
287 if (!(newChild instanceof GnomeNode)) in appendChild()
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/gnu/xml/libxmlj/dom/
H A DGnomeNode.java213 DocumentType dt = (DocumentType) newChild; in insertBefore()
218 if (newChild == null) in insertBefore()
222 if (!(newChild instanceof GnomeNode)) in insertBefore()
230 return xmljInsertBefore(newChild, refChild); in insertBefore()
241 DocumentType dt = (DocumentType) newChild; in replaceChild()
246 if (newChild == null) in replaceChild()
250 if (!(newChild instanceof GnomeNode)) in replaceChild()
258 return xmljReplaceChild(newChild, oldChild); in replaceChild()
277 public Node appendChild(Node newChild) in appendChild() argument
287 if (!(newChild instanceof GnomeNode)) in appendChild()
[all …]
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/gnu/xml/libxmlj/dom/
H A DGnomeNode.java213 DocumentType dt = (DocumentType) newChild; in insertBefore()
218 if (newChild == null) in insertBefore()
222 if (!(newChild instanceof GnomeNode)) in insertBefore()
230 return xmljInsertBefore(newChild, refChild); in insertBefore()
241 DocumentType dt = (DocumentType) newChild; in replaceChild()
246 if (newChild == null) in replaceChild()
250 if (!(newChild instanceof GnomeNode)) in replaceChild()
258 return xmljReplaceChild(newChild, oldChild); in replaceChild()
277 public Node appendChild(Node newChild) in appendChild() argument
287 if (!(newChild instanceof GnomeNode)) in appendChild()
[all …]
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/gnu/xml/libxmlj/dom/
H A DGnomeNode.java213 DocumentType dt = (DocumentType) newChild; in insertBefore()
218 if (newChild == null) in insertBefore()
222 if (!(newChild instanceof GnomeNode)) in insertBefore()
230 return xmljInsertBefore(newChild, refChild); in insertBefore()
241 DocumentType dt = (DocumentType) newChild; in replaceChild()
246 if (newChild == null) in replaceChild()
250 if (!(newChild instanceof GnomeNode)) in replaceChild()
258 return xmljReplaceChild(newChild, oldChild); in replaceChild()
277 public Node appendChild(Node newChild) in appendChild() argument
287 if (!(newChild instanceof GnomeNode)) in appendChild()
[all …]

12345678910>>...76