Searched refs:shapes (Results 1 - 11 of 11) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/particle/ |
H A D | particle_pattern.cpp | 22 std::unordered_map<ParticleDisturbanceShapeType, std::string> shapes = { member 28 auto it = shapes.find(type); in ShapeTypeToString() 29 if (it != shapes.end()) { in ShapeTypeToString()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | arkTheme.js | 345 this.shapes = new ArkSystemShapes(); 545 constructor(shapes = {}, baselineShapes) { 546 this.cornerRadius = new ArkCornerRadiusImpl(shapes === null || shapes === void 0 ? void 0 : shapes.cornerRadius, baselineShapes.cornerRadius); 547 this.paddings = new ArkPaddingsImpl(shapes === null || shapes === void 0 ? void 0 : shapes.paddings, baselineShapes.paddings); 548 this.borders = new ArkBordersImpl(shapes === null || shapes [all...] |
/foundation/graphic/graphic_3d/3d_widget_adapter/src/ |
H A D | widget_adapter.cpp | 97 bool WidgetAdapter::UpdateGeometries(const std::vector<std::shared_ptr<Geometry>>& shapes) in UpdateGeometries() argument 100 engine_->UpdateGeometries(shapes); in UpdateGeometries()
|
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v2_0/hdi_cpu_service/src/ |
H A D | prepared_model_service.cpp | 290 auto shapes = input.Shape(); in Compile() local 291 if (std::find(shapes.begin(), shapes.end(), DYNAMIC_SHAPE_FLAG) != shapes.end()) { in Compile()
|
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v1_0/hdi_cpu_service/src/ |
H A D | prepared_model_service.cpp | 245 auto shapes = input.Shape(); in Compile() local 246 if (std::find(shapes.begin(), shapes.end(), DYNAMIC_SHAPE_FLAG) != shapes.end()) { in Compile()
|
/foundation/graphic/graphic_3d/3d_widget_adapter/include/ |
H A D | widget_adapter.h | 54 bool UpdateGeometries(const std::vector<std::shared_ptr<Geometry>>& shapes);
|
H A D | i_engine.h | 67 virtual void UpdateGeometries(const std::vector<std::shared_ptr<Geometry>>& shapes) = 0;
|
/foundation/graphic/graphic_3d/3d_widget_adapter/test/ |
H A D | 3d_widget_adapter_test.h | 60 void UpdateGeometries(const std::vector<std::shared_ptr<Geometry>> &shapes) override;
|
H A D | 3d_widget_adapter_test.cpp | 94 void EngineTest::UpdateGeometries(const std::vector<std::shared_ptr<Geometry>> &shapes) in UpdateGeometries() argument 96 (void)(shapes); in UpdateGeometries()
|
/foundation/graphic/graphic_3d/3d_widget_adapter/core/include/lume/ |
H A D | lume_common.h | 134 void UpdateGeometries(const std::vector<std::shared_ptr<Geometry>>& shapes) override; 172 void LoadCustGeometry(const std::vector<std::shared_ptr<Geometry>>& shapes);
|
/foundation/graphic/graphic_3d/3d_widget_adapter/core/src/lume/ |
H A D | lume_common.cpp | 337 void LumeCommon::UpdateGeometries(const std::vector<std::shared_ptr<Geometry>>& shapes) in UpdateGeometries() argument 340 auto find = std::find_if(shapes.begin(), shapes.end(), [&shape](const std::shared_ptr<Geometry>& sNew) { in UpdateGeometries() 343 if (find == shapes.end()) { in UpdateGeometries() 349 LoadCustGeometry(shapes); in UpdateGeometries() 1260 void LumeCommon::LoadCustGeometry(const std::vector<std::shared_ptr<Geometry>>& shapes) in LoadCustGeometry() argument 1288 for (auto& shape : shapes) { in LoadCustGeometry()
|
Completed in 8 milliseconds