/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/ |
H A D | list.h | 54 ListNode<T>* next_; member in OHOS::ListNode 78 head_.next_ = &head_; in List() 99 return head_.next_->data_; in Front() 130 listNode->next_ = &head_; in PushBack() 131 head_.prev_->next_ = listNode; in PushBack() 152 listNode->next_ = head_.next_; in PushFront() 154 head_.next_->prev_ = listNode; in PushFront() 155 head_.next_ = listNode; in PushFront() 173 tmpTail->prev_->next_ in PopBack() [all...] |
/foundation/bundlemanager/bundle_framework_lite/utils/bundle_lite/ |
H A D | utils_list.h | 25 explicit Node(T value) : value_(value), next_(nullptr), prev_(nullptr) {}
in Node() 28 Node<T> *next_;
member 38 head_->next_ = head_;
in List() 55 return head_->next_->value_;
in Front() 66 node->next_ = head_->next_;
in PushFront() 67 head_->next_->prev_ = node;
in PushFront() 68 head_->next_ = node;
in PushFront() 78 Node<T> *node = head_->next_;
in PopFront() 79 node->next_ in PopFront() [all...] |
/foundation/arkui/napi/reference_manager/ |
H A D | native_reference_manager.cpp | 23 references_ = reinterpret_cast<ArkNativeReference*>(handler)->next_; in ~NativeReferenceManager() 32 reinterpret_cast<ArkNativeReference*>(reference)->next_ = references_; in CreateHandler() 40 NativeReference* next = reinterpret_cast<ArkNativeReference*>(reference)->next_; in ReleaseHandler() 43 reinterpret_cast<ArkNativeReference*>(prev)->next_ = next; in ReleaseHandler()
|
/foundation/multimodalinput/input/intention/cooperate/plugin/src/ |
H A D | i_cooperate_state.cpp | 54 next_ = next; in SetNext() 55 } else if (next_ != nullptr) { in SetNext() 56 next_->SetNext(nullptr); in SetNext() 57 next_ = nullptr; in SetNext() 73 if (next_ != nullptr) { in Proceed() 74 Switch(next_); in Proceed() 75 next_->OnProgress(context, event); in Proceed()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/property/ |
H A D | transition_property.h | 165 return next_;
in GetNext() 173 next_ = next;
in SetNext() 194 RefPtr<ChainedTransitionEffect> next_;
member in OHOS::Ace::NG::ChainedTransitionEffect 276 ans += ", successor: " + (next_ ? next_->ToString() : std::string("null")) + "}";
307 ans += ", successor: " + (next_ ? next_->ToString() : std::string("null")) + "}";
336 ans += ", successor: " + (next_ ? next_->ToString() : std::string("null")) + "}";
367 ans += ", successor: " + (next_ [all...] |
/foundation/ability/ability_lite/services/abilitymgr_lite/src/slite/ |
H A D | ability_record_observer_manager.cpp | 28 for (auto it = observers_.Begin(); it != observers_.End(); it = it->next_) { in AddObserver() 38 for (auto it = observers_.Begin(); it != observers_.End(); it = it->next_) { in RemoveObserver() 48 for (auto it = observers_.Begin(); it != observers_.End(); it = it->next_) { in NotifyAbilityRecordStateChanged() 57 for (auto it = observers_.Begin(); it != observers_.End(); it = it->next_) { in NotifyAbilityRecordCleanup()
|
H A D | ability_list.cpp | 54 for (auto node = abilityList_.Begin(); node != abilityList_.End(); node = node->next_) { in Get() 74 for (auto node = abilityList_.Begin(); node != abilityList_.End(); node = node->next_) { in Get() 89 for (auto node = abilityList_.Begin(); node != abilityList_.End(); node = node->next_) { in GetByTaskId() 104 for (auto node = abilityList_.Begin(); node != abilityList_.End(); node = node->next_) { in Erase() 120 for (auto node = abilityList_.Begin(); node != abilityList_.End(); node = node->next_) { in GetAbilityList() 180 for (auto it = abilityList_.Begin(); i < missionInfoList->length; it = it->next_) { in GetMissionInfos()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/stylemgr/ |
H A D | link_stack.h | 27 explicit StackNode(const char *data) : data_(data), prev_(nullptr), next_(nullptr) {} in StackNode() 42 next_ = next; in SetNodeNext() 57 return next_; in GetNodeNext() 62 StackNode *next_; member in OHOS::ACELite::final
|
H A D | link_queue.h | 27 explicit QueueNode(const char* data) : data_(data), next_(nullptr) {} in QueueNode() 36 next_ = next; in SetNodeNext() 46 return next_; in GetNodeNext() 51 QueueNode *next_; member in OHOS::ACELite::final
|
H A D | app_style.h | 27 AppStyle() : firstStyleItem_(nullptr), lastStyleItem_(nullptr), pre_(nullptr), next_(nullptr), styleName_(nullptr) in AppStyle() 65 next_ = nextStyle; in SetNext() 70 return next_; in GetNext() 93 AppStyle* next_; member in OHOS::ACELite::final
|
H A D | app_style_item.h | 83 next_(nullptr), in AppStyleItem() 140 return next_; in GetNext() 145 next_ = nextStyle; in SetNext() 217 AppStyleItem *next_; member in OHOS::ACELite::final
|
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/ |
H A D | bundle_map.cpp | 64 for (auto node = bundleInfos_->Begin(); node != bundleInfos_->End(); node = node->next_) { in Add() 91 for (auto oldNode = bundleInfos_->Begin(); oldNode != bundleInfos_->End(); oldNode = oldNode->next_) { in Update() 95 oldNode->prev_->next_ = newNode; in Update() 96 oldNode->next_->prev_ = newNode; in Update() 98 newNode->next_ = oldNode->next_; in Update() 122 for (auto node = bundleInfos_->Begin(); node != bundleInfos_->End(); node = node->next_) { in Get() 198 for (auto node = bundleInfos_->Begin(); node != bundleInfos_->End(); node = node->next_) { in GetBundleInfos() 212 for (auto node = bundleInfos_->Begin(); node != bundleInfos_->End(); node = node->next_) { in GetBundleInfosInner() 242 for (auto node = bundleInfos_->Begin(); node != bundleInfos_->End(); node = node->next_) { in GetBundleInfosNoReplication() [all...] |
/foundation/arkui/ui_lite/frameworks/core/ |
H A D | task_manager.cpp | 40 pos = pos->next_; in Add() 57 pos = pos->next_; in Remove() 78 node = node->next_; in TaskHandler()
|
/foundation/arkui/ui_lite/frameworks/components/ |
H A D | ui_tree_manager.cpp | 35 p = p->next_;
in RegistViewLifeEvent() 48 p = p->next_;
in UnregistViewLifeEvent() 65 p = p->next_;
in OnLifeEvent()
|
/foundation/distributeddatamgr/kv_store/frameworks/common/ |
H A D | lru_bucket.h | 182 Node *next_ = this; member 199 node->prev_->next_ = node->next_; in Remove() 200 node->next_->prev_ = node->prev_; in Remove() 206 prev->next_->prev_ = node; in Insert() 207 node->next_ = prev->next_; in Insert() 208 prev->next_ = node; in Insert()
|
/foundation/distributeddatamgr/relational_store/rdbmock/frameworks/native/rdb/ |
H A D | lru_bucket.h | 182 Node *next_ = this; member 199 node->prev_->next_ = node->next_; in Remove() 200 node->next_->prev_ = node->prev_; in Remove() 206 prev->next_->prev_ = node; in Insert() 207 node->next_ = prev->next_; in Insert() 208 prev->next_ = node; in Insert()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/cloud/ |
H A D | sync_strategy.cpp | 25 next_ = next; in SetNext() 26 return next_; in SetNext()
|
/foundation/arkui/ui_lite/frameworks/common/ |
H A D | input_device_manager.cpp | 57 node = node->next_; in Remove() 66 node = node->next_; in Callback() 81 node = node->next_; in OnViewLifeEvent()
|
H A D | spannable_string.cpp | 45 for (; tempSpan != styleList_.End(); tempSpan = tempSpan->next_) { in GetTextStyle() 65 for (auto iter = styleList_.Begin(); iter != styleList_.End(); iter = iter->next_) { in Reset() 99 node = node->next_; in SetSpannableString() 104 node_id = node_id->next_; in SetSpannableString() 109 node_height = node_height->next_; in SetSpannableString() 114 node_span = node_span->next_; in SetSpannableString() 121 node_backColor = node_backColor->next_; in SetSpannableString() 126 node_foreColor = node_foreColor->next_; in SetSpannableString() 133 node_lineBackColor = node_lineBackColor->next_; in SetSpannableString() 209 for (; tempSpan != sizeList_.End(); tempSpan = tempSpan->next_) { in SetFontSize() [all...] |
/foundation/arkui/ui_lite/frameworks/animator/ |
H A D | animator_manager.cpp | 44 pos = pos->next_; in Add() 61 pos = pos->next_; in Remove() 80 pos = pos->next_; in AnimatorTask()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/base/ |
H A D | lazy_load_manager.cpp | 41 node = node->next_;
in ResetWatchers() 57 node = node->next_;
in RenderLazyLoadWatcher() 123 node = node->next_;
in RemoveLazyWatcher() 133 node = node->next_;
in RemoveLazyWatcher()
|
/foundation/barrierfree/accessibility/services/aams/test/mock/src/ |
H A D | mock_accessibility_event_transmission.cpp | 52 next_ = next; in SetNext() 58 return next_; in GetNext()
|
/foundation/barrierfree/accessibility/services/test/moduletest/mock/src/ |
H A D | mock_mt_accessibility_event_transmission.cpp | 52 next_ = next; in SetNext() 58 return next_; in GetNext()
|
/foundation/barrierfree/accessibility/services/aams/src/ |
H A D | accessibility_event_transmission.cpp | 57 next_ = next; in SetNext() 64 return next_; in GetNext()
|
/foundation/graphic/graphic_2d/rosen/modules/effect/effectChain/src/ |
H A D | filter.cpp | 41 next_ = next;
in AddNextFilter() 62 return next_;
in GetNextFilter()
|