Home
last modified time | relevance | path

Searched refs:enumType (Results 1 – 4 of 4) sorted by relevance

/commonlibrary/ets_utils/js_api_module/convertxml/test/
Dtest_convertxml.cpp467 xmlElementType enumType = XML_ATTRIBUTE_NODE; variable
468 std::string res = CxmlTest::GetNodeType(enumType);
470 enumType = XML_ENTITY_REF_NODE;
471 CxmlTest::GetNodeType(enumType);
472 enumType = XML_ENTITY_NODE;
473 CxmlTest::GetNodeType(enumType);
474 enumType = XML_PI_NODE;
475 CxmlTest::GetNodeType(enumType);
476 enumType = XML_DOCUMENT_NODE;
477 CxmlTest::GetNodeType(enumType);
[all …]
Dtest_convertxml.h27 static std::string GetNodeType(const xmlElementType enumType);
45 std::string CxmlTest::GetNodeType(const xmlElementType enumType) in GetNodeType() argument
48 return convert.GetNodeType(enumType); in GetNodeType()
/commonlibrary/ets_utils/js_api_module/convertxml/
Djs_convertxml.h116 std::string GetNodeType(const xmlElementType enumType) const;
Djs_convertxml.cpp26 std::string ConvertXml::GetNodeType(const xmlElementType enumType) const in GetNodeType()
29 switch (enumType) { in GetNodeType()