Home
last modified time | relevance | path

Searched refs:Vector (Results 1 - 25 of 32) sorted by relevance

12

/foundation/systemabilitymgr/samgr_lite/interfaces/kits/samgr/
H A Dcommon.h126 } Vector; typedef
141 Vector VECTOR_Make(VECTOR_Key key, VECTOR_Compare compare);
153 void VECTOR_Clear(Vector *vector);
166 int16 VECTOR_Add(Vector *vector, void *element);
179 int16 VECTOR_Size(Vector *vector);
193 int16 VECTOR_Num(Vector *vector);
206 void *VECTOR_At(Vector *vector, int16 index);
224 void *VECTOR_Swap(Vector *vector, int16 index, void *element);
238 int16 VECTOR_Find(Vector *vector, const void *element);
252 int16 VECTOR_FindByKey(Vector *vecto
[all...]
/foundation/systemabilitymgr/samgr_lite/samgr/source/
H A Dcommon.c20 Vector VECTOR_Make(VECTOR_Key key, VECTOR_Compare compare) in VECTOR_Make()
22 Vector vector = {0, 0, 0, NULL, key, compare}; in VECTOR_Make()
26 void VECTOR_Clear(Vector *vector) in VECTOR_Clear()
41 int16 VECTOR_Add(Vector *vector, void *element) in VECTOR_Add()
82 void *VECTOR_At(Vector *vector, int16 index) in VECTOR_At()
91 void *VECTOR_Swap(Vector *vector, int16 index, void *element) in VECTOR_Swap()
104 int16 VECTOR_Find(Vector *vector, const void *element) in VECTOR_Find()
112 int16 VECTOR_FindByKey(Vector *vector, const void *key) in VECTOR_FindByKey()
140 int16 VECTOR_Size(Vector *vector) in VECTOR_Size()
148 int16 VECTOR_Num(Vector *vecto
[all...]
H A Dsamgr_lite_inner.h58 Vector services;
H A Dsamgr_lite.c54 static void InitializeAllServices(Vector *services);
121 Vector initServices = VECTOR_Make(NULL, NULL); in SAMGR_Bootstrap()
188 static void InitializeAllServices(Vector *services) in InitializeAllServices()
259 Vector *services = &(samgr->services); in UnregisterService()
488 Vector *services = &(manager->services); in GetService()
544 Vector *services = &(samgr->services); in GetSpecifiedTaskPool()
H A Dservice_impl.h51 Vector features;
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/
H A Dvector.h37 template<typename T> class Vector : public HeapBase { class
39 Vector(uint16_t capacity = 1) : capacity_(capacity) in Vector() function in OHOS::Graphic::Vector
44 Vector(const Vector<T>& value) in Vector() function in OHOS::Graphic::Vector
56 virtual ~Vector() in ~Vector()
142 void Swap(Vector<T>& other) in Swap()
162 void operator=(const Vector<T>& value) in operator =()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/src/c_adapter/
H A Dbasic_rust_types.rs50 /// Vector enum in C side to adapt Vector generic types.
69 /// Hashmap enum in C side to adapt Vector generic types. String as the key, enum type only
83 /// Create a Vector enum according to ValueType.
86 /// For other functions relating to Vector usage, the pointer of Vector should be valid through
112 OhCloudExtVector::new(vec, SafetyCheckId::Vector).into_ptr()
115 /// Get ValueType of the Vector pointer.
124 let vector = match OhCloudExtVector::get_inner_ref(vector, SafetyCheckId::Vector) {
147 /// Push value into the Vector pointe
[all...]
H A Dcloud_extension.rs154 let assets = match OhCloudExtVector::get_inner_ref(assets, SafetyCheckId::Vector) {
197 let assets = match OhCloudExtVector::get_inner_ref(assets, SafetyCheckId::Vector) {
312 /// Insert records into a CloudDatabase, with table name, and two Vector of HashMap<String, Value>.
334 let value = match OhCloudExtVector::get_inner_ref(value, SafetyCheckId::Vector) {
342 let extend = match OhCloudExtVector::get_inner_mut(extend, SafetyCheckId::Vector) {
357 /// Update records in a CloudDatabase, with table name, and two Vector of HashMap<String, Value>.
378 let value = match OhCloudExtVector::get_inner_ref(value, SafetyCheckId::Vector) {
386 let extend = match OhCloudExtVector::get_inner_mut(extend, SafetyCheckId::Vector) {
401 /// Delete records from a CloudDatabase, with table name, and a Vector of HashMap<String, Value>.
421 let extend = match OhCloudExtVector::get_inner_mut(extend, SafetyCheckId::Vector) {
[all...]
H A Dcloud_ext_types.rs132 SafetyCheckId::Vector,
149 /// If the Value is Value::Assets or Value::Asset, the Vector pointer returned should be freed by
202 *content = OhCloudExtVector::new(vec, SafetyCheckId::Vector).into_ptr() as *mut c_void;
521 /// by basic_rust_types::Vector, and its type should be Vec<Field>. When passed in, fields don't
539 let fields = match OhCloudExtVector::get_inner(fields, SafetyCheckId::Vector) {
594 /// to hold the output Vector, and it should be freed by `VectorFree`.
609 *fields = OhCloudExtVector::new(vec, SafetyCheckId::Vector).into_ptr();
995 /// to hold the output Vector, and it should be freed by `VectorFree`.
1012 *dbs = OhCloudExtVector::new(vec, SafetyCheckId::Vector).into_ptr();
1176 *values = OhCloudExtVector::new(vec, SafetyCheckId::Vector)
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_collection_ffi.h45 using Vector##typeName##Handle = void*; \
47 CJ_EXPORT Vector##typeName##Handle FFICJCommonCreateVector##typeName(int64_t size); \
48 CJ_EXPORT void FFICJCommonVector##typeName##Delete(Vector##typeName##Handle vec); \
49 CJ_EXPORT int64_t FFICJCommonVector##typeName##GetSize(Vector##typeName##Handle vec); \
H A Dcj_collection_ffi.cpp31 Vector##cjType##Handle FFICJCommonCreateVector##cjType(int64_t size) \
36 void FFICJCommonVector##cjType##Delete(Vector##cjType##Handle vec) \
42 int64_t FFICJCommonVector##cjType##GetSize(Vector##cjType##Handle vec) \
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexprimitive/
H A Dgeometry_vertex_sequence.h89 class GeometryVertexSequence : public Graphic::Vector<VertexDist> {
91 using BaseType = Graphic::Vector<VertexDist>;
H A Dgeometry_math_stroke.h89 void CalcCap(Graphic::Vector<PointF>& vertexConsumer, const VertexDist& vd0, const VertexDist& vd1, float len) in CalcCap()
169 void CalcJoin(Graphic::Vector<PointF>& vertexConsumer, in CalcJoin()
268 void CalcMiter(Graphic::Vector<PointF>& vertexConsumer, in CalcMiter()
336 void CalcArc(Graphic::Vector<PointF>& vertexConsumer, float x, float y, float dx1, float dy1, float dx2, float dy2) in CalcArc()
430 inline void AddVertex(Graphic::Vector<PointF>& vertexConsumer, float x, float y) in AddVertex()
/foundation/systemabilitymgr/samgr_lite/samgr_client/source/
H A Dremote_register.h30 Vector clients;
/foundation/graphic/graphic_utils_lite/test/
H A Dvector_unit_test.cpp40 Vector<uint16_t>* vector_ = nullptr;
46 vector_ = new Vector<uint16_t>(); in SetUp()
250 Vector<uint16_t> copy; in HWTEST_F()
/foundation/systemabilitymgr/samgr_lite/samgr_server/source/
H A Dsamgr_server.h51 Vector sysCapabilitys;
/foundation/arkui/ui_lite/frameworks/font/
H A Dglyphs_manager.h52 Graphic::Vector<GlyphsFile *> glyphsFiles_;
/foundation/systemabilitymgr/samgr_lite/samgr_endpoint/source/
H A Dendpoint.h62 Vector routers;
H A Dsamgr_ipc_adapter.h45 Vector clients;
H A Dclient_factory.c29 static Vector g_factories;
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexgenerate/
H A Dvertex_generate_stroke.h124 Graphic::Vector<PointF> outVertices_;
/foundation/arkui/ui_lite/frameworks/components/
H A Droot_view.cpp79 static void DivideInvalidateRect(const Rect& originRect, Rect& leftoverRect, Vector<Rect>& splitRects) in DivideInvalidateRect()
147 Vector<Rect> copyRect(splitRects); in DivideInvalidateRect()
316 Vector<Rect> splitInvalidRects(MAX_SPLIT_NUM << 1); in OptimizeInvalidView()
394 Vector<Rect>& viewRenderRect = viewEntry.second; in DrawInvalidMap()
454 Vector<Rect>& invalidRects = invalidateMap_[view]; in AddInvalidateRect()
/foundation/arkui/ui_lite/interfaces/innerkits/font/
H A Dui_font_bitmap.h72 Graphic::Vector<int32_t> dynamicFontFd_;
/foundation/arkui/ui_lite/interfaces/kits/components/
H A Droot_view.h333 std::map<UIView*, Graphic::Vector<Rect>> invalidateMap_;
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/spancolorfill/
H A Dfill_gradient_lut.h180 Graphic::Vector<ColorPoint> colorProfile_;

Completed in 11 milliseconds

12