Lines Matching refs:is
5 This is done so that bindings that generate code automatically will have an easy way to collect the…
13 - PyMSVC >= 0.4.0: Python library is using MSVC Compiler
20 - `--output-path`: output directory for JSON file. If one is not supplied then it will be output st…
21 - `--lvgl-config`: path to lv_conf.h (including file name), if this is not set then a config file w…
40 The JSON data is broken apart into a couple of main categories.
53 The value for each categry is an array of JSON elements. There is a bit of
59 - ``"array"``: The array type is used to identify arrays.
68 - ``"field"``: This type is used to describe fields in structures and unions.
69 It is used in the ``"fields"`` array of the ``"struct"`` and ``"union"`` JSON types.
76 if there is no bit size defined
77 - ``"docstring"``: you should know what this is.
86 - ``"docstring"``: you should know what this is.
91 LVGL that are considered to be private and that is what these desccribe.
97 - ``"docstring"``: you should know what this is.
107 - ``"docstring"``: you should know what this is.
118 - ``"docstring"``: you should know what this is.
130 - ``"primitive_type"``: This is a base type. There or no other types beneith this.
131 This tells you that the type is a basic or primitive C type.
143 This is always going to be an "int" type. Make sure you do not use this
146 - ``"docstring"``: you should know what this is.
156 This gets a bit tricky because the type specified in here is not always
159 - ``"docstring"``: you should know what this is.
163 - ``"lvgl_type"``: This is a base type. There or no other types beneith this.
164 This tells you that the type is an LVGL data type.
176 - ``"docstring"``: you should know what this is.
186 - ``"docstring"``: you should know what this is.
191 - ``"macro"``: describes a macro. There is limited information that can be
193 statically added to a binding. It is more for collecting the docstrings than
198 - ``"docstring"``: you should know what this is.
201 - ``"ret_type"``: return type from a function. This is only going to be seen in the ``"type"``
207 - ``"docstring"``: you should know what this is.
215 - ``"docstring"``: you should know what this is.
219 - ``"stdlib_type"``: This is a base type, meaning that there are no more
220 type levels beneith this. This tells us that the type is from the C stdlib.
227 - ``"unknown_type"``: This should not be seen. If it is then there needs to be
235 - ``"pointer"``: This is a wrapper object to let you know that the type you
236 are dealing with is a pointer
250 - ``"docstring"``: you should know what this is.
255 Here is an example of what the output will look like.