Home
last modified time | relevance | path

Searched refs:fIdx (Results 1 – 8 of 8) sorted by relevance

/third_party/node/deps/icu-small/source/common/
Dunistrappender.h46 UnicodeStringAppender(UnicodeString &dest) : fDest(&dest), fIdx(0) { } in UnicodeStringAppender()
49 if (fIdx == UPRV_LENGTHOF(fBuffer)) { in append()
50 fDest->append(fBuffer, 0, fIdx); in append()
51 fIdx = 0; in append()
53 fBuffer[fIdx++] = x; in append()
57 if (fIdx >= UPRV_LENGTHOF(fBuffer) - 1) { in append()
58 fDest->append(fBuffer, 0, fIdx); in append()
59 fIdx = 0; in append()
61 U16_APPEND_UNSAFE(fBuffer, fIdx, x); in append()
68 if (fIdx) { in flush()
[all …]
/third_party/icu/icu4c/source/common/
Dunistrappender.h46 UnicodeStringAppender(UnicodeString &dest) : fDest(&dest), fIdx(0) { } in UnicodeStringAppender()
49 if (fIdx == UPRV_LENGTHOF(fBuffer)) { in append()
50 fDest->append(fBuffer, 0, fIdx); in append()
51 fIdx = 0; in append()
53 fBuffer[fIdx++] = x; in append()
57 if (fIdx >= UPRV_LENGTHOF(fBuffer) - 1) { in append()
58 fDest->append(fBuffer, 0, fIdx); in append()
59 fIdx = 0; in append()
61 U16_APPEND_UNSAFE(fBuffer, fIdx, x); in append()
68 if (fIdx) { in flush()
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Dunistrappender.h46 UnicodeStringAppender(UnicodeString &dest) : fDest(&dest), fIdx(0) { } in UnicodeStringAppender()
49 if (fIdx == UPRV_LENGTHOF(fBuffer)) { in append()
50 fDest->append(fBuffer, 0, fIdx); in append()
51 fIdx = 0; in append()
53 fBuffer[fIdx++] = x; in append()
57 if (fIdx >= UPRV_LENGTHOF(fBuffer) - 1) { in append()
58 fDest->append(fBuffer, 0, fIdx); in append()
59 fIdx = 0; in append()
61 U16_APPEND_UNSAFE(fBuffer, fIdx, x); in append()
68 if (fIdx) { in flush()
[all …]
/third_party/skia/bench/
DVertBench.cpp46 uint16_t fIdx[IDX]; member in VertBench
72 uint16_t* idx = fIdx; in VertBench()
93 SkASSERT(IDX == idx - fIdx); in VertBench()
134 fPts, texs, cols, IDX, fIdx); in onDraw()
/third_party/node/deps/icu-small/source/i18n/
Dnfrs.cpp380 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in setDecimalFormatSymbols() local
381 NFRule *fractionRule = fractionRules[fIdx]; in setDecimalFormatSymbols()
797 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in appendRules() local
798 NFRule *fractionRule = fractionRules[fIdx]; in appendRules()
/third_party/skia/third_party/externals/icu/source/i18n/
Dnfrs.cpp380 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in setDecimalFormatSymbols() local
381 NFRule *fractionRule = fractionRules[fIdx]; in setDecimalFormatSymbols()
797 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in appendRules() local
798 NFRule *fractionRule = fractionRules[fIdx]; in appendRules()
/third_party/icu/icu4c/source/i18n/
Dnfrs.cpp380 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in setDecimalFormatSymbols() local
381 NFRule *fractionRule = fractionRules[fIdx]; in setDecimalFormatSymbols()
797 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in appendRules() local
798 NFRule *fractionRule = fractionRules[fIdx]; in appendRules()
/third_party/skia/tests/
DStreamTest.cpp412 : fData(data), fCount(n), fIdx(0) {} in DumbStream()
414 size_t copyCount = std::min(fCount - fIdx, size); in read()
416 memcpy(buffer, &fData[fIdx], copyCount); in read()
417 fIdx += copyCount; in read()
422 return fCount == fIdx; in isAtEnd()
426 size_t fCount, fIdx; member in __anonc721b3f90111::DumbStream