Home
last modified time | relevance | path

Searched refs:reference (Results 1 - 25 of 76) sorted by relevance

1234

/foundation/arkui/napi/reference_manager/
H A Dnative_reference_manager.cpp28 void NativeReferenceManager::CreateHandler(NativeReference* reference) in CreateHandler() argument
31 reinterpret_cast<ArkNativeReference*>(references_)->prev_ = reference; in CreateHandler()
32 reinterpret_cast<ArkNativeReference*>(reference)->next_ = references_; in CreateHandler()
34 references_ = reference; in CreateHandler()
37 void NativeReferenceManager::ReleaseHandler(NativeReference* reference) in ReleaseHandler() argument
39 NativeReference* prev = reinterpret_cast<ArkNativeReference*>(reference)->prev_; in ReleaseHandler()
40 NativeReference* next = reinterpret_cast<ArkNativeReference*>(reference)->next_; in ReleaseHandler()
45 // reference is the head node. in ReleaseHandler()
H A Dnative_reference_manager.h27 void CreateHandler(NativeReference* reference);
28 void ReleaseHandler(NativeReference* reference);
/foundation/ability/ability_runtime/frameworks/js/napi/app/ability_delegator/
H A Djs_ability_delegator_registry.cpp30 thread_local std::unique_ptr<NativeReference> reference; member
40 reference.reset(); in Finalizer()
63 if (!reference) { in OnGetAbilityDelegator()
67 reference.reset(reinterpret_cast<NativeReference*>(ref)); in OnGetAbilityDelegator()
70 return reference->GetNapiValue(); in OnGetAbilityDelegator()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/components/
H A Drender_handle_component_manager.cpp84 return components_[index].data_.reference;
92 return components_[index].data_.reference;
100 return components_[index].data_.reference.GetHandle();
108 return components_[index].data_.reference.GetHandle();
117 const BaseComponentHandle& component) { return component.data_.reference.GetHandle() == handle; });
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/containers/
H A Diterator.h50 using reference = typename T::const_reference;
77 constexpr reference operator*() const noexcept
150 using reference = typename T::reference;
176 constexpr reference operator*() const noexcept
184 constexpr reference operator*() noexcept
262 using reference = typename Iter::reference;
297 constexpr reference operator*() const in operator *()
371 using reference
[all...]
H A Darray_view.h38 using reference = value_type&;
87 constexpr reference at(size_type aIndex) noexcept
99 constexpr reference operator[](size_type aIndex)
H A Dunordered_map.h58 using reference = typename base_container::const_reference;
68 constexpr reference operator*() const noexcept
121 using reference = typename base_container::reference;
129 constexpr reference operator*() const noexcept
139 constexpr reference operator*() noexcept
222 using reference = value_type&;
H A Dvector.h68 using reference = const E&;
141 using reference = value_type&;
475 reference at(size_type index) in at()
487 reference operator[](size_type index) in operator []()
499 reference front() in front()
511 reference back() in back()
794 reference emplace_back(Args&&... args) in emplace_back()
1236 // Wrapper to create a "re-seatable" reference.
/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/src/
H A Darray_view.h34 using reference = T&;
38 reference operator*() const in operator *()
72 using reference = value_type&;
122 constexpr reference at(size_type aIndex) noexcept
134 constexpr reference operator[](size_type aIndex)
/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/ecs/components/
H A Drender_handle_component.h34 * component should be wrapped in an EntityReference to allow reference counted usage of the resource from other
35 * components. When a RenderHandleComponent is destroyed it releases its render handle reference. Once all references
44 DEFINE_PROPERTY(RENDER_NS::RenderHandleReference, reference, "Render Handle Reference", 0, )
48 // The following getters are helpers for asking a handle or handle reference without first asking the component.
49 /** Get render handle reference.
51 * @return If the entity had a RenderHandleComponent the component's handle reference is returned.
54 /** Get render handle reference.
56 * @return The handle reference of the component at the given index is returned.
62 * @return If the entity had a RenderHandleComponent the component's handle reference is returned.
78 * Helper function to get or create entity reference fo
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_v2/grid_layout/
H A Dgrid_container_util_class.h136 BreakPoints, (reference)(breakpoints))
137 BreakPointsReference reference = BreakPointsReference::WindowSize; member in OHOS::Ace::V2::BreakPoints
H A Dgrid_container_utils.cpp50 if (breakpoints.reference == BreakPointsReference::WindowSize) { in ProcessGridSizeType()
73 if (breakpoints->reference == BreakPointsReference::WindowSize) { in ProcessGridSizeType()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/
H A Drelational_schema_object.cpp190 for (const auto &reference : referenceProperty_) {
191 res += GetOneReferenceString(reference) + ",";
199 std::string RelationalSchemaObject::GetOneReferenceString(const TableReferenceProperty &reference)
202 res += reference.sourceTableName;
204 res += reference.targetTableName;
206 for (const auto &item : reference.columns) {
250 for (const auto &reference : left) {
253 if (ReferenceCompare(reference, otherRef)) {
259 changeTables.insert(reference.sourceTableName);
260 changeTables.insert(reference
[all...]
/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dspunge.c67 osSock->reference++; in SockSetOsSocket()
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dgrid_row_modifier.cpp107 void SetBreakpoints(ArkUINodeHandle node, int32_t reference, const ArkUI_Float32* pointValues, in SetBreakpoints() argument
114 parsedBreakpoints->reference = static_cast<V2::BreakPointsReference>(reference); in SetBreakpoints()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_grid_row.cpp211 auto reference = breakpoints->GetProperty("reference"); in ParserBreakpoints() local
213 if (reference->IsNumber()) { in ParserBreakpoints()
214 breakpoint->reference = static_cast<V2::BreakPointsReference>(reference->ToNumber<int32_t>()); in ParserBreakpoints()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_grid_row_bridge.cpp109 int32_t reference = 0; in SetBreakpoints() local
111 reference = threeArg->Int32Value(vm); in SetBreakpoints()
119 nativeNode, reference, pointValues.data(), pointStr.data(), size); in SetBreakpoints()
126 nativeNode, reference, pointValues.data(), pointStr.data(), size); in SetBreakpoints()
141 GetArkUINodeModifiers()->getGridRowModifier()->setBreakpoints(nativeNode, reference, pointValues.data(), in SetBreakpoints()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/
H A Dnet.c37 osSock->reference--; in NetconnFreeOsSocket()
38 if (osSock->reference <= 0) { in NetconnFreeOsSocket()
/foundation/arkui/ace_engine/test/unittest/core/pattern/grid_row/
H A Dgrid_row_new_test_ng.cpp69 breakpoints.reference = V2::BreakPointsReference::WindowSize; in HWTEST_F()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_cloud_interfaces_reference_test.cpp81 * @tc.desc: Test empty args for set reference interface
124 * @tc.desc: Test set two reference for same two tables
286 * @tc.desc: Test reference table doesn't create distributed table
294 * @tc.steps:step1. set reference with table doesn't exists in HWTEST_F()
308 * @tc.steps:step2. set reference with table doesn't create distributed table in HWTEST_F()
318 * @tc.steps:step3. set reference with one table doesn't create distributed table in HWTEST_F()
328 * @tc.desc: Test reference table doesn't create cloud sync distributed table
349 * @tc.steps:step2. set reference with column doesn't exists in HWTEST_F()
365 * @tc.desc: Test reference col doesn't exists table
386 * @tc.steps:step2. set reference wit in HWTEST_F()
459 TableReferenceProperty reference; NormalSetReferenceTest() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid_row/
H A Dgrid_row_layout_property.cpp68 if (breakPoints.reference == V2::BreakPointsReference::WindowSize) { in ToJsonValue()
73 json->PutExtAttr("reference", str.c_str(), filter); in ToJsonValue()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/include/
H A Dnet.h44 FILLP_INT reference; member
/foundation/ability/ability_runtime/services/dataobsmgr/include/
H A Dconcurrent_map.h34 using reference = typename std::map<_Key, _Tp>::reference;
/foundation/ability/ability_runtime/interfaces/inner_api/runtime/include/
H A Djs_runtime.h124 void FreeNativeReference(std::unique_ptr<NativeReference> reference);
125 void FreeNativeReference(std::shared_ptr<NativeReference>&& reference);
/foundation/distributeddatamgr/kv_store/frameworks/common/
H A Dconcurrent_map.h34 using reference = typename std::map<_Key, _Tp>::reference;

Completed in 13 milliseconds

1234