Home
last modified time | relevance | path

Searched refs:currentStyle (Results 1 – 4 of 4) sorted by relevance

/third_party/icu/icu4c/source/i18n/
Dlistformatter.cpp480 char currentStyle[kStyleLenMax+1]; in loadListFormatInternal() local
481 uprv_strncpy(currentStyle, style, kStyleLenMax); in loadListFormatInternal()
482 currentStyle[kStyleLenMax] = 0; in loadListFormatInternal()
485 ures_getAllItemsWithFallback(rb, currentStyle, sink, errorCode); in loadListFormatInternal()
486 …if (U_FAILURE(errorCode) || sink.aliasedStyle[0] == 0 || uprv_strcmp(currentStyle, sink.aliasedSty… in loadListFormatInternal()
489 uprv_strcpy(currentStyle, sink.aliasedStyle); in loadListFormatInternal()
/third_party/node/deps/icu-small/source/i18n/
Dlistformatter.cpp473 char currentStyle[kStyleLenMax+1]; in loadListFormatInternal() local
474 uprv_strncpy(currentStyle, style, kStyleLenMax); in loadListFormatInternal()
475 currentStyle[kStyleLenMax] = 0; in loadListFormatInternal()
478 ures_getAllItemsWithFallback(rb, currentStyle, sink, errorCode); in loadListFormatInternal()
479 …if (U_FAILURE(errorCode) || sink.aliasedStyle[0] == 0 || uprv_strcmp(currentStyle, sink.aliasedSty… in loadListFormatInternal()
482 uprv_strcpy(currentStyle, sink.aliasedStyle); in loadListFormatInternal()
/third_party/skia/third_party/externals/icu/source/i18n/
Dlistformatter.cpp480 char currentStyle[kStyleLenMax+1]; in loadListFormatInternal() local
481 uprv_strncpy(currentStyle, style, kStyleLenMax); in loadListFormatInternal()
482 currentStyle[kStyleLenMax] = 0; in loadListFormatInternal()
485 ures_getAllItemsWithFallback(rb, currentStyle, sink, errorCode); in loadListFormatInternal()
486 …if (U_FAILURE(errorCode) || sink.aliasedStyle[0] == 0 || uprv_strcmp(currentStyle, sink.aliasedSty… in loadListFormatInternal()
489 uprv_strcpy(currentStyle, sink.aliasedStyle); in loadListFormatInternal()
/third_party/skia/modules/skparagraph/src/
DParagraphImpl.cpp769 Block* currentStyle = fTextStyles.begin(); in GetLineFontMetrics() local
770 while (!cluster->startsIn(currentStyle->fRange)) { in GetLineFontMetrics()
771 currentStyle++; in GetLineFontMetrics()
772 SkASSERT(currentStyle != fTextStyles.end()); in GetLineFontMetrics()
775 SkASSERT(!currentStyle->fStyle.isPlaceholder()); in GetLineFontMetrics()
778 if (currentStyle->fStyle.getWordSpacing() != 0) { in GetLineFontMetrics()
785 SkScalar spacing = currentStyle->fStyle.getWordSpacing(); in GetLineFontMetrics()
793 if (currentStyle->fStyle.getLetterSpacing() != 0) { in GetLineFontMetrics()
794 shift += run.addSpacesEvenly(currentStyle->fStyle.getLetterSpacing(), cluster); in GetLineFontMetrics()