Home
last modified time | relevance | path

Searched refs:fEndIndex (Results 1 – 10 of 10) sorted by relevance

/third_party/node/deps/icu-small/source/i18n/unicode/
Dfieldpos.h124 : UObject(), fField(DONT_CARE), fBeginIndex(0), fEndIndex(0) {} in FieldPosition()
138 : UObject(), fField(field), fBeginIndex(0), fEndIndex(0) {} in FieldPosition()
146 … : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {} in FieldPosition()
211 int32_t getEndIndex(void) const { return fEndIndex; } in getEndIndex()
232 void setEndIndex(int32_t ei) { fEndIndex = ei; } in setEndIndex()
265 int32_t fEndIndex; variable
272 fEndIndex = copy.fEndIndex;
281 fEndIndex == copy.fEndIndex &&
/third_party/flutter/skia/third_party/externals/icu/source/i18n/unicode/
Dfieldpos.h122 : UObject(), fField(DONT_CARE), fBeginIndex(0), fEndIndex(0) {} in FieldPosition()
136 : UObject(), fField(field), fBeginIndex(0), fEndIndex(0) {} in FieldPosition()
144 … : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {} in FieldPosition()
209 int32_t getEndIndex(void) const { return fEndIndex; } in getEndIndex()
230 void setEndIndex(int32_t ei) { fEndIndex = ei; } in setEndIndex()
263 int32_t fEndIndex; variable
270 fEndIndex = copy.fEndIndex;
279 fEndIndex == copy.fEndIndex &&
/third_party/icu/icu4c/source/i18n/unicode/
Dfieldpos.h124 : UObject(), fField(DONT_CARE), fBeginIndex(0), fEndIndex(0) {} in FieldPosition()
138 : UObject(), fField(field), fBeginIndex(0), fEndIndex(0) {} in FieldPosition()
146 … : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {} in FieldPosition()
211 int32_t getEndIndex(void) const { return fEndIndex; } in getEndIndex()
232 void setEndIndex(int32_t ei) { fEndIndex = ei; } in setEndIndex()
265 int32_t fEndIndex; variable
272 fEndIndex = copy.fEndIndex;
281 fEndIndex == copy.fEndIndex &&
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Dfieldpos.h124 : UObject(), fField(DONT_CARE), fBeginIndex(0), fEndIndex(0) {} in FieldPosition()
138 : UObject(), fField(field), fBeginIndex(0), fEndIndex(0) {} in FieldPosition()
146 … : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {} in FieldPosition()
211 int32_t getEndIndex(void) const { return fEndIndex; } in getEndIndex()
232 void setEndIndex(int32_t ei) { fEndIndex = ei; } in setEndIndex()
265 int32_t fEndIndex; variable
272 fEndIndex = copy.fEndIndex;
281 fEndIndex == copy.fEndIndex &&
/third_party/skia/src/core/
DSkTBlockList.h399 if ((Forward && fIndex > fEndIndex) || (!Forward && fIndex < fEndIndex)) {
421 fEndIndex = End(*fBlock); in setIndices()
424 fEndIndex = 0; in setIndices()
427 SkASSERT((Forward && fIndex <= fEndIndex) || (!Forward && fIndex >= fEndIndex)); in setIndices()
432 int fEndIndex; variable
/third_party/skia/modules/skparagraph/include/
DMetrics.h49 , fEndIndex(end) in LineMetrics()
57 size_t fEndIndex = 0; variable
/third_party/skia/modules/canvaskit/
Dparagraph_bindings.cpp299 m.set("endIndex", metric.fEndIndex); in GetLineMetrics()
/third_party/skia/modules/skparagraph/tests/
DSkParagraphTest.cpp6385 REPORTER_ASSERT(reporter, metric.fEndIndex == std::get<2>(result)); in UNIX_ONLY_TEST()
6460 REPORTER_ASSERT(reporter, metric.fEndIndex == SkToU32(std::get<2>(result))); in UNIX_ONLY_TEST()
6529 …REPORTER_ASSERT(reporter, lm[0].fEndExcludingWhitespaces == 05 && lm[0].fEndIndex == 06 && lm[0].f… in UNIX_ONLY_TEST()
6530 …REPORTER_ASSERT(reporter, lm[1].fEndExcludingWhitespaces == 11 && lm[1].fEndIndex == 14 && lm[1].f… in UNIX_ONLY_TEST()
6531 …REPORTER_ASSERT(reporter, lm[2].fEndExcludingWhitespaces == 19 && lm[2].fEndIndex == 19 && lm[2].f… in UNIX_ONLY_TEST()
6532 …REPORTER_ASSERT(reporter, lm[3].fEndExcludingWhitespaces == 25 && lm[3].fEndIndex == 28 && lm[3].f… in UNIX_ONLY_TEST()
6559 …REPORTER_ASSERT(reporter, lm[0].fEndExcludingWhitespaces == 05 && lm[0].fEndIndex == 05 && lm[0].f… in UNIX_ONLY_TEST()
6560 …REPORTER_ASSERT(reporter, lm[1].fEndExcludingWhitespaces == 10 && lm[1].fEndIndex == 10 && lm[1].f… in UNIX_ONLY_TEST()
/third_party/skia/modules/skparagraph/src/
DTextLine.cpp914 result.fEndIndex = fOwner->getUTF16Index(fText.end); in getMetrics()
/third_party/skia/modules/skparagraph/samples/
DSampleParagraph.cpp3557 …<= %zu)\n", metric.fStartIndex, metric.fEndExcludingWhitespaces, metric.fEndIndex, metric.fEndIncl… in onDrawContent()