Searched refs:fIdx (Results 1 – 5 of 5) sorted by relevance
/external/icu/icu4c/source/common/ |
D | unistrappender.h | 46 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 …]
|
/external/icu/icu4c/source/i18n/ |
D | affixpatternparser.cpp | 398 AffixPatternAppender(AffixPattern &dest) : fDest(&dest), fIdx(0) { } in AffixPatternAppender() 401 if (fIdx == UPRV_LENGTHOF(fBuffer)) { in append() 402 fDest->addLiteral(fBuffer, 0, fIdx); in append() 403 fIdx = 0; in append() 405 fBuffer[fIdx++] = x; in append() 409 if (fIdx >= UPRV_LENGTHOF(fBuffer) - 1) { in append() 410 fDest->addLiteral(fBuffer, 0, fIdx); in append() 411 fIdx = 0; in append() 413 U16_APPEND_UNSAFE(fBuffer, fIdx, x); in append() 417 if (fIdx) { in flush() [all …]
|
D | nfrs.cpp | 379 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in setDecimalFormatSymbols() local 380 NFRule *fractionRule = fractionRules[fIdx]; in setDecimalFormatSymbols() 793 for (uint32_t fIdx = 0; fIdx < fractionRules.size(); fIdx++) { in appendRules() local 794 NFRule *fractionRule = fractionRules[fIdx]; in appendRules()
|
/external/skia/bench/ |
D | VertBench.cpp | 33 uint16_t fIdx[IDX]; member in VertBench 47 uint16_t* idx = fIdx; in VertBench() 68 SkASSERT(IDX == idx - fIdx); in VertBench() 86 fPts, nullptr, fColors, fIdx, IDX, paint); in onDraw()
|
/external/skia/tests/ |
D | StreamTest.cpp | 376 : fData(data), fCount(n), fIdx(0) {} in DumbStream() 378 size_t copyCount = SkTMin(fCount - fIdx, size); in read() 380 memcpy(buffer, &fData[fIdx], copyCount); in read() 381 fIdx += copyCount; in read() 386 return fCount == fIdx; in isAtEnd() 390 size_t fCount, fIdx; member in __anonc429ef470111::DumbStream
|