|
| int | XMLParseUtils::GetIntAttr (const pugi::xml_node &node, const char *str) |
| | Gets the integer attribute from pugi::xml_node More...
|
| |
| int | XMLParseUtils::GetIntAttr (const pugi::xml_node &node, const char *str, int defVal) |
| | Gets the integer attribute from pugi::xml_node More...
|
| |
| int64_t | XMLParseUtils::GetInt64Attr (const pugi::xml_node &node, const char *str) |
| | Gets the int64_t attribute from pugi::xml_node More...
|
| |
| int64_t | XMLParseUtils::GetInt64Attr (const pugi::xml_node &node, const char *str, int64_t defVal) |
| | Gets the int64_t attribute from pugi::xml_node More...
|
| |
| uint64_t | XMLParseUtils::GetUInt64Attr (const pugi::xml_node &node, const char *str) |
| | Gets the uint64_t attribute from pugi::xml_node More...
|
| |
| uint64_t | XMLParseUtils::GetUInt64Attr (const pugi::xml_node &node, const char *str, uint64_t defVal) |
| | Gets the uint64_t attribute from pugi::xml_node More...
|
| |
| unsigned int | XMLParseUtils::GetUIntAttr (const pugi::xml_node &node, const char *str) |
| | Gets the unsigned integer attribute from pugi::xml_node More...
|
| |
| unsigned int | XMLParseUtils::GetUIntAttr (const pugi::xml_node &node, const char *str, unsigned int defVal) |
| | Gets the unsigned integer attribute from pugi::xml_node More...
|
| |
| std::string | XMLParseUtils::GetStrAttr (const pugi::xml_node &node, const char *str) |
| | Gets the string attribute from pugi::xml_node More...
|
| |
| std::string | XMLParseUtils::GetStrAttr (const pugi::xml_node &node, const char *str, const char *def) |
| | Gets the string attribute from pugi::xml_node More...
|
| |
| bool | XMLParseUtils::GetBoolAttr (const pugi::xml_node &node, const char *str) |
| | Gets the bool attribute from pugi::xml_node More...
|
| |
| bool | XMLParseUtils::GetBoolAttr (const pugi::xml_node &node, const char *str, const bool def) |
| | Gets the bool attribute from pugi::xml_node More...
|
| |
| float | XMLParseUtils::GetFloatAttr (const pugi::xml_node &node, const char *str) |
| | Gets the float attribute from pugi::xml_node More...
|
| |
| float | XMLParseUtils::GetFloatAttr (const pugi::xml_node &node, const char *str, float defVal) |
| | Gets the float attribute from pugi::xml_node More...
|
| |
| InferenceEngine::Precision | XMLParseUtils::GetPrecisionAttr (const pugi::xml_node &node, const char *str) |
| | Gets the Precision attribute from pugi::xml_node More...
|
| |
| InferenceEngine::Precision | XMLParseUtils::GetPrecisionAttr (const pugi::xml_node &node, const char *str, InferenceEngine::Precision def) |
| | Gets the Precision attribute from pugi::xml_node More...
|
| |
| int | XMLParseUtils::GetIntChild (const pugi::xml_node &node, const char *str, int defVal) |
| | Gets the integer value located in a child node. More...
|
| |
| parse_result | ParseXml (const char *file_path) |
| | Parses a file and returns parse_result. More...
|
| |