Home
last modified time | relevance | path

Searched refs:Value (Results 1 – 25 of 26) sorted by relevance

12

/lvgl-latest/scripts/gdb/lvglgdb/
Dvalue.py6 class Value(gdb.Value): class
7 def __init__(self, value: Union[gdb.Value, 'Value']): argument
15 return Value(value)
19 return Value(super().__getattribute__(key))
20 return Value(super().__getitem__(key))
27 return Value(super().cast(gdb_type))
Dlvgl.py6 from .value import Value
16 class LVList(Value):
19 def __init__(self, ll: Value, nodetype: Union[gdb.Type, str] = None): argument
35 next_value = Value(int(node) + self._next_offset)
39 prev_value = Value(int(node) + self._prev_offset)
65 class LVObject(Value):
68 def __init__(self, obj: Value): argument
130 class LVDisplay(Value):
133 def __init__(self, disp: Value): argument
146 def __init__(self, lv_global: Value): argument
[all …]
/lvgl-latest/src/libs/thorvg/rapidjson/internal/
Dmeta.h45 static const bool Value = Cond; member
59 template <typename C, typename T1, typename T2> struct SelectIf : SelectIfCond<C::Value, T1, T2> {};
68 template <typename C1, typename C2> struct AndExpr : AndExprCond<C1::Value, C2::Value>::Type {};
69 template <typename C1, typename C2> struct OrExpr : OrExprCond<C1::Value, C2::Value>::Type {};
92 BoolType<IsConst<CT>::Value >= IsConst<T>::Value> >::Type {};
123 enum { Value = (sizeof(Check(Host(), 0)) == sizeof(Yes)) };
142 struct EnableIf : EnableIfCond<Condition::Value, T> {};
145 struct DisableIf : DisableIfCond<Condition::Value, T> {};
Dieee754.h29 double Value() const { return d_; } in Value() function
34 return Double(u_ + 1).Value(); in NextPositiveDouble()
Dstrtod.h214 int cmp = CheckWithinHalfULP(a.Value(), dInt, dExp); in StrtodBigInteger()
216 return a.Value(); // within half ULP in StrtodBigInteger()
222 return a.Value(); in StrtodBigInteger()
/lvgl-latest/src/libs/thorvg/rapidjson/
Dfwd.h116 typedef GenericValue<UTF8<char>, MemoryPoolAllocator<CrtAllocator> > Value; typedef
128 typedef GenericPointer<Value, CrtAllocator> Pointer;
138 typedef GenericSchemaDocument<Value, CrtAllocator> SchemaDocument;
Duri.h473 typedef GenericUri<Value> Uri;
Dallocators.h616 static const bool kRefCounted = internal::IsRefCounted<BaseAllocator>::Value;
Ddocument.h787 RAPIDJSON_STATIC_ASSERT((internal::IsSame<bool,T>::Value));
884 internal::IsRefCounted<Allocator>::Value)) {
2485 typedef GenericValue<UTF8<> > Value;
Dpointer.h1165 typedef GenericPointer<Value> Pointer;
/lvgl-latest/docs/details/main-components/
Dcolor.rst44 Create colors from Hue, Saturation and Value values:
138 - :cpp:enumerator:`LV_OPA_TRANSP` Value: 0, means no opacity making the color
140 - :cpp:enumerator:`LV_OPA_10` Value: 25, means the color covers only a little
142 - :cpp:enumerator:`LV_OPA_90` Value: 229, means the color nearly completely covers
143 - :cpp:enumerator:`LV_OPA_COVER` Value: 255, means the color completely covers (full
Dimage.rst531 Value of images
/lvgl-latest/src/libs/thorvg/
DtvgPicture.cpp216 struct Value in paint() struct
224 auto p = static_cast<Value*>(data); in paint()
DtvgLottieParserHandler.h74 Value val;
DtvgSvgLoader.cpp789 #define MATRIX_DEF(Name, Value) \ argument
791 #Name, sizeof(#Name), Value \
906 #define LENGTH_DEF(Name, Value) \ argument
908 #Name, sizeof(#Name), Value \
/lvgl-latest/docs/details/widgets/
Dbar.rst49 Value and range
Dspinbox.rst26 Value, range and step
Dtable.rst49 Line breaks can be used in the text like ``"Value\n60.3"``.
Dslider.rst41 Value, range and orientation
Darc.rst36 Value and range
Dlabel.rst44 can be used to set the text. Example: :cpp:expr:`lv_label_set_text_fmt(label, "Value: %d", 15)`.
/lvgl-latest/docs/details/base-widget/styles/
Dstyle-properties.rst506 Set opacity of the background. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255,…
632 Set opacity of the background image. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent…
660 Set intensity of background image recoloring. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means no mixin…
707 Set opacity of the border. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255, `LV…
796 Set opacity of outline. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255, `LV_OP…
899 Set opacity of shadow. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255, `LV_OPA…
918 Set opacity of an image. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255, `LV_O…
946 Set intensity of color mixing. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255,…
1143 Set opacity of text. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255, `LV_OPA_1…
1274 Scale down all opacity values of the Widget by this factor. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` …
[all …]
/lvgl-latest/docs/details/other-components/
Dobj_property.rst157 Property Value
/lvgl-latest/docs/intro/add-lvgl-to-your-project/
Dthreading.rst112 must be reliable and the Tick Value must appear :ref:`atomic <atomic>` to LVGL. See
/lvgl-latest/docs/details/integration/chip/
Dnxp.rst309 higher than this value will be done in multiple steps. Value must be multiple

12