Searched refs:skipWhile (Results 1 – 11 of 11) sorted by relevance
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/ |
D | basic_types.dart | 97 /// and [skipWhile], and is used by the built-in methods that use an 168 Iterable<E> skipWhile(bool test(E value)) { 169 return CachingIterable<E>(super.skipWhile(test).iterator);
|
/third_party/flutter/flutter/packages/flutter/test/foundation/ |
D | caching_iterable_test.dart | 87 final Iterable<int> result = integers.takeWhile((int i) => i < 4).skipWhile((int i) => i < 3);
|
/third_party/flutter/flutter/packages/flutter_driver/lib/src/driver/ |
D | timeline_summary.dart | 157 .skipWhile((TimelineEvent evt) => evt.phase != 'B').iterator;
|
/third_party/flutter/flutter/packages/flutter_tools/test/src/ |
D | testbed.dart | 551 Stream<Uint8List> skipWhile(bool Function(Uint8List element) test) { 552 return _delegate.skipWhile(test);
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/ |
D | daemon_test.dart | 232 …return await responses.stream.skipWhile(_isConnectedEvent).first.then<void>((Map<String, dynamic> …
|
/third_party/typescript/tests/cases/compiler/ |
D | complexRecursiveCollections.ts | 490 skipWhile(predicate: (value: V, key: K, iter: this) => boolean, context?: any): this; method
|
/third_party/typescript/tests/baselines/reference/ |
D | complexRecursiveCollections.js | 490 skipWhile(predicate: (value: V, key: K, iter: this) => boolean, context?: any): this;
|
D | complexRecursiveCollections.errors.txt | 517 skipWhile(predicate: (value: V, key: K, iter: this) => boolean, context?: any): this;
|
D | complexRecursiveCollections.types | 2038 skipWhile(predicate: (value: V, key: K, iter: this) => boolean, context?: any): this; 2039 >skipWhile : (predicate: (value: V, key: K, iter: this) => boolean, context?: any) => this
|
D | complexRecursiveCollections.symbols | 3448 skipWhile(predicate: (value: V, key: K, iter: this) => boolean, context?: any): this; 3449 >skipWhile : Symbol(Collection.skipWhile, Decl(immutable.ts, 464, 35))
|
/third_party/flutter/flutter/packages/flutter_test/lib/src/ |
D | binding.dart | 1992 Stream<Uint8List> skipWhile(bool Function(Uint8List element) test) { 1993 return _delegate.skipWhile(test);
|