Home
last modified time | relevance | path

Searched refs:lastOffset (Results 1 – 22 of 22) sorted by relevance

/third_party/skia/third_party/externals/icu/source/i18n/
Dregextxt.cpp23 if (offset == context->lastOffset + 1) { in uregex_utext_unescape_charAt()
25 context->lastOffset++; in uregex_utext_unescape_charAt()
26 } else if (offset == context->lastOffset) { in uregex_utext_unescape_charAt()
30 utext_moveIndex32(context->text, offset - context->lastOffset - 1); in uregex_utext_unescape_charAt()
32 context->lastOffset = offset; in uregex_utext_unescape_charAt()
Dregextxt.h39 int32_t lastOffset; member
Dregexcmp.cpp4118 } else if (context.lastOffset == offset) { in nextChar()
4120 } else if (context.lastOffset != offset-1) { in nextChar()
4121 utext_moveIndex32(fRXPat->fPattern, offset - context.lastOffset - 1); in nextChar()
Drematch.cpp379 if (context.lastOffset == offset) { in appendReplacement()
381 } else if (context.lastOffset != offset-1) { in appendReplacement()
382 utext_moveIndex32(replacement, offset - context.lastOffset - 1); in appendReplacement()
/third_party/node/deps/icu-small/source/i18n/
Dregextxt.cpp23 if (offset == context->lastOffset + 1) { in uregex_utext_unescape_charAt()
25 context->lastOffset++; in uregex_utext_unescape_charAt()
26 } else if (offset == context->lastOffset) { in uregex_utext_unescape_charAt()
30 utext_moveIndex32(context->text, offset - context->lastOffset - 1); in uregex_utext_unescape_charAt()
32 context->lastOffset = offset; in uregex_utext_unescape_charAt()
Dregextxt.h39 int32_t lastOffset; member
Dregexcmp.cpp4121 } else if (context.lastOffset == offset) { in nextChar()
4123 } else if (context.lastOffset != offset-1) { in nextChar()
4124 utext_moveIndex32(fRXPat->fPattern, offset - context.lastOffset - 1); in nextChar()
Drematch.cpp379 if (context.lastOffset == offset) { in appendReplacement()
381 } else if (context.lastOffset != offset-1) { in appendReplacement()
382 utext_moveIndex32(replacement, offset - context.lastOffset - 1); in appendReplacement()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dregextxt.cpp23 if (offset == context->lastOffset + 1) { in uregex_utext_unescape_charAt()
25 context->lastOffset++; in uregex_utext_unescape_charAt()
26 } else if (offset == context->lastOffset) { in uregex_utext_unescape_charAt()
30 utext_moveIndex32(context->text, offset - context->lastOffset - 1); in uregex_utext_unescape_charAt()
32 context->lastOffset = offset; in uregex_utext_unescape_charAt()
Dregextxt.h39 int32_t lastOffset; member
Dregexcmp.cpp4102 } else if (context.lastOffset == offset) { in nextChar()
4104 } else if (context.lastOffset != offset-1) { in nextChar()
4105 utext_moveIndex32(fRXPat->fPattern, offset - context.lastOffset - 1); in nextChar()
Drematch.cpp377 if (context.lastOffset == offset) { in appendReplacement()
379 } else if (context.lastOffset != offset-1) { in appendReplacement()
380 utext_moveIndex32(replacement, offset - context.lastOffset - 1); in appendReplacement()
/third_party/icu/icu4c/source/i18n/
Dregextxt.cpp23 if (offset == context->lastOffset + 1) { in uregex_utext_unescape_charAt()
25 context->lastOffset++; in uregex_utext_unescape_charAt()
26 } else if (offset == context->lastOffset) { in uregex_utext_unescape_charAt()
30 utext_moveIndex32(context->text, offset - context->lastOffset - 1); in uregex_utext_unescape_charAt()
32 context->lastOffset = offset; in uregex_utext_unescape_charAt()
Dregextxt.h39 int32_t lastOffset; member
Dregexcmp.cpp4118 } else if (context.lastOffset == offset) { in nextChar()
4120 } else if (context.lastOffset != offset-1) { in nextChar()
4121 utext_moveIndex32(fRXPat->fPattern, offset - context.lastOffset - 1); in nextChar()
Drematch.cpp379 if (context.lastOffset == offset) { in appendReplacement()
381 } else if (context.lastOffset != offset-1) { in appendReplacement()
382 utext_moveIndex32(replacement, offset - context.lastOffset - 1); in appendReplacement()
/third_party/flutter/flutter/packages/flutter/test/cupertino/
Ddate_picker_test.dart117 Offset lastOffset = tester.getTopLeft(find.text('12'));
119 expect(tester.getTopLeft(find.text('hours')).dx > lastOffset.dx, true);
120 lastOffset = tester.getTopLeft(find.text('hours'));
122 expect(tester.getTopLeft(find.text('30')).dx > lastOffset.dx, true);
123 lastOffset = tester.getTopLeft(find.text('30'));
125 expect(tester.getTopLeft(find.text('min.')).dx > lastOffset.dx, true);
126 lastOffset = tester.getTopLeft(find.text('min.'));
128 expect(tester.getTopLeft(find.text('59')).dx > lastOffset.dx, true);
129 lastOffset = tester.getTopLeft(find.text('59'));
131 expect(tester.getTopLeft(find.text('sec.')).dx > lastOffset.dx, true);
[all …]
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dlist_view_fling_test.dart31 final double lastOffset = getCurrentOffset();
33 expect(getCurrentOffset(), greaterThan(lastOffset));
/third_party/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h10036 VkDeviceSize lastOffset = 0; in CalcAllocationStatInfo() local
10042 while(lastOffset < freeSpace2ndTo1stEnd) in CalcAllocationStatInfo()
10057 if(lastOffset < suballoc.offset) in CalcAllocationStatInfo()
10060 const VkDeviceSize unusedRangeSize = suballoc.offset - lastOffset; in CalcAllocationStatInfo()
10074 lastOffset = suballoc.offset + suballoc.size; in CalcAllocationStatInfo()
10081 if(lastOffset < freeSpace2ndTo1stEnd) in CalcAllocationStatInfo()
10083 const VkDeviceSize unusedRangeSize = freeSpace2ndTo1stEnd - lastOffset; in CalcAllocationStatInfo()
10091 lastOffset = freeSpace2ndTo1stEnd; in CalcAllocationStatInfo()
10099 while(lastOffset < freeSpace1stTo2ndEnd) in CalcAllocationStatInfo()
10114 if(lastOffset < suballoc.offset) in CalcAllocationStatInfo()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
DTimeZoneAliasTest.java270 int lastOffset = zone.getOffset(endDate); in Zone() local
276 if (currentOffset != lastOffset) { // Binary Search in Zone()
297 lastOffset = currentOffset; in Zone()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/timezone/
DTimeZoneAliasTest.java273 int lastOffset = zone.getOffset(endDate); in Zone() local
279 if (currentOffset != lastOffset) { // Binary Search in Zone()
300 lastOffset = currentOffset; in Zone()
/third_party/glslang/glslang/MachineIndependent/
DlinkValidate.cpp2310 int lastOffset = getOffset(blockType, lastIndex); in getBlockSize() local
2318 return lastOffset + lastMemberSize; in getBlockSize()