/lvgl-latest/src/libs/thorvg/ |
D | tvgLottieModifier.cpp | 43 pts.push(curr - 2.0f * dPrev); in _roundCorner() 44 pts.push(curr - dPrev); in _roundCorner() 45 pts.push(curr - dNext); in _roundCorner() 46 pts.push(curr - 2.0f * dNext); in _roundCorner() 47 cmds.push(PathCommand::LineTo); in _roundCorner() 48 cmds.push(PathCommand::CubicTo); in _roundCorner() 109 outPts.push(intersect); in corner() 111 outPts.push(line.pt2); in corner() 113 outCmds.push(PathCommand::CubicTo); in corner() 114 outPts.push((line.pt2 + intersect) * 0.5f); in corner() [all …]
|
D | tvgSvgPath.cpp | 251 cmds->push(PathCommand::CubicTo); in _pathAppendArcTo() 255 pts->push(p[0]); in _pathAppendArcTo() 256 pts->push(p[1]); in _pathAppendArcTo() 257 pts->push(p[2]); in _pathAppendArcTo() 354 cmds->push(PathCommand::MoveTo); in _processCommand() 355 pts->push(p); in _processCommand() 363 cmds->push(PathCommand::LineTo); in _processCommand() 364 pts->push(p); in _processCommand() 371 cmds->push(PathCommand::CubicTo); in _processCommand() 375 pts->push(p[0]); in _processCommand() [all …]
|
D | tvgSwShape.cpp | 37 outline.cntrs.push(outline.pts.count - 1); in _outlineBegin() 38 outline.closed.push(false); in _outlineBegin() 39 outline.pts.push(outline.pts[outline.cntrs.last()]); in _outlineBegin() 40 outline.types.push(SW_CURVE_TYPE_POINT); in _outlineBegin() 48 outline.cntrs.push(outline.pts.count - 1); in _outlineEnd() 49 outline.closed.push(false); in _outlineEnd() 59 outline.pts.push(mathTransform(to, transform)); in _outlineMoveTo() 60 outline.types.push(SW_CURVE_TYPE_POINT); in _outlineMoveTo() 67 outline.pts.push(mathTransform(to, transform)); in _outlineLineTo() 68 outline.types.push(SW_CURVE_TYPE_POINT); in _outlineLineTo() [all …]
|
D | tvgLottieParser.cpp | 228 outCmds.push(PathCommand::MoveTo); in getValue() 229 outPts.push(*pt); in getValue() 232 outCmds.push(PathCommand::CubicTo); in getValue() 233 outPts.push(*(pt - 1) + *(out - 1)); in getValue() 234 outPts.push(*pt + *in); in getValue() 235 outPts.push(*pt); in getValue() 239 outPts.push(pts.last() + outs.last()); in getValue() 240 outPts.push(pts.first() + ins.first()); in getValue() 241 outPts.push(pts.first()); in getValue() 242 outCmds.push(PathCommand::CubicTo); in getValue() [all …]
|
D | tvgShape.h | 185 rs.path.cmds.push(PathCommand::MoveTo); in moveTo() 186 rs.path.pts.push({x, y}); in moveTo() 191 rs.path.cmds.push(PathCommand::LineTo); in lineTo() 192 rs.path.pts.push({x, y}); in lineTo() 197 rs.path.cmds.push(PathCommand::CubicTo); in cubicTo() 198 rs.path.pts.push({cx1, cy1}); in cubicTo() 199 rs.path.pts.push({cx2, cy2}); in cubicTo() 200 rs.path.pts.push({x, y}); in cubicTo() 208 rs.path.cmds.push(PathCommand::Close); in close() 371 dup->rs.path.cmds.push(rs.path.cmds); in duplicate() [all …]
|
D | tvgLottieBuilder.cpp | 326 parent->scene->push(cast(ctx->merging)); in _draw() 335 propagators.push(ctx->propagator); in _repeat() 362 shapes.push(shape); in _repeat() 369 //push repeat shapes in order. in _repeat() 372 parent->scene->push(cast(*shape)); in _repeat() 373 propagators.push(*shape); in _repeat() 377 parent->scene->push(cast(*shape)); in _repeat() 378 propagators.push(*shape); in _repeat() 854 ctx->repeaters.push(r); in updateRepeater() 977 layer->scene->push(cast(solidFill)); in updateSolid() [all …]
|
D | tvgSwImage.cpp | 59 outline->pts.push(mathTransform(&to[i], transform)); in _genOutline() 60 outline->types.push(SW_CURVE_TYPE_POINT); in _genOutline() 63 outline->pts.push(outline->pts[0]); in _genOutline() 64 outline->types.push(SW_CURVE_TYPE_POINT); in _genOutline() 65 outline->cntrs.push(outline->pts.count - 1); in _genOutline() 66 outline->closed.push(true); in _genOutline()
|
D | tvgLottieModel.cpp | 158 pooler.push(picture); in prepare() 239 output.push(cs); in populate() 249 output.push(cs); in populate() 262 output.push(cs); in populate() 446 statical.pooler.push(clipper); in prepare() 453 statical.pooler.push(solidFill); in prepare()
|
D | tvgSvgSceneBuilder.cpp | 603 loaderData.images.push(decoded); in _imageBuildHelper() 850 … scene->push(_useBuildHelper(loaderData, *child, vBox, svgPath, depth + 1, isMaskWhite)); in _sceneBuildHelper() 852 … scene->push(_sceneBuildHelper(loaderData, *child, vBox, svgPath, false, depth + 1, isMaskWhite)); in _sceneBuildHelper() 856 scene->push(std::move(image)); in _sceneBuildHelper() 861 if (text) scene->push(std::move(text)); in _sceneBuildHelper() 873 scene->push(std::move(shape)); in _sceneBuildHelper() 932 compositeLayer->push(std::move(docNode)); in svgSceneBuild() 935 root->push(std::move(compositeLayer)); in svgSceneBuild()
|
D | tvgTaskScheduler.cpp | 96 void push(Task* task) in push() function 119 taskQueues.push(new TaskQueue); in TaskSchedulerImpl() 120 threads.push(new thread); in TaskSchedulerImpl() 169 taskQueues[i % threads.count]->push(task); in request()
|
D | tvgSvgLoader.cpp | 379 (*dash).array.push(parsedValue); in _PARSE_TAG() 383 if ((*dash).array.count == 1) (*dash).array.push((*dash).array[0]); in _PARSE_TAG() 914 nodes.push({node, id}); in _postpone() 1460 if (parent) parent->child.push(node); in _createNode() 1739 polygon->pts.push(num_x); in _attrParsePolygonPoints() 1740 polygon->pts.push(num_y); in _attrParsePolygonPoints() 2855 dst.push(src[i]); in _cloneGradStops() 3015 child->stroke.dash.array.push(parent->stroke.dash.array[i]); in _styleInherit() 3090 to->stroke.dash.array.push(from->stroke.dash.array[i]); in _styleCopy() 3362 loader->stack.push(node); in _svgLoaderParserXmlOpen() [all …]
|
D | tvgLottieProperty.h | 164 outPts.push(pt); in _copy() 169 outPts.push(inPts); in _copy() 180 outCmds.push(inCmds); in _copy() 462 pts.push(pt); in operator() 611 result.push({offset, r, g, b, a}); in operator()
|
D | tvgScene.cpp | 79 Result Scene::push(unique_ptr<Paint> paint) noexcept in push() function in Scene 110 Result Scene::push(SceneEffect effect, ...) noexcept in push() function in Scene 131 pImpl->effects->push(re); in push()
|
D | thorvg.h | 224 * @see Scene::push(SceneEffect effect, ...) 635 virtual Result push(std::unique_ptr<Paint> paint) noexcept; 647 * @see Canvas::push() 687 …* @warning It's not allowed to change the viewport during Canvas::push() - Canvas::sync() or Canva… 1413 Result push(std::unique_ptr<Paint> paint) noexcept; 1424 * @see Scene::push(std::unique_ptr<Paint> paint) 1455 Result push(SceneEffect effect, ...) noexcept; 1684 …* @warning Do not access @p buffer during Canvas::push() - Canvas::sync(). It should not be access…
|
/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | regex.h | 195 *atomCountStack.template Push<unsigned>() = 0; in RAPIDJSON_DIAG_OFF() 212 *operatorStack.template Push<Operator>() = kAlternation; in RAPIDJSON_DIAG_OFF() 217 *operatorStack.template Push<Operator>() = kLeftParenthesis; in RAPIDJSON_DIAG_OFF() 218 *atomCountStack.template Push<unsigned>() = 0; in RAPIDJSON_DIAG_OFF() 281 *operandStack.template Push<Frag>() = Frag(s, s, s); in RAPIDJSON_DIAG_OFF() 320 State* s = states_.template Push<State>(); in RAPIDJSON_DIAG_OFF() 330 *operandStack.template Push<Frag>() = Frag(s, s, s); in RAPIDJSON_DIAG_OFF() 335 *operatorStack.template Push<Operator>() = kConcatenation; in RAPIDJSON_DIAG_OFF() 362 … *operandStack.template Push<Frag>() = Frag(e1.start, e2.out, Min(e1.minIndex, e2.minIndex)); in RAPIDJSON_DIAG_OFF() 371 …*operandStack.template Push<Frag>() = Frag(s, Append(e1.out, e2.out), Min(e1.minIndex, e2.minIndex… in RAPIDJSON_DIAG_OFF() [all …]
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | stringbuffer.h | 56 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() 62 // Push and pop a null terminator. This is safe. in ShrinkToFit() 63 *stack_.template Push<Ch>() = '\0'; in ShrinkToFit() 69 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); } in Push() function 74 // Push and pop a null terminator. This is safe. in GetString() 75 *stack_.template Push<Ch>() = '\0'; in GetString() 112 std::memset(stream.stack_.Push<char>(n), c, n * sizeof(c)); in PutN()
|
D | reader.h | 934 *stack_.template Push<Ch>() = c; in Put() 938 RAPIDJSON_FORCEINLINE void* Push(SizeType count) { in Push() function 940 return stack_.template Push<Ch>(count); in Push() 1115 char* q = reinterpret_cast<char*>(os.Push(length)); in ScanCopyUnescapedString() 1123 _mm_storeu_si128(reinterpret_cast<__m128i *>(os.Push(16)), s); in ScanCopyUnescapedString() 1279 char* q = reinterpret_cast<char*>(os.Push(length)); in ScanCopyUnescapedString() 1287 vst1q_u8(reinterpret_cast<uint8_t *>(os.Push(16)), s); in ScanCopyUnescapedString() 1420 RAPIDJSON_FORCEINLINE void Push(char) {} in Push() function 1443 RAPIDJSON_FORCEINLINE void Push(StackCharacter c) { in Push() function 1650 // dangerously close to INT_MIN (a pessimistic next digit 9 would push it into in ParseNumber() [all …]
|
D | writer.h | 218 new (level_stack_.template Push<Level>()) Level(false); in StartObject() 242 new (level_stack_.template Push<Level>()) Level(true); in StartArray() 515 char *buffer = os_->Push(11); in WriteInt() 523 char *buffer = os_->Push(10); in WriteUint() 531 char *buffer = os_->Push(21); in WriteInt64() 539 char *buffer = os_->Push(20); in WriteUint64() 567 char *buffer = os_->Push(25); in WriteDouble()
|
D | memorybuffer.h | 42 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() 47 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); } in Push() function 65 std::memset(memoryBuffer.stack_.Push<char>(n), c, n * sizeof(c)); in PutN()
|
D | schema.h | 373 *stack_.template Push<uint64_t>() = h; in EndObject() 383 *stack_.template Push<uint64_t>() = h; in EndArray() 414 *stack_.template Push<uint64_t>() = h; in WriteBuffer() 591 SchemaEntry *entry = schemaDocument->schemaMap_.template Push<SchemaEntry>(); in allocator_() 1753 *documentStack.template Push<Ch>() = '/'; in AppendIndexToken() 1757 *documentStack.template Push<Ch>() = static_cast<Ch>(buffer[i]); in AppendIndexToken() 1766 char *buffer = documentStack.template Push<char>(1 + 10); // '/' + uint 1772 char *buffer = documentStack.template Push<char>(1 + 20); // '/' + uint64 2215 new (schemaRef_.template Push<SchemaRefPtr>()) SchemaRefPtr(&source); 2368 SchemaEntry *entry = schemaMap_.template Push<SchemaEntry>(); [all …]
|
D | document.h | 2820 bool Null() { new (stack_.template Push<ValueType>()) ValueType(); return true; } 2821 bool Bool(bool b) { new (stack_.template Push<ValueType>()) ValueType(b); return true; } 2822 bool Int(int i) { new (stack_.template Push<ValueType>()) ValueType(i); return true; } 2823 bool Uint(unsigned i) { new (stack_.template Push<ValueType>()) ValueType(i); return true; } 2824 bool Int64(int64_t i) { new (stack_.template Push<ValueType>()) ValueType(i); return true; } 2825 bool Uint64(uint64_t i) { new (stack_.template Push<ValueType>()) ValueType(i); return true; } 2826 bool Double(double d) { new (stack_.template Push<ValueType>()) ValueType(d); return true; } 2830 new (stack_.template Push<ValueType>()) ValueType(str, length, GetAllocator()); 2832 new (stack_.template Push<ValueType>()) ValueType(str, length); 2838 new (stack_.template Push<ValueType>()) ValueType(str, length, GetAllocator()); [all …]
|
/lvgl-latest/src/others/vg_lite_tvg/ |
D | vg_lite_tvg.cpp | 602 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(shape))); in vg_lite_clear() 623 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(picture))); in vg_lite_blit() 669 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(picture))); in vg_lite_blit_rect() 886 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(shape))); in vg_lite_draw() 1148 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(picture))); in vg_lite_draw_pattern() 1477 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(shape))); in vg_lite_draw_linear_grad() 1952 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(shape))); in vg_lite_draw_grad() 1994 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(shape))); in vg_lite_draw_radial_grad()
|
/lvgl-latest/scripts/ |
D | release_branch_updater.py | 169 print(LOG, "changes were made. ready to push.") 182 subprocess.check_call(("git", "-C", port_clone_tmpdir, "push", 188 print(LOG, "nothing to push for this release. it is up to date.")
|
/lvgl-latest/src/widgets/span/ |
D | lv_span.c | 459 lv_snippet_t snippet; /* use to save cur_span info and push it to stack */ in lv_spangroup_get_expand_height() 470 /* the loop control to find a line and push the relevant span info into stack */ in lv_spangroup_get_expand_height() 926 lv_snippet_t snippet; /* use to save cur_span info and push it to stack */ in lv_draw_span() 941 /* the loop control to find a line and push the relevant span info into stack */ in lv_draw_span()
|
/lvgl-latest/.github/workflows/ |
D | esp_upload_component.yml | 1 name: Push LVGL release to Espressif Component Service 5 push:
|