Home
last modified time | relevance | path

Searched refs:fBeginIndex (Results 1 – 3 of 3) sorted by relevance

/external/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()
202 int32_t getBeginIndex(void) const { return fBeginIndex; } in getBeginIndex()
225 void setBeginIndex(int32_t bi) { fBeginIndex = bi; } in setBeginIndex()
259 int32_t fBeginIndex; variable
273 fBeginIndex = copy.fBeginIndex;
282 fBeginIndex == copy.fBeginIndex);
/external/icu/libicu/cts_headers/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()
202 int32_t getBeginIndex(void) const { return fBeginIndex; } in getBeginIndex()
225 void setBeginIndex(int32_t bi) { fBeginIndex = bi; } in setBeginIndex()
259 int32_t fBeginIndex; variable
273 fBeginIndex = copy.fBeginIndex;
282 fBeginIndex == copy.fBeginIndex);
/external/skia/src/core/
DSkEnumerate.h59 , fBeginIndex{0}
68 constexpr Iterator begin() const { return Iterator{fBeginIndex, fBegin}; }
69 constexpr Iterator end() const { return Iterator{fBeginIndex + this->ssize(), fEnd}; }
76 return SkEnumerate{fBeginIndex, fBegin, std::prev(fEnd, deltaEnd)};
81 return SkEnumerate{fBeginIndex + deltaBegin, std::next(fBegin, deltaBegin), fEnd};
87 return SkEnumerate(fBeginIndex + offset, newBegin, std::next(newBegin, count));
92 : fBeginIndex{beginIndex}
97 const ptrdiff_t fBeginIndex;