Searched refs:tempSpan (Results 1 - 4 of 4) sorted by relevance
/foundation/arkui/ui_lite/frameworks/common/ |
H A D | spannable_string.cpp | 44 ListNode<StyleSpan*>* tempSpan = styleList_.Begin(); in GetTextStyle() local 45 for (; tempSpan != styleList_.End(); tempSpan = tempSpan->next_) { in GetTextStyle() 46 uint16_t tempStart = tempSpan->data_->start_; in GetTextStyle() 47 uint16_t tempEnd = tempSpan->data_->end_; in GetTextStyle() 49 textStyle = tempSpan->data_->textStyle_; in GetTextStyle() 208 ListNode<FontSizeSpan>* tempSpan = sizeList_.Begin(); in SetFontSize() local 209 for (; tempSpan != sizeList_.End(); tempSpan in SetFontSize() 243 ListNode<FontSizeSpan>* tempSpan = sizeList_.Begin(); GetFontSize() local 267 ListNode<FontIdSpan>* tempSpan = fontIdList_.Begin(); SetFontId() local 301 ListNode<FontIdSpan>* tempSpan = fontIdList_.Begin(); GetFontId() local 325 ListNode<LetterHeightSpan>* tempSpan = heightList_.Begin(); SetFontHeight() local 363 ListNode<LetterHeightSpan>* tempSpan = heightList_.Begin(); GetFontHeight() local 394 ListNode<BackgroundColorSpan>* tempSpan = backgroundColorList_.Begin(); SetBackgroundColor() local 433 ListNode<BackgroundColorSpan>* tempSpan = backgroundColorList_.Begin(); GetBackgroundColor() local 457 ListNode<ForegroundColorSpan>* tempSpan = foregroundColorList_.Begin(); SetForegroundColor() local 495 ListNode<ForegroundColorSpan>* tempSpan = foregroundColorList_.Begin(); GetForegroundColor() local 519 ListNode<LineBackgroundColorSpan>* tempSpan = lineBackgroundColorList_.Begin(); SetLineBackgroundColor() local 558 ListNode<LineBackgroundColorSpan>* tempSpan = lineBackgroundColorList_.Begin(); GetLineBackgroundColor() local [all...] |
/foundation/arkui/ui_lite/interfaces/kits/common/ |
H A D | spannable_string.h | 124 ListNode<SpanType>** tempSpan, in EqualInsert() 132 if (*tempSpan == nullptr) { in EqualInsert() 139 *tempSpan = tempList.Remove(*tempSpan)->prev_; in EqualInsert() 141 *tempSpan = tempList.Remove(*tempSpan)->prev_; in EqualInsert() 144 if (*tempSpan == nullptr) { in EqualInsert() 153 *tempSpan = tempList.Remove(*tempSpan)->prev_; in EqualInsert() 165 ListNode<SpanType>** tempSpan, in UnequalInsert() 120 EqualInsert(uint16_t& startIndex, uint16_t& endIndex, uint16_t tempStart, uint16_t tempEnd, ListNode<SpanType>** tempSpan, List<SpanType>& tempList) EqualInsert() argument 161 UnequalInsert(uint16_t& startIndex, uint16_t& endIndex, uint16_t tempStart, uint16_t tempEnd, ListNode<SpanType>** tempSpan, List<SpanType>& tempList, SpanType tempLeft, SpanType tempRight) UnequalInsert() argument [all...] |
/foundation/multimedia/audio_framework/services/audio_service/client/src/ |
H A D | audio_process_in_client.cpp | 1472 SpanInfo *tempSpan = audioBuffer_->GetSpanInfo(curWritePos); in PrepareCurrent() local 1473 if (tempSpan == nullptr) { in PrepareCurrent() 1480 while (!tempSpan->spanStatus.compare_exchange_strong(targetStatus, SpanStatus::SPAN_WRITTING) && tryCount > 0) { in PrepareCurrent() 1490 tempSpan->writeStartTime = ClockTime::GetCurNano(); in PrepareCurrent() 1508 SpanInfo *tempSpan = audioBuffer_->GetSpanInfo(curWritePos); in FinishHandleCurrent() local 1509 CHECK_AND_RETURN_RET_LOG(tempSpan != nullptr, false, "GetSpanInfo failed!"); in FinishHandleCurrent() 1514 if (tempSpan->spanStatus.load() == targetStatus) { in FinishHandleCurrent() 1518 tempSpan->spanStatus.store(SpanStatus::SPAN_WRITE_DONE); in FinishHandleCurrent() 1522 tempSpan->writeDoneTime = ClockTime::GetCurNano(); in FinishHandleCurrent() 1523 tempSpan in FinishHandleCurrent() [all...] |
/foundation/multimedia/audio_framework/services/audio_service/server/src/ |
H A D | audio_endpoint.cpp | 1787 SpanInfo *tempSpan = processBufferList_[i]->GetSpanInfo(eachCurReadPos); in PrepareNextLoop() local 1788 CHECK_AND_RETURN_RET_LOG(tempSpan != nullptr, false, in PrepareNextLoop() 1793 if (tempSpan->spanStatus.compare_exchange_strong(targetStatus, SpanStatus::SPAN_READ_DONE)) { in PrepareNextLoop() 1794 tempSpan->readDoneTime = curReadDoneTime; in PrepareNextLoop()
|
Completed in 8 milliseconds