Lines Matching defs:tempSpan

44     ListNode<StyleSpan*>* tempSpan = styleList_.Begin();
45 for (; tempSpan != styleList_.End(); tempSpan = tempSpan->next_) {
46 uint16_t tempStart = tempSpan->data_->start_;
47 uint16_t tempEnd = tempSpan->data_->end_;
49 textStyle = tempSpan->data_->textStyle_;
208 ListNode<FontSizeSpan>* tempSpan = sizeList_.Begin();
209 for (; tempSpan != sizeList_.End(); tempSpan = tempSpan->next_) {
211 uint16_t tempStart = tempSpan->data_.start;
212 uint16_t tempEnd = tempSpan->data_.end;
213 uint8_t tempSize = tempSpan->data_.fontSize;
215 needAddNode = EqualInsert<FontSizeSpan>(startIndex, endIndex, tempStart, tempEnd, &tempSpan, sizeList_);
225 needAddNode = UnequalInsert<FontSizeSpan>(startIndex, endIndex, tempStart, tempEnd, &tempSpan,
243 ListNode<FontSizeSpan>* tempSpan = sizeList_.Begin();
244 for (; tempSpan != sizeList_.End(); tempSpan = tempSpan->next_) {
245 uint16_t tempStart = tempSpan->data_.start;
246 uint16_t tempEnd = tempSpan->data_.end;
248 outputSize = tempSpan->data_.fontSize;
267 ListNode<FontIdSpan>* tempSpan = fontIdList_.Begin();
268 for (; tempSpan != fontIdList_.End(); tempSpan = tempSpan->next_) {
270 uint16_t tempStart = tempSpan->data_.start;
271 uint16_t tempEnd = tempSpan->data_.end;
272 uint16_t tempId = tempSpan->data_.fontId;
274 needAddNode = EqualInsert<FontIdSpan>(startIndex, endIndex, tempStart, tempEnd, &tempSpan, fontIdList_);
284 needAddNode = UnequalInsert<FontIdSpan>(startIndex, endIndex, tempStart, tempEnd, &tempSpan, fontIdList_,
301 ListNode<FontIdSpan>* tempSpan = fontIdList_.Begin();
302 for (; tempSpan != fontIdList_.End(); tempSpan = tempSpan->next_) {
303 uint16_t tempStart = tempSpan->data_.start;
304 uint16_t tempEnd = tempSpan->data_.end;
306 outputFontId = tempSpan->data_.fontId;
325 ListNode<LetterHeightSpan>* tempSpan = heightList_.Begin();
326 for (; tempSpan != heightList_.End(); tempSpan = tempSpan->next_) {
328 uint16_t tempStart = tempSpan->data_.start;
329 uint16_t tempEnd = tempSpan->data_.end;
330 int16_t tempHeight = tempSpan->data_.height;
333 EqualInsert<LetterHeightSpan>(startIndex, endIndex, tempStart, tempEnd, &tempSpan, heightList_);
343 needAddNode = UnequalInsert<LetterHeightSpan>(startIndex, endIndex, tempStart, tempEnd, &tempSpan,
363 ListNode<LetterHeightSpan>* tempSpan = heightList_.Begin();
364 for (; tempSpan != heightList_.End(); tempSpan = tempSpan->next_) {
365 uint16_t tempStart = tempSpan->data_.start;
366 uint16_t tempEnd = tempSpan->data_.end;
369 outputHeight = tempSpan->data_.height;
394 ListNode<BackgroundColorSpan>* tempSpan = backgroundColorList_.Begin();
395 for (; tempSpan != backgroundColorList_.End(); tempSpan = tempSpan->next_) {
397 uint16_t tempStart = tempSpan->data_.start;
398 uint16_t tempEnd = tempSpan->data_.end;
400 tempSize.full = tempSpan->data_.backgroundColor.full;
403 startIndex, endIndex, tempStart, tempEnd, &tempSpan,
415 startIndex, endIndex, tempStart, tempEnd, &tempSpan,
433 ListNode<BackgroundColorSpan>* tempSpan = backgroundColorList_.Begin();
434 for (; tempSpan != backgroundColorList_.End(); tempSpan = tempSpan->next_) {
435 uint16_t tempStart = tempSpan->data_.start;
436 uint16_t tempEnd = tempSpan->data_.end;
438 outputBackgroundColor.full = tempSpan->data_.backgroundColor.full;
457 ListNode<ForegroundColorSpan>* tempSpan = foregroundColorList_.Begin();
458 for (; tempSpan != foregroundColorList_.End(); tempSpan = tempSpan->next_) {
460 uint16_t tempStart = tempSpan->data_.start;
461 uint16_t tempEnd = tempSpan->data_.end;
463 tempSize.full= tempSpan->data_.fontColor.full;
466 startIndex, endIndex, tempStart, tempEnd, &tempSpan,
477 needAddNode = UnequalInsert<ForegroundColorSpan>(startIndex, endIndex, tempStart, tempEnd, &tempSpan,
495 ListNode<ForegroundColorSpan>* tempSpan = foregroundColorList_.Begin();
496 for (; tempSpan != foregroundColorList_.End(); tempSpan = tempSpan->next_) {
497 uint16_t tempStart = tempSpan->data_.start;
498 uint16_t tempEnd = tempSpan->data_.end;
500 outputForegroundColor.full = tempSpan->data_.fontColor.full;
519 ListNode<LineBackgroundColorSpan>* tempSpan = lineBackgroundColorList_.Begin();
520 for (; tempSpan != lineBackgroundColorList_.End(); tempSpan = tempSpan->next_) {
522 uint16_t tempStart = tempSpan->data_.start;
523 uint16_t tempEnd = tempSpan->data_.end;
525 tempSize.full = tempSpan->data_.linebackgroundColor.full;
528 startIndex, endIndex, tempStart, tempEnd, &tempSpan,
540 startIndex, endIndex, tempStart, tempEnd, &tempSpan,
558 ListNode<LineBackgroundColorSpan>* tempSpan = lineBackgroundColorList_.Begin();
559 for (; tempSpan != lineBackgroundColorList_.End(); tempSpan = tempSpan->next_) {
560 uint16_t tempStart = tempSpan->data_.start;
561 uint16_t tempEnd = tempSpan->data_.end;
563 outputLineBackgroundColor.full = tempSpan->data_.linebackgroundColor.full;