Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser/
H A Dtinyxml2.h96 class XMLNode; variable
494 class XMLNode
565 const XMLNode* Parent() const { in Parent()
568 XMLNode* Parent() { in Parent()
578 const XMLNode* FirstChild() const { in FirstChild()
581 XMLNode* FirstChild() { in FirstChild()
589 … return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( _value ));
593 const XMLNode* LastChild() const { in LastChild()
596 XMLNode* LastChild() { in LastChild()
597 return const_cast<XMLNode*>(const_cast<const XMLNode*>(this)->LastChild() ); in LastChild()
[all …]
H A Dtinyxml2.cpp52 node->~XMLNode(); \
475 char* XMLDocument::Identify( char* p, XMLNode** node ) in Identify()
477 XMLNode* returnNode = 0; in Identify()
555 for ( const XMLNode* node = FirstChild(); node; node = node->NextSibling() ) in Accept()
567 XMLNode::XMLNode( XMLDocument* doc ) : in XMLNode() function in XMLNode
576 XMLNode::~XMLNode() in ~XMLNode()
585 void XMLNode::SetValue( const char* str, bool staticMem ) in SetValue()
594 void XMLNode::DeleteChildren() in DeleteChildren()
597 XMLNode* node = firstChild; in DeleteChildren()
606 void XMLNode::Unlink( XMLNode* child ) in Unlink()
[all …]
H A DRkAiqCalibParser.cpp113 const XMLNode* pNode, /**< trimmed c string */ in ParseFloatArray()
211 XMLNode* pComment = (XMLNode*)pNode->ToElement()->FirstChild(); in ParseFloatArray()
232 const XMLNode *pNode, /**< trimmed c string */ in ParseDoubleArray()
326 XMLNode* pComment = (XMLNode*)pNode->ToElement()->FirstChild(); in ParseDoubleArray()
346 const XMLNode *pNode, /**< trimmed c string */ in ParseUintArray()
442 XMLNode* pComment = (XMLNode*)pNode->ToElement()->FirstChild(); in ParseUintArray()
461 const XMLNode *pNode, /**< trimmed c string */ in ParseIntArray()
557 XMLNode* pComment = (XMLNode*)pNode->ToElement()->FirstChild(); in ParseIntArray()
576 const XMLNode *pNode, /**< trimmed c string */ in ParseUcharArray()
675 XMLNode* pComment = (XMLNode*)pNode->ToElement()->FirstChild(); in ParseUcharArray()
[all …]
H A DRkAiqCalibParser.h94 int ParseByteArray(const XMLNode *pNode, uint8_t* values, const int num);
95 int ParseFloatArray(const XMLNode *pNode, float* values, const int num, int printAccuracy = 4);
96 int ParseDoubleArray(const XMLNode *pNode, double* values, const int num);
97 int ParseUintArray(const XMLNode *pNode, uint32_t* values, const int num);
98 int ParseIntArray(const XMLNode *pNode, int32_t* values, const int num);
99 int ParseUcharArray(const XMLNode *pNode, uint8_t* values, const int num);
100 int ParseCharArray(const XMLNode *pNode, int8_t* values, const int num);
101 int ParseUshortArray(const XMLNode *pNode, uint16_t* values, const int num);
102 int ParseShortArray(const XMLNode *pNode, int16_t* values, const int num);
103 int ParseString(const XMLNode *pNode, char* values, const int size);
[all …]