Home
last modified time | relevance | path

Searched refs:previousIndex (Results 1 – 13 of 13) sorted by relevance

/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dtab_controller.dart107 int previousIndex,
111 _previousIndex = previousIndex,
115 /// Creates a new [TabController] with `index`, `previousIndex`, and `length`
122 TabController _copyWith({ int index, int length, int previousIndex }) {
127 previousIndex: previousIndex ?? _previousIndex,
178 /// Changing the index also updates [previousIndex], sets the [animation]'s
194 int get previousIndex => _previousIndex;
197 /// True while we're animating from [previousIndex] to [index] as a
206 /// Immediately sets [index] and [previousIndex] and then plays the
388 int previousIndex = _controller.previousIndex;
[all …]
Dtabs.dart295 final double previousIndex = controller.previousIndex.toDouble();
303 // The TabController animation's value is changing from previousIndex to currentIndex.
304 return (controllerValue - currentIndex).abs() / (currentIndex - previousIndex).abs();
1027 final int previousIndex = _controller.previousIndex;
1031 assert(_currentIndex != previousIndex);
1034 wrappedTabs[previousIndex] = _buildStyledTab(wrappedTabs[previousIndex], false, animation);
1257 final int previousIndex = _controller.previousIndex;
1258 if ((_currentIndex - previousIndex).abs() == 1)
1261 assert((_currentIndex - previousIndex).abs() > 1);
1262 final int initialPage = _currentIndex > previousIndex
[all …]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DUnmodifiableLazyStringList.java142 public int previousIndex() { in listIterator() method
143 return iter.previousIndex(); in listIterator()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DImageIndex.cpp345 ImageIndex previousIndex = mCurrentIndex; in next() local
364 return previousIndex; in next()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DImageIndex.cpp344 ImageIndex previousIndex = mCurrentIndex; in next() local
363 return previousIndex; in next()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationBuilder.java193 int previousIndex = previousIndexFromNode(node); in addReset() local
194 for(int i = previousIndex;; i = previousIndexFromNode(node)) { in addReset()
198 assert(weight16 >= Collation.COMMON_WEIGHT16 || i == previousIndex); in addReset()
215 index = previousIndex; in addReset()
219 index = insertNodeBetween(previousIndex, index, node); in addReset()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
DCollationBuilder.java197 int previousIndex = previousIndexFromNode(node); in addReset() local
198 for(int i = previousIndex;; i = previousIndexFromNode(node)) { in addReset()
202 assert(weight16 >= Collation.COMMON_WEIGHT16 || i == previousIndex); in addReset()
219 index = previousIndex; in addReset()
223 index = insertNodeBetween(previousIndex, index, node); in addReset()
/third_party/flutter/flutter/packages/flutter/test/material/
Dtabs_test.dart299 expect(controller.previousIndex, 2);
307 expect(controller.previousIndex, 2);
315 expect(controller.previousIndex, 1);
322 expect(controller.previousIndex, 2);
334 expect(controller.previousIndex, 2);
678 expect(tabController.previousIndex, 1);
1951 expect(controller.previousIndex, 2);
1962 expect(controller.previousIndex, 1);
1972 expect(controller.previousIndex, 2);
2259 expect(controller.previousIndex, 0);
[all …]
/third_party/node/deps/icu-small/source/i18n/
Dcollationbuilder.cpp394 int32_t previousIndex = previousIndexFromNode(node); in addReset() local
395 for(int32_t i = previousIndex;; i = previousIndexFromNode(node)) { in addReset()
399 U_ASSERT(weight16 >= Collation::COMMON_WEIGHT16 || i == previousIndex); in addReset()
416 index = previousIndex; in addReset()
420 index = insertNodeBetween(previousIndex, index, node, errorCode); in addReset()
/third_party/icu/icu4c/source/i18n/
Dcollationbuilder.cpp394 int32_t previousIndex = previousIndexFromNode(node); in addReset() local
395 for(int32_t i = previousIndex;; i = previousIndexFromNode(node)) { in addReset()
399 U_ASSERT(weight16 >= Collation::COMMON_WEIGHT16 || i == previousIndex); in addReset()
416 index = previousIndex; in addReset()
420 index = insertNodeBetween(previousIndex, index, node, errorCode); in addReset()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dcollationbuilder.cpp394 int32_t previousIndex = previousIndexFromNode(node); in addReset() local
395 for(int32_t i = previousIndex;; i = previousIndexFromNode(node)) { in addReset()
399 U_ASSERT(weight16 >= Collation::COMMON_WEIGHT16 || i == previousIndex); in addReset()
416 index = previousIndex; in addReset()
420 index = insertNodeBetween(previousIndex, index, node, errorCode); in addReset()
/third_party/skia/third_party/externals/icu/source/i18n/
Dcollationbuilder.cpp394 int32_t previousIndex = previousIndexFromNode(node); in addReset() local
395 for(int32_t i = previousIndex;; i = previousIndexFromNode(node)) { in addReset()
399 U_ASSERT(weight16 >= Collation::COMMON_WEIGHT16 || i == previousIndex); in addReset()
416 index = previousIndex; in addReset()
420 index = insertNodeBetween(previousIndex, index, node, errorCode); in addReset()
/third_party/node/tools/
Dlint-md.mjs8910 result.forEach(function (previousType, previousIndex) { argument
8915 newIndex = previousIndex;