Home
last modified time | relevance | path

Searched refs:XMLText (Results 1 – 25 of 85) sorted by last modified time

1234

/dports/x11-toolkits/irrlicht/irrlicht-1.8.5/tools/GUIEditor/
H A DCGUIEditWorkspace.cpp856 core::stringc XMLText; in CopySelectedElementXML() local
869 XMLText = wXMLText.c_str(); in CopySelectedElementXML()
872 Environment->getOSOperator()->copyToClipboard(XMLText.c_str()); in CopySelectedElementXML()
/dports/textproc/tinyxml2/tinyxml2-9.0.0/
H A Dtinyxml2.cpp750 XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); in Identify()
1228 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1239 bool XMLText::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1242 const XMLText* text = compare->ToText(); in ShallowEqual()
1247 bool XMLText::Accept( XMLVisitor* visitor ) const in Accept()
1680 XMLText* theText = GetDocument()->NewText( inText ); in SetText()
2019 XMLText* XMLElement::InsertNewText(const char* text) in InsertNewText()
2021 XMLText* node = _document->NewText(text); in InsertNewText()
2255 XMLText* XMLDocument::NewText( const char* str ) in NewText()
2257 XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); in NewText()
[all …]
H A Dreadme.md89 However, any sub-node of the Document, XMLElement, XMLText, etc, can only
171 will have the Value() of "Far & Away" when queried from the XMLText object,
246 // general way to get to the XMLText:
247XMLText* textNode = doc.FirstChildElement( "PLAY" )->FirstChildElement( "TITLE" )->FirstChild()->T…
H A Dxmltest.cpp168 XMLText* textNode = titleElement->FirstChild()->ToText(); in example_3()
686XMLText* text = doc.FirstChildElement( "document" )->FirstChildElement( (const char*) russianEleme… in main()
1241 XMLText* text = doc.FirstChildElement()->FirstChildElement()->FirstChild()->ToText(); in main()
2406 bool Visit(const XMLText& text) in main()
H A Dtinyxml2.h123 class XMLText; variable
696 virtual XMLText* ToText() { in ToText()
991 class TINYXML2_LIB XMLText : public XMLNode
997 virtual XMLText* ToText() { in ToText()
1018 virtual ~XMLText() {} in ~XMLText()
1025 XMLText( const XMLText& ); // not supported
1026 XMLText& operator=( const XMLText& ); // not supported
1722 friend class XMLText; variable
1851 XMLText* NewText( const char* text );
2112 XMLText* ToText() { in ToText()
[all …]
/dports/math/mfem/mfem-4.3/general/
H A Dtinyxml2.cpp750 XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); in Identify()
1228 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1239 bool XMLText::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1242 const XMLText* text = compare->ToText(); in ShallowEqual()
1247 bool XMLText::Accept( XMLVisitor* visitor ) const in Accept()
1673 XMLText* theText = GetDocument()->NewText( inText ); in SetText()
2012 XMLText* XMLElement::InsertNewText(const char* text) in InsertNewText()
2014 XMLText* node = _document->NewText(text); in InsertNewText()
2270 XMLText* XMLDocument::NewText( const char* str ) in NewText()
2272 XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); in NewText()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/third_party/gflags/src/
H A Dgflags_reporting.cc193 static string XMLText(const string& txt) { in XMLText() function
203 StringAppendF(r, "<%s>%s</%s>", tag, XMLText(txt).c_str(), tag); in AddXMLTag()
329 XMLText(Basename(prog_name)).c_str()); in ShowXMLOfFlags()
331 XMLText(ProgramUsage()).c_str()); in ShowXMLOfFlags()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/third_party/gflags/src/
H A Dgflags_reporting.cc193 static string XMLText(const string& txt) { in XMLText() function
203 StringAppendF(r, "<%s>%s</%s>", tag, XMLText(txt).c_str(), tag); in AddXMLTag()
329 XMLText(Basename(prog_name)).c_str()); in ShowXMLOfFlags()
331 XMLText(ProgramUsage()).c_str()); in ShowXMLOfFlags()
/dports/databases/pgpool-II-37/pgpool-II-3.7.22/doc/src/sgml/
H A Dfeatures-unsupported.sgml1319 <entry>XMLText</entry>
/dports/databases/pgpool-II-40/pgpool-II-4.0.17/doc.ja/src/sgml/
H A Dfeatures-unsupported.sgml1319 <entry>XMLText</entry>
/dports/databases/pgpool-II-40/pgpool-II-4.0.17/doc/src/sgml/
H A Dfeatures-unsupported.sgml1319 <entry>XMLText</entry>
/dports/databases/pgpool-II-37/pgpool-II-3.7.22/doc.ja/src/sgml/
H A Dfeatures-unsupported.sgml1319 <entry>XMLText</entry>
/dports/databases/pgpool-II-41/pgpool-II-4.1.10/doc/src/sgml/
H A Dfeatures-unsupported.sgml1319 <entry>XMLText</entry>
/dports/databases/pgpool-II-41/pgpool-II-4.1.10/doc.ja/src/sgml/
H A Dfeatures-unsupported.sgml1319 <entry>XMLText</entry>
/dports/audio/noson-app/noson-app-4.5.0/backend/NosonThumbnailer/thumbnailer/
H A Dtinyxml2.cpp579 XMLText* text = new (_textPool.Alloc()) XMLText( this );
599 returnNode = new (_textPool.Alloc()) XMLText( this );
948 char* XMLText::ParseDeep( char* p, StrPair* )
976 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const
987 bool XMLText::ShallowEqual( const XMLNode* compare ) const
989 const XMLText* text = compare->ToText();
994 bool XMLText::Accept( XMLVisitor* visitor ) const
1340 XMLText* theText = GetDocument()->NewText( inText );
1751 XMLText* XMLDocument::NewText( const char* str )
1754 XMLText* text = new (_textPool.Alloc()) XMLText( this );
[all …]
H A Dtinyxml2.h135 class XMLText; variable
670 virtual XMLText* ToText() { in ToText()
930 class TINYXML2_LIB XMLText : public XMLNode
937 virtual XMLText* ToText() { in ToText()
940 virtual const XMLText* ToText() const { in ToText()
959 virtual ~XMLText() {} in ~XMLText()
964 XMLText( const XMLText& ); // not supported
965 XMLText& operator=( const XMLText& ); // not supported
1676 XMLText* NewText( const char* text );
1879 XMLText* ToText() { in ToText()
[all …]
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/xmerl/src/
H A Dxmerl_xsd.erl2728 {XMLText,Rest} = split_xmlText(XML),
2729 {XMLText,Rest,S};
2731 {XMLText,Rest} = split_xmlText(XML),
2732 {NewVal,S2}=check_type(Type,flatten([X||#xmlText{value=X}<-XMLText]),unapplied,S),
2735 {XMLText,Rest} = split_xmlText(XML),
2736 {NewVal,S2}=check_type(Type,flatten([X||#xmlText{value=X}<-XMLText]),unapplied,S),
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/xmerl/src/
H A Dxmerl_xsd.erl2728 {XMLText,Rest} = split_xmlText(XML),
2729 {XMLText,Rest,S};
2731 {XMLText,Rest} = split_xmlText(XML),
2732 {NewVal,S2}=check_type(Type,flatten([X||#xmlText{value=X}<-XMLText]),unapplied,S),
2735 {XMLText,Rest} = split_xmlText(XML),
2736 {NewVal,S2}=check_type(Type,flatten([X||#xmlText{value=X}<-XMLText]),unapplied,S),
/dports/net/krill/krill-0.9.4/lagosta/js/
H A Dapp.js.map1XMLText.js","webpack:///./node_modules/element-ui/lib/locale/format.js","webpack:///./node_modules…
/dports/devel/cppcheck-gui/cppcheck-2.6.3/externals/tinyxml2/
H A Dtinyxml2.cpp696 XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); in Identify()
713 returnNode = CreateUnlinkedNode<XMLText>( _textPool ); in Identify()
1133 char* XMLText::ParseDeep( char* p, StrPair*, int* curLineNumPtr ) in ParseDeep()
1160 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1171 bool XMLText::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1174 const XMLText* text = compare->ToText(); in ShallowEqual()
1179 bool XMLText::Accept( XMLVisitor* visitor ) const in Accept()
1580 XMLText* theText = GetDocument()->NewText( inText ); in SetText()
2095 XMLText* XMLDocument::NewText( const char* str ) in NewText()
2097 XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); in NewText()
[all …]
H A Dtinyxml2.h115 class XMLText; variable
682 virtual XMLText* ToText() { in ToText()
977 class TINYXML2_LIB XMLText : public XMLNode
983 virtual XMLText* ToText() { in ToText()
1004 virtual ~XMLText() {} in ~XMLText()
1011 XMLText( const XMLText& ); // not supported
1012 XMLText& operator=( const XMLText& ); // not supported
1656 friend class XMLText; variable
1785 XMLText* NewText( const char* text );
2028 XMLText* ToText() { in ToText()
[all …]
/dports/devel/cppcheck/cppcheck-2.6.3/externals/tinyxml2/
H A Dtinyxml2.cpp696 XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); in Identify()
713 returnNode = CreateUnlinkedNode<XMLText>( _textPool ); in Identify()
1133 char* XMLText::ParseDeep( char* p, StrPair*, int* curLineNumPtr ) in ParseDeep()
1160 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1171 bool XMLText::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1174 const XMLText* text = compare->ToText(); in ShallowEqual()
1179 bool XMLText::Accept( XMLVisitor* visitor ) const in Accept()
1580 XMLText* theText = GetDocument()->NewText( inText ); in SetText()
2095 XMLText* XMLDocument::NewText( const char* str ) in NewText()
2097 XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); in NewText()
[all …]
H A Dtinyxml2.h115 class XMLText; variable
682 virtual XMLText* ToText() { in ToText()
977 class TINYXML2_LIB XMLText : public XMLNode
983 virtual XMLText* ToText() { in ToText()
1004 virtual ~XMLText() {} in ~XMLText()
1011 XMLText( const XMLText& ); // not supported
1012 XMLText& operator=( const XMLText& ); // not supported
1656 friend class XMLText; variable
1785 XMLText* NewText( const char* text );
2028 XMLText* ToText() { in ToText()
[all …]
/dports/devel/bullet/bullet3-3.21/Extras/Serialize/BulletXmlWorldImporter/
H A DbtBulletXmlWorldImporter.cpp111 XMLText* pText = flNode->FirstChildElement()->ToText(); in deSerializeVector3FloatData()
/dports/devel/bullet/bullet3-3.21/examples/ThirdPartyLibs/tinyxml2/
H A Dtinyxml2.h150 class XMLText; variable
773 virtual XMLText* ToText() in ToText()
802 virtual const XMLText* ToText() const in ToText()
1101 virtual XMLText* ToText() in ToText()
1126 virtual ~XMLText() {} in ~XMLText()
1133 XMLText(const XMLText&); // not supported
1134 XMLText& operator=(const XMLText&); // not supported
1828 friend class XMLText; variable
1966 XMLText* NewText(const char* text);
2251 XMLText* ToText() in ToText()
[all …]

1234