/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | meta.h | 39 template <typename T> struct Void { typedef void Type; }; typedef 46 typedef BoolType Type; typedef 56 … C> struct SelectIfImpl { template <typename T1, typename T2> struct Apply { typedef T1 Type; }; }; typedef 57 …uct SelectIfImpl<false> { template <typename T1, typename T2> struct Apply { typedef T2 Type; }; }; 66 template <typename C> struct BoolExpr : SelectIf<C,TrueType,FalseType>::Type {}; 67 template <typename C> struct NotExpr : SelectIf<C,FalseType,TrueType>::Type {}; 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 {}; 74 template <typename T> struct AddConst { typedef const T Type; }; 76 template <typename T> struct RemoveConst { typedef T Type; }; [all …]
|
D | biginteger.h | 34 typedef uint64_t Type; typedef 37 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type)); in BigInteger() 64 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type)); 76 Type backup = digits_[0]; 141 std::memmove(digits_ + offset, digits_, count_ * sizeof(Type)); 154 std::memset(digits_, 0, offset * sizeof(Type)); 160 … return count_ == rhs.count_ && std::memcmp(digits_, rhs.digits_, count_ * sizeof(Type)) == 0; 163 bool operator==(const Type rhs) const { 199 Type borrow = 0; in Difference() 201 Type d = a->digits_[i] - borrow; in Difference() [all …]
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgLottieParser.cpp | 362 template<LottieProperty::Type type, typename T> 491 template<LottieProperty::Type type, typename T> 548 else if (KEY_AS("s")) parseProperty<LottieProperty::Type::Point>(rect->size); in parseRect() 549 else if (KEY_AS("p")) parseProperty<LottieProperty::Type::Position>(rect->position); in parseRect() 550 else if (KEY_AS("r")) parseProperty<LottieProperty::Type::Float>(rect->radius); in parseRect() 567 else if (KEY_AS("p")) parseProperty<LottieProperty::Type::Position>(ellipse->position); in parseEllipse() 568 else if (KEY_AS("s")) parseProperty<LottieProperty::Type::Point>(ellipse->size); in parseEllipse() 597 …else if (transform->coords && KEY_AS("x")) parseProperty<LottieProperty::Type::Float>(transform->c… in parseTransform() 598 …else if (transform->coords && KEY_AS("y")) parseProperty<LottieProperty::Type::Float>(transform->c… in parseTransform() 602 transform->position.type = LottieProperty::Type::Position; in parseTransform() [all …]
|
D | tvgFill.cpp | 203 return (uint32_t) Type::RadialGradient; in identifier() 207 Type RadialGradient::type() const noexcept in type() 209 return Type::RadialGradient; in type() 255 return (uint32_t) Type::LinearGradient; in identifier() 259 Type LinearGradient::type() const noexcept in type() 261 return Type::LinearGradient; in type()
|
D | tvgLottieModel.h | 85 enum Type : uint8_t enum 92 Type type; 122 enum Type : uint8_t enum 157 Type type; 289 enum Type : uint8_t { Simultaneous = 1, Individual = 2 }; enum 315 Type type = Simultaneous; 330 void prepare(LottieObject::Type type) in prepare() 394 enum Type : uint8_t {Star = 1, Polygon}; enum 420 Type type = Polygon; 721 void prepare(LottieObject::Type type = LottieObject::Group); [all …]
|
D | tvgScene.cpp | 69 return (uint32_t) Type::Scene; in identifier() 73 Type Scene::type() const noexcept in type() 75 return Type::Scene; in type()
|
D | tvgLottieParser.h | 75 …template<LottieProperty::Type type = LottieProperty::Type::Invalid, typename T> void parseProperty… 76 …template<LottieProperty::Type type = LottieProperty::Type::Invalid, typename T> void parseSlotProp…
|
D | thorvg.h | 256 enum class Type : uint8_t enum 465 virtual Type type() const noexcept = 0; 580 virtual Type type() const noexcept = 0; 770 Type type() const noexcept override; 835 Type type() const noexcept override; 1235 Type type() const noexcept override; 1373 Type type() const noexcept override; 1473 Type type() const noexcept override; 1631 Type type() const noexcept override;
|
D | tvgText.cpp | 116 Type Text::type() const noexcept in type() 118 return Type::Text; in type()
|
D | tvgLottieModel.cpp | 49 case LottieProperty::Type::ColorStop: { in reset() 55 case LottieProperty::Type::Color: { in reset() 61 case LottieProperty::Type::TextDoc: { in reset() 82 case LottieProperty::Type::ColorStop: { in assign() 91 case LottieProperty::Type::Color: { in assign() 100 case LottieProperty::Type::TextDoc: { in assign() 339 void LottieGroup::prepare(LottieObject::Type type) in prepare() 351 if (child->type == LottieObject::Type::Trimpath) trimpath = true; in prepare()
|
D | tvgPicture.cpp | 158 return (uint32_t) Type::Picture; in identifier() 162 Type Picture::type() const noexcept in type() 164 return Type::Picture; in type()
|
D | tvgPaint.cpp | 39 case Type::Shape: ret = P((Shape*)paint)->METHOD; break; \ 40 case Type::Scene: ret = P((Scene*)paint)->METHOD; break; \ 41 case Type::Picture: ret = P((Picture*)paint)->METHOD; break; \ 42 case Type::Text: ret = P((Text*)paint)->METHOD; break; \ 261 if (target->type() == Type::Shape) { in update() 458 if (p && p->type() != Type::Shape) { in clip()
|
D | tvgLottieExpressions.cpp | 115 case LottieProperty::Type::Point: { in _value() 126 case LottieProperty::Type::Float: { in _value() 129 case LottieProperty::Type::Opacity: { in _value() 132 case LottieProperty::Type::PathSet: { in _value() 137 case LottieProperty::Type::Position: { in _value() 193 if ((*c)->type == LottieObject::Type::Transform) { in _buildGroup() 767 case LottieProperty::Type::Point: { in _velocityAtTime() 772 case LottieProperty::Type::Position: { in _velocityAtTime() 777 case LottieProperty::Type::Float: { in _velocityAtTime() 803 case LottieProperty::Type::Point: { in _speedAtTime() [all …]
|
D | tvgShape.cpp | 57 return (uint32_t) Type::Shape; in identifier() 61 Type Shape::type() const noexcept in type() 63 return Type::Shape; in type()
|
D | tvgText.h | 121 if (fill->type() == Type::LinearGradient) { in update()
|
D | tvgScene.h | 108 if (paints.size() == 1 && paints.front()->type() == Type::Shape) return false; in needComposition()
|
D | tvgSwFill.cpp | 72 if (fdata->type() == Type::RadialGradient) { in _estimateAAMargin() 834 if (fdata->type() == Type::LinearGradient) { in fillGenColorTable() 836 } else if (fdata->type() == Type::RadialGradient) { in fillGenColorTable()
|
D | tvgSwRaster.cpp | 1744 …if (type == Type::LinearGradient) return _rasterLinearGradientRect(surface, shape->bbox, shape->fi… in rasterGradientShape() 1745 …else if (type == Type::RadialGradient)return _rasterRadialGradientRect(surface, shape->bbox, shape… in rasterGradientShape() 1747 …if (type == Type::LinearGradient) return _rasterLinearGradientRle(surface, shape->rle, shape->fill… in rasterGradientShape() 1748 …else if (type == Type::RadialGradient) return _rasterRadialGradientRle(surface, shape->rle, shape-… in rasterGradientShape() 1764 …if (type == Type::LinearGradient) return _rasterLinearGradientRle(surface, shape->strokeRle, shape… in rasterGradientStroke() 1765 …else if (type == Type::RadialGradient) return _rasterRadialGradientRle(surface, shape->strokeRle, … in rasterGradientStroke()
|
/lvgl-latest/scripts/gdb/lvglgdb/ |
D | value.py | 22 def cast(self, type_name: str | gdb.Type, ptr: bool = False) -> Optional['Value']: argument
|
D | lvgl.py | 19 def __init__(self, ll: Value, nodetype: Union[gdb.Type, str] = None): argument
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | prettywriter.h | 201 bool RawValue(const Ch* json, size_t length, Type type) { in RawValue() 208 void PrettyPrefix(Type type) { in PrettyPrefix()
|
D | document.h | 192 typedef typename internal::MaybeAddConst<Const,PlainType>::Type ValueType; 505 …eImpl<T, typename Void<typename T::EncodingType>::Type, typename Void<typename T::AllocatorType>::… 506 : IsBaseOf<GenericValue<typename T::EncodingType, typename T::AllocatorType>, T>::Type {}; 509 template <typename T> struct IsGenericValue : IsGenericValueImpl<T>::Type {}; 720 explicit GenericValue(Type type) RAPIDJSON_NOEXCEPT : data_() { 1111 Type GetType() const { return static_cast<Type>(data_.f.flags & kTypeMask); } 1209 …RN((internal::NotExpr<internal::IsSame<typename internal::RemoveConst<T>::Type, Ch> >),(GenericVal… 1214 …RN((internal::NotExpr<internal::IsSame<typename internal::RemoveConst<T>::Type, Ch> >),(const Gene… 2513 …explicit GenericDocument(Type type, Allocator* allocator = 0, size_t stackCapacity = kDefaultStack… 2903 typedef typename internal::MaybeAddConst<Const,PlainType>::Type ValueType; [all …]
|
D | rapidjson.h | 729 enum Type {
|
D | writer.h | 272 bool RawValue(const Ch* json, size_t length, Type type) { in RawValue() 473 void Prefix(Type type) { in Prefix()
|
/lvgl-latest/docs/details/integration/chip/ |
D | alif.rst | 135 Press ctrl + shift + p. Type "preferences" and select the option 228 There is also an option to choose a "Build Type". For best performance, choose "release".
|