Searched refs:otherPos (Results 1 – 3 of 3) sorted by relevance
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | dtitvfmt.cpp | 399 FieldPosition otherPos; in formatImpl() local 400 otherPos.setField(pos.getField()); in formatImpl() 401 fDateFormat->format(*secondCal, appendTo, otherPos); in formatImpl() 402 if (pos.getEndIndex() == 0 && otherPos.getEndIndex() > 0) { in formatImpl() 403 pos = otherPos; in formatImpl() 1351 FieldPosition otherPos; in fallbackFormat() local 1352 otherPos.setField(pos.getField()); in fallbackFormat() 1356 fDateFormat->format(toCalendar, laterDate, otherPos); in fallbackFormat() 1359 adjustPosition(fallbackPattern, earlierDate, pos, laterDate, otherPos, pos); in fallbackFormat() 1367 otherPos.setBeginIndex(0); in fallbackFormat() [all …]
|
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/ |
D | FlexBuffers.kt | 845 var otherPos = other in toString() variable 849 while (otherPos < limit) { in toString() 851 c2 = buffer[otherPos++] in toString() 863 var otherPos = 0 in toString() variable 869 while (otherPos < otherLimit) { in toString() 870 val c2 = other[otherPos] in toString() 882 ++otherPos in toString() 889 val sizeInBuff = Utf8.encodeUtf8CodePoint(other, otherPos, comparisonBuffer) in toString() 901 otherPos += if (sizeInBuff == 4) 2 else 1 in toString()
|
/third_party/flatbuffers/java/com/google/flatbuffers/ |
D | FlexBuffers.java | 974 int otherPos = 0; in compareCharSequence() local 981 while (otherPos < otherLimit) { in compareCharSequence() 982 char c2 = other.charAt(otherPos); in compareCharSequence() 999 ++otherPos; in compareCharSequence() 1004 int sizeInBuff = Utf8.encodeUtf8CodePoint(other, otherPos, comparisonBuffer); in compareCharSequence() 1023 otherPos += sizeInBuff == 4 ? 2 : 1; in compareCharSequence()
|