From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/classarmnn_1_1_boolean_encoder.xhtml | 300 +++++++++++++++++++++++++++++ 1 file changed, 300 insertions(+) create mode 100644 21.02/classarmnn_1_1_boolean_encoder.xhtml (limited to '21.02/classarmnn_1_1_boolean_encoder.xhtml') diff --git a/21.02/classarmnn_1_1_boolean_encoder.xhtml b/21.02/classarmnn_1_1_boolean_encoder.xhtml new file mode 100644 index 0000000000..947fc20ecc --- /dev/null +++ b/21.02/classarmnn_1_1_boolean_encoder.xhtml @@ -0,0 +1,300 @@ + + + + + + + + + + + + + +ArmNN: BooleanEncoder Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
BooleanEncoder Class Reference
+
+
+ +

#include <BaseIterator.hpp>

+
+Inheritance diagram for BooleanEncoder:
+
+
+ + +TypedIterator< uint8_t, Encoder< bool > > +Encoder< bool > +BaseIterator + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 BooleanEncoder (uint8_t *data)
 
 BooleanEncoder ()
 
void Set (bool right) override
 
bool Get () const override
 
- Public Member Functions inherited from TypedIterator< uint8_t, Encoder< bool > >
 TypedIterator (uint8_t *data=nullptr)
 
void Reset (void *data) override
 
TypedIteratoroperator++ () override
 
TypedIteratoroperator+= (const unsigned int increment) override
 
TypedIteratoroperator-= (const unsigned int increment) override
 
TypedIteratoroperator[] (const unsigned int index) override
 
TypedIteratorSetIndex (unsigned int index, unsigned int axisIndex=0) override
 
- Public Member Functions inherited from Encoder< bool >
 Encoder ()
 
virtual ~Encoder ()
 
- Public Member Functions inherited from BaseIterator
 BaseIterator ()
 
virtual ~BaseIterator ()
 
+ + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from TypedIterator< uint8_t, Encoder< bool > >
uint8_t * m_Iterator
 
uint8_t * m_Start
 
+

Detailed Description

+
+

Definition at line 752 of file BaseIterator.hpp.

+

Constructor & Destructor Documentation

+ +

◆ BooleanEncoder() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + +
BooleanEncoder (uint8_t * data)
+
+inline
+
+ +

Definition at line 755 of file BaseIterator.hpp.

+
756  : TypedIterator(data) {}
+
+
+
+ +

◆ BooleanEncoder() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
BooleanEncoder ()
+
+inline
+
+ +

Definition at line 758 of file BaseIterator.hpp.

+
759  : BooleanEncoder(nullptr) {}
+
+
+
+

Member Function Documentation

+ +

◆ Get()

+ +
+
+ + + + + +
+ + + + + + + +
bool Get () const
+
+inlineoverridevirtual
+
+ +

Implements Encoder< bool >.

+ +

Definition at line 766 of file BaseIterator.hpp.

+
767  {
768  return *m_Iterator;
769  }
+
+
+
+ +

◆ Set()

+ +
+
+ + + + + +
+ + + + + + + + +
void Set (bool right)
+
+inlineoverridevirtual
+
+ +

Implements Encoder< bool >.

+ +

Definition at line 761 of file BaseIterator.hpp.

+
762  {
763  *m_Iterator = right;
764  }
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1