TouchGFX + 0/4 examples
CodeScope will show references to touchgfx::Partition from the following samples and libraries:
Examples
STM32469I-Discovery
Demonstrations
STM32469I_EVAL
Demonstrations
STM324x9I_EVAL
Demonstrations
STM32F429I-Discovery
Demonstrations
 
Symbols
loading...
Files
loading...

touchgfx::Partition

Syntax

class Partition : public AbstractPartition { public:     typedef ListOfTypes SupportedTypesList;     enum     {         INTS_PR_ELEMENT = (sizeof(typename meta::select_type_maxsize< SupportedTypesList >::type) + sizeof(int) - 1) / sizeof(int),         SIZE_OF_ELEMENT = INTS_PR_ELEMENT * sizeof(int)     };     Partition() : AbstractPartition()     {     }     virtual ~Partition()     {     }     virtual uint16_t capacity() const     {         return NUMBER_OF_ELEMENTS;     }     virtual uint32_t element_size()     {         return sizeof(stBlocks[0]);     } protected:     virtual void* element(uint16_t index)     {         return &stBlocks[index];     }     virtual const void* element(uint16_t index) const     {         return &stBlocks[index];     } private:     struct Block     {         int filler[INTS_PR_ELEMENT];     };     Block stBlocks[NUMBER_OF_ELEMENTS];  };

Examples

touchgfx::Partition is referenced by 4 libraries and example projects.

References

LocationText
Partition.hpp:41
class Partition : public AbstractPartition