Home
last modified time | relevance | path

Searched refs:skipWhile (Results 1 – 11 of 11) sorted by relevance

/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Dbasic_types.dart97 /// 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/
Dcaching_iterable_test.dart87 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/
Dtimeline_summary.dart157 .skipWhile((TimelineEvent evt) => evt.phase != 'B').iterator;
/third_party/flutter/flutter/packages/flutter_tools/test/src/
Dtestbed.dart551 Stream<Uint8List> skipWhile(bool Function(Uint8List element) test) {
552 return _delegate.skipWhile(test);
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/
Ddaemon_test.dart232 …return await responses.stream.skipWhile(_isConnectedEvent).first.then<void>((Map<String, dynamic> …
/third_party/typescript/tests/cases/compiler/
DcomplexRecursiveCollections.ts490 skipWhile(predicate: (value: V, key: K, iter: this) => boolean, context?: any): this; method
/third_party/typescript/tests/baselines/reference/
DcomplexRecursiveCollections.js490 skipWhile(predicate: (value: V, key: K, iter: this) => boolean, context?: any): this;
DcomplexRecursiveCollections.errors.txt517 skipWhile(predicate: (value: V, key: K, iter: this) => boolean, context?: any): this;
DcomplexRecursiveCollections.types2038 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
DcomplexRecursiveCollections.symbols3448 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/
Dbinding.dart1992 Stream<Uint8List> skipWhile(bool Function(Uint8List element) test) {
1993 return _delegate.skipWhile(test);