Home
last modified time | relevance | path

Searched refs:newNodeType (Results 1 – 6 of 6) sorted by relevance

/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/designercore/model/
H A Drewriteaction.cpp243 QString newNodeType = m_node.convertTypeToImportAlias(); in execute() local
244 const int slashIdx = newNodeType.lastIndexOf('.'); in execute()
246 newNodeType = newNodeType.mid(slashIdx + 1); in execute()
248 result = refactoring.changeObjectType(nodeLocation, newNodeType); in execute()
252 << newNodeType << ") **" in execute()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/dom/
H A DRange.cpp975 Node::NodeType newNodeType = newNode->nodeType(); in insertNode() local
977 if (newNodeType == Node::DOCUMENT_FRAGMENT_NODE) { in insertNode()
989 if (!checkAgainst->childTypeAllowed(newNodeType)) { in insertNode()
1003 switch (newNodeType) { in insertNode()
1031 … lastChild = (newNodeType == Node::DOCUMENT_FRAGMENT_NODE) ? newNode->lastChild() : newNode; in insertNode()
/dports/graphics/wdune/wdune-1.926/src/
H A DScene.cpp6343 MyString newNodeType = ""; in getNodeWithPrefix() local
6344 newNodeType += TheApp->getPrefix(); in getNodeWithPrefix()
6345 newNodeType += nodeType; in getNodeWithPrefix()
6346 return newNodeType; in getNodeWithPrefix()
H A DScene.cpp,v6374 MyString newNodeType = "";
6375 newNodeType += TheApp->getPrefix();
6376 newNodeType += nodeType;
6377 return newNodeType;
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Core/
H A DXmlTextReaderImpl.cs9197 internal void ChangeCurrentNodeType(XmlNodeType newNodeType) in ParseXmlDeclaration() argument
9199 …Debug.Assert(_curNode.type == XmlNodeType.Whitespace && newNodeType == XmlNodeType.SignificantWhit… in ParseXmlDeclaration()
9200 _curNode.type = newNodeType; in ParseXmlDeclaration()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Core/
H A DXmlTextReaderImpl.cs8155 internal void ChangeCurrentNodeType( XmlNodeType newNodeType ) { argument
8156 …Debug.Assert( curNode.type == XmlNodeType.Whitespace && newNodeType == XmlNodeType.SignificantWhit…
8157 curNode.type = newNodeType;