Home
last modified time | relevance | path

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

/third_party/icu/icu4c/source/common/
H A 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()
82 int32_t fIdx; global() member in UnicodeStringAppender
[all...]
/third_party/node/deps/icu-small/source/common/
H A 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()
82 int32_t fIdx; global() member in UnicodeStringAppender
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A 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()
82 int32_t fIdx; global() member in UnicodeStringAppender
[all...]
/third_party/skia/bench/
H A 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);
/third_party/icu/icu4c/source/i18n/
H A Dnfrs.cpp380 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in setDecimalFormatSymbols()
381 NFRule *fractionRule = fractionRules[fIdx]; in setDecimalFormatSymbols()
797 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in appendRules()
798 NFRule *fractionRule = fractionRules[fIdx]; in appendRules()
/third_party/node/deps/icu-small/source/i18n/
H A Dnfrs.cpp380 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in setDecimalFormatSymbols()
381 NFRule *fractionRule = fractionRules[fIdx]; in setDecimalFormatSymbols()
797 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in appendRules()
798 NFRule *fractionRule = fractionRules[fIdx]; in appendRules()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnfrs.cpp380 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in setDecimalFormatSymbols()
381 NFRule *fractionRule = fractionRules[fIdx]; in setDecimalFormatSymbols()
797 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in appendRules()
798 NFRule *fractionRule = fractionRules[fIdx]; in appendRules()
/third_party/skia/tests/
H A DStreamTest.cpp412 : fData(data), fCount(n), fIdx(0) {} in DumbStream()
414 size_t copyCount = std::min(fCount - fIdx, size);
416 memcpy(buffer, &fData[fIdx], copyCount);
417 fIdx += copyCount;
422 return fCount == fIdx;
426 size_t fCount, fIdx; member in __anon19094::DumbStream

Completed in 9 milliseconds