Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(334)

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 12537009: Rename XMatching to XWhere. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge and rebuild dom libraries. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « sdk/lib/core/iterable.dart ('k') | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index d71bed3f1122980f508c70bea997bf340953a361..2a3259de02e49e0920ad80cc1b36f0c9a010c302 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -7175,16 +7175,16 @@ class DomMimeTypeArray implements JavaScriptIndexingBehavior, List<DomMimeType>
return IterableMixinWorkaround.skipWhile(this, test);
}
- DomMimeType firstMatching(bool test(DomMimeType value), { DomMimeType orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ DomMimeType firstWhere(bool test(DomMimeType value), { DomMimeType orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- DomMimeType lastMatching(bool test(DomMimeType value), {DomMimeType orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ DomMimeType lastWhere(bool test(DomMimeType value), {DomMimeType orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- DomMimeType singleMatching(bool test(DomMimeType value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ DomMimeType singleWhere(bool test(DomMimeType value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
DomMimeType elementAt(int index) {
@@ -7272,11 +7272,11 @@ class DomMimeTypeArray implements JavaScriptIndexingBehavior, List<DomMimeType>
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(DomMimeType element)) {
+ void removeWhere(bool test(DomMimeType element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(DomMimeType element)) {
+ void retainWhere(bool test(DomMimeType element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -7434,16 +7434,16 @@ class DomPluginArray implements JavaScriptIndexingBehavior, List<DomPlugin> nati
return IterableMixinWorkaround.skipWhile(this, test);
}
- DomPlugin firstMatching(bool test(DomPlugin value), { DomPlugin orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ DomPlugin firstWhere(bool test(DomPlugin value), { DomPlugin orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- DomPlugin lastMatching(bool test(DomPlugin value), {DomPlugin orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ DomPlugin lastWhere(bool test(DomPlugin value), {DomPlugin orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- DomPlugin singleMatching(bool test(DomPlugin value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ DomPlugin singleWhere(bool test(DomPlugin value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
DomPlugin elementAt(int index) {
@@ -7531,11 +7531,11 @@ class DomPluginArray implements JavaScriptIndexingBehavior, List<DomPlugin> nati
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(DomPlugin element)) {
+ void removeWhere(bool test(DomPlugin element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(DomPlugin element)) {
+ void retainWhere(bool test(DomPlugin element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -7800,16 +7800,16 @@ class DomStringList implements JavaScriptIndexingBehavior, List<String> native "
return IterableMixinWorkaround.skipWhile(this, test);
}
- String firstMatching(bool test(String value), { String orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ String firstWhere(bool test(String value), { String orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- String lastMatching(bool test(String value), {String orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ String lastWhere(bool test(String value), {String orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- String singleMatching(bool test(String value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ String singleWhere(bool test(String value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
String elementAt(int index) {
@@ -7897,11 +7897,11 @@ class DomStringList implements JavaScriptIndexingBehavior, List<String> native "
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(String element)) {
+ void removeWhere(bool test(String element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(String element)) {
+ void retainWhere(bool test(String element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -8070,16 +8070,16 @@ class _ChildrenElementList implements List {
return IterableMixinWorkaround.skipWhile(this, test);
}
- Element firstMatching(bool test(Element value), {Element orElse()}) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ Element firstWhere(bool test(Element value), {Element orElse()}) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- Element lastMatching(bool test(Element value), {Element orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ Element lastWhere(bool test(Element value), {Element orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- Element singleMatching(bool test(Element value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ Element singleWhere(bool test(Element value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
Element elementAt(int index) {
@@ -8156,12 +8156,12 @@ class _ChildrenElementList implements List {
IterableMixinWorkaround.retainAll(this, elements);
}
- void removeMatching(bool test(Element element)) {
- IterableMixinWorkaround.removeMatching(this, test);
+ void removeWhere(bool test(Element element)) {
+ IterableMixinWorkaround.removeWhere(this, test);
}
- void retainMatching(bool test(Element element)) {
- IterableMixinWorkaround.retainMatching(this, test);
+ void retainWhere(bool test(Element element)) {
+ IterableMixinWorkaround.retainWhere(this, test);
}
void removeRange(int start, int rangeLength) {
@@ -8313,16 +8313,16 @@ class _FrozenElementList implements List {
return IterableMixinWorkaround.skipWhile(this, test);
}
- Element firstMatching(bool test(Element value), {Element orElse()}) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ Element firstWhere(bool test(Element value), {Element orElse()}) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- Element lastMatching(bool test(Element value), {Element orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ Element lastWhere(bool test(Element value), {Element orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- Element singleMatching(bool test(Element value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ Element singleWhere(bool test(Element value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
Element elementAt(int index) {
@@ -8415,11 +8415,11 @@ class _FrozenElementList implements List {
throw new UnsupportedError('');
}
- void removeMatching(bool test(Element element)) {
+ void removeWhere(bool test(Element element)) {
throw new UnsupportedError('');
}
- void retainMatching(bool test(Element element)) {
+ void retainWhere(bool test(Element element)) {
throw new UnsupportedError('');
}
@@ -10838,16 +10838,16 @@ class FileList implements JavaScriptIndexingBehavior, List<File> native "*FileLi
return IterableMixinWorkaround.skipWhile(this, test);
}
- File firstMatching(bool test(File value), { File orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ File firstWhere(bool test(File value), { File orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- File lastMatching(bool test(File value), {File orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ File lastWhere(bool test(File value), {File orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- File singleMatching(bool test(File value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ File singleWhere(bool test(File value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
File elementAt(int index) {
@@ -10935,11 +10935,11 @@ class FileList implements JavaScriptIndexingBehavior, List<File> native "*FileLi
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(File element)) {
+ void removeWhere(bool test(File element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(File element)) {
+ void retainWhere(bool test(File element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -11400,16 +11400,16 @@ class Float32Array extends ArrayBufferView implements JavaScriptIndexingBehavior
return IterableMixinWorkaround.skipWhile(this, test);
}
- num firstMatching(bool test(num value), { num orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ num firstWhere(bool test(num value), { num orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- num lastMatching(bool test(num value), {num orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ num lastWhere(bool test(num value), {num orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- num singleMatching(bool test(num value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ num singleWhere(bool test(num value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
num elementAt(int index) {
@@ -11497,11 +11497,11 @@ class Float32Array extends ArrayBufferView implements JavaScriptIndexingBehavior
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(num element)) {
+ void removeWhere(bool test(num element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(num element)) {
+ void retainWhere(bool test(num element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -11623,16 +11623,16 @@ class Float64Array extends ArrayBufferView implements JavaScriptIndexingBehavior
return IterableMixinWorkaround.skipWhile(this, test);
}
- num firstMatching(bool test(num value), { num orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ num firstWhere(bool test(num value), { num orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- num lastMatching(bool test(num value), {num orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ num lastWhere(bool test(num value), {num orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- num singleMatching(bool test(num value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ num singleWhere(bool test(num value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
num elementAt(int index) {
@@ -11720,11 +11720,11 @@ class Float64Array extends ArrayBufferView implements JavaScriptIndexingBehavior
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(num element)) {
+ void removeWhere(bool test(num element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(num element)) {
+ void retainWhere(bool test(num element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -12266,16 +12266,16 @@ class HtmlAllCollection implements JavaScriptIndexingBehavior, List<Node> native
return IterableMixinWorkaround.skipWhile(this, test);
}
- Node firstMatching(bool test(Node value), { Node orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ Node firstWhere(bool test(Node value), { Node orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- Node lastMatching(bool test(Node value), {Node orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ Node lastWhere(bool test(Node value), {Node orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- Node singleMatching(bool test(Node value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ Node singleWhere(bool test(Node value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
Node elementAt(int index) {
@@ -12363,11 +12363,11 @@ class HtmlAllCollection implements JavaScriptIndexingBehavior, List<Node> native
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(Node element)) {
+ void removeWhere(bool test(Node element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(Node element)) {
+ void retainWhere(bool test(Node element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -12478,16 +12478,16 @@ class HtmlCollection implements JavaScriptIndexingBehavior, List<Node> native "*
return IterableMixinWorkaround.skipWhile(this, test);
}
- Node firstMatching(bool test(Node value), { Node orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ Node firstWhere(bool test(Node value), { Node orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- Node lastMatching(bool test(Node value), {Node orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ Node lastWhere(bool test(Node value), {Node orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- Node singleMatching(bool test(Node value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ Node singleWhere(bool test(Node value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
Node elementAt(int index) {
@@ -12575,11 +12575,11 @@ class HtmlCollection implements JavaScriptIndexingBehavior, List<Node> native "*
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(Node element)) {
+ void removeWhere(bool test(Node element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(Node element)) {
+ void retainWhere(bool test(Node element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -14473,16 +14473,16 @@ class Int16Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
return IterableMixinWorkaround.skipWhile(this, test);
}
- int firstMatching(bool test(int value), { int orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ int firstWhere(bool test(int value), { int orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- int lastMatching(bool test(int value), {int orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ int lastWhere(bool test(int value), {int orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- int singleMatching(bool test(int value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ int singleWhere(bool test(int value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
int elementAt(int index) {
@@ -14570,11 +14570,11 @@ class Int16Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(int element)) {
+ void removeWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(int element)) {
+ void retainWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -14696,16 +14696,16 @@ class Int32Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
return IterableMixinWorkaround.skipWhile(this, test);
}
- int firstMatching(bool test(int value), { int orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ int firstWhere(bool test(int value), { int orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- int lastMatching(bool test(int value), {int orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ int lastWhere(bool test(int value), {int orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- int singleMatching(bool test(int value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ int singleWhere(bool test(int value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
int elementAt(int index) {
@@ -14793,11 +14793,11 @@ class Int32Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(int element)) {
+ void removeWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(int element)) {
+ void retainWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -14919,16 +14919,16 @@ class Int8Array extends ArrayBufferView implements JavaScriptIndexingBehavior, L
return IterableMixinWorkaround.skipWhile(this, test);
}
- int firstMatching(bool test(int value), { int orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ int firstWhere(bool test(int value), { int orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- int lastMatching(bool test(int value), {int orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ int lastWhere(bool test(int value), {int orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- int singleMatching(bool test(int value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ int singleWhere(bool test(int value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
int elementAt(int index) {
@@ -15016,11 +15016,11 @@ class Int8Array extends ArrayBufferView implements JavaScriptIndexingBehavior, L
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(int element)) {
+ void removeWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(int element)) {
+ void retainWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -17396,12 +17396,12 @@ class _ChildNodeListLazy implements List {
IterableMixinWorkaround.retainAll(this, elements);
}
- void removeMatching(bool test(Node node)) {
- IterableMixinWorkaround.removeMatching(this, test);
+ void removeWhere(bool test(Node node)) {
+ IterableMixinWorkaround.removeWhere(this, test);
}
- void retainMatching(bool test(Node node)) {
- IterableMixinWorkaround.retainMatching(this, test);
+ void retainWhere(bool test(Node node)) {
+ IterableMixinWorkaround.retainWhere(this, test);
}
void clear() {
@@ -17469,16 +17469,16 @@ class _ChildNodeListLazy implements List {
return IterableMixinWorkaround.skipWhile(this, test);
}
- Node firstMatching(bool test(Node value), {Node orElse()}) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ Node firstWhere(bool test(Node value), {Node orElse()}) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- Node lastMatching(bool test(Node value), {Node orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ Node lastWhere(bool test(Node value), {Node orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- Node singleMatching(bool test(Node value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ Node singleWhere(bool test(Node value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
Node elementAt(int index) {
@@ -17876,16 +17876,16 @@ class NodeList implements JavaScriptIndexingBehavior, List<Node> native "*NodeLi
return IterableMixinWorkaround.skipWhile(this, test);
}
- Node firstMatching(bool test(Node value), { Node orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ Node firstWhere(bool test(Node value), { Node orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- Node lastMatching(bool test(Node value), {Node orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ Node lastWhere(bool test(Node value), {Node orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- Node singleMatching(bool test(Node value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ Node singleWhere(bool test(Node value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
Node elementAt(int index) {
@@ -17973,11 +17973,11 @@ class NodeList implements JavaScriptIndexingBehavior, List<Node> native "*NodeLi
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(Node element)) {
+ void removeWhere(bool test(Node element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(Node element)) {
+ void retainWhere(bool test(Node element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -20272,16 +20272,16 @@ class SourceBufferList extends EventTarget implements JavaScriptIndexingBehavior
return IterableMixinWorkaround.skipWhile(this, test);
}
- SourceBuffer firstMatching(bool test(SourceBuffer value), { SourceBuffer orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ SourceBuffer firstWhere(bool test(SourceBuffer value), { SourceBuffer orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- SourceBuffer lastMatching(bool test(SourceBuffer value), {SourceBuffer orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ SourceBuffer lastWhere(bool test(SourceBuffer value), {SourceBuffer orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- SourceBuffer singleMatching(bool test(SourceBuffer value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ SourceBuffer singleWhere(bool test(SourceBuffer value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
SourceBuffer elementAt(int index) {
@@ -20369,11 +20369,11 @@ class SourceBufferList extends EventTarget implements JavaScriptIndexingBehavior
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(SourceBuffer element)) {
+ void removeWhere(bool test(SourceBuffer element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(SourceBuffer element)) {
+ void retainWhere(bool test(SourceBuffer element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -20557,16 +20557,16 @@ class SpeechGrammarList implements JavaScriptIndexingBehavior, List<SpeechGramma
return IterableMixinWorkaround.skipWhile(this, test);
}
- SpeechGrammar firstMatching(bool test(SpeechGrammar value), { SpeechGrammar orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ SpeechGrammar firstWhere(bool test(SpeechGrammar value), { SpeechGrammar orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- SpeechGrammar lastMatching(bool test(SpeechGrammar value), {SpeechGrammar orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ SpeechGrammar lastWhere(bool test(SpeechGrammar value), {SpeechGrammar orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- SpeechGrammar singleMatching(bool test(SpeechGrammar value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ SpeechGrammar singleWhere(bool test(SpeechGrammar value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
SpeechGrammar elementAt(int index) {
@@ -20654,11 +20654,11 @@ class SpeechGrammarList implements JavaScriptIndexingBehavior, List<SpeechGramma
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(SpeechGrammar element)) {
+ void removeWhere(bool test(SpeechGrammar element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(SpeechGrammar element)) {
+ void retainWhere(bool test(SpeechGrammar element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -21964,16 +21964,16 @@ class TextTrackCueList implements List<TextTrackCue>, JavaScriptIndexingBehavior
return IterableMixinWorkaround.skipWhile(this, test);
}
- TextTrackCue firstMatching(bool test(TextTrackCue value), { TextTrackCue orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ TextTrackCue firstWhere(bool test(TextTrackCue value), { TextTrackCue orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- TextTrackCue lastMatching(bool test(TextTrackCue value), {TextTrackCue orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ TextTrackCue lastWhere(bool test(TextTrackCue value), {TextTrackCue orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- TextTrackCue singleMatching(bool test(TextTrackCue value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ TextTrackCue singleWhere(bool test(TextTrackCue value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
TextTrackCue elementAt(int index) {
@@ -22061,11 +22061,11 @@ class TextTrackCueList implements List<TextTrackCue>, JavaScriptIndexingBehavior
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(TextTrackCue element)) {
+ void removeWhere(bool test(TextTrackCue element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(TextTrackCue element)) {
+ void retainWhere(bool test(TextTrackCue element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -22174,16 +22174,16 @@ class TextTrackList extends EventTarget implements JavaScriptIndexingBehavior, L
return IterableMixinWorkaround.skipWhile(this, test);
}
- TextTrack firstMatching(bool test(TextTrack value), { TextTrack orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ TextTrack firstWhere(bool test(TextTrack value), { TextTrack orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- TextTrack lastMatching(bool test(TextTrack value), {TextTrack orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ TextTrack lastWhere(bool test(TextTrack value), {TextTrack orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- TextTrack singleMatching(bool test(TextTrack value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ TextTrack singleWhere(bool test(TextTrack value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
TextTrack elementAt(int index) {
@@ -22271,11 +22271,11 @@ class TextTrackList extends EventTarget implements JavaScriptIndexingBehavior, L
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(TextTrack element)) {
+ void removeWhere(bool test(TextTrack element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(TextTrack element)) {
+ void retainWhere(bool test(TextTrack element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -22610,16 +22610,16 @@ class TouchList implements JavaScriptIndexingBehavior, List<Touch> native "*Touc
return IterableMixinWorkaround.skipWhile(this, test);
}
- Touch firstMatching(bool test(Touch value), { Touch orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ Touch firstWhere(bool test(Touch value), { Touch orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- Touch lastMatching(bool test(Touch value), {Touch orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ Touch lastWhere(bool test(Touch value), {Touch orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- Touch singleMatching(bool test(Touch value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ Touch singleWhere(bool test(Touch value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
Touch elementAt(int index) {
@@ -22707,11 +22707,11 @@ class TouchList implements JavaScriptIndexingBehavior, List<Touch> native "*Touc
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(Touch element)) {
+ void removeWhere(bool test(Touch element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(Touch element)) {
+ void retainWhere(bool test(Touch element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -23083,16 +23083,16 @@ class Uint16Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
return IterableMixinWorkaround.skipWhile(this, test);
}
- int firstMatching(bool test(int value), { int orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ int firstWhere(bool test(int value), { int orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- int lastMatching(bool test(int value), {int orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ int lastWhere(bool test(int value), {int orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- int singleMatching(bool test(int value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ int singleWhere(bool test(int value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
int elementAt(int index) {
@@ -23180,11 +23180,11 @@ class Uint16Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(int element)) {
+ void removeWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(int element)) {
+ void retainWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -23306,16 +23306,16 @@ class Uint32Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
return IterableMixinWorkaround.skipWhile(this, test);
}
- int firstMatching(bool test(int value), { int orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ int firstWhere(bool test(int value), { int orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- int lastMatching(bool test(int value), {int orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ int lastWhere(bool test(int value), {int orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- int singleMatching(bool test(int value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ int singleWhere(bool test(int value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
int elementAt(int index) {
@@ -23403,11 +23403,11 @@ class Uint32Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(int element)) {
+ void removeWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(int element)) {
+ void retainWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -23529,16 +23529,16 @@ class Uint8Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
return IterableMixinWorkaround.skipWhile(this, test);
}
- int firstMatching(bool test(int value), { int orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ int firstWhere(bool test(int value), { int orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- int lastMatching(bool test(int value), {int orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ int lastWhere(bool test(int value), {int orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- int singleMatching(bool test(int value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ int singleWhere(bool test(int value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
int elementAt(int index) {
@@ -23626,11 +23626,11 @@ class Uint8Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(int element)) {
+ void removeWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(int element)) {
+ void retainWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -23749,16 +23749,16 @@ class Uint8ClampedArray extends Uint8Array implements JavaScriptIndexingBehavior
return IterableMixinWorkaround.skipWhile(this, test);
}
- int firstMatching(bool test(int value), { int orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ int firstWhere(bool test(int value), { int orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- int lastMatching(bool test(int value), {int orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ int lastWhere(bool test(int value), {int orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- int singleMatching(bool test(int value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ int singleWhere(bool test(int value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
int elementAt(int index) {
@@ -23846,11 +23846,11 @@ class Uint8ClampedArray extends Uint8Array implements JavaScriptIndexingBehavior
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(int element)) {
+ void removeWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(int element)) {
+ void retainWhere(bool test(int element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -27661,16 +27661,16 @@ class _ClientRectList implements JavaScriptIndexingBehavior, List<Rect> native "
return IterableMixinWorkaround.skipWhile(this, test);
}
- Rect firstMatching(bool test(Rect value), { Rect orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ Rect firstWhere(bool test(Rect value), { Rect orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- Rect lastMatching(bool test(Rect value), {Rect orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ Rect lastWhere(bool test(Rect value), {Rect orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- Rect singleMatching(bool test(Rect value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ Rect singleWhere(bool test(Rect value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
Rect elementAt(int index) {
@@ -27758,11 +27758,11 @@ class _ClientRectList implements JavaScriptIndexingBehavior, List<Rect> native "
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(Rect element)) {
+ void removeWhere(bool test(Rect element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(Rect element)) {
+ void retainWhere(bool test(Rect element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -27863,16 +27863,16 @@ class _CssRuleList implements JavaScriptIndexingBehavior, List<CssRule> native "
return IterableMixinWorkaround.skipWhile(this, test);
}
- CssRule firstMatching(bool test(CssRule value), { CssRule orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ CssRule firstWhere(bool test(CssRule value), { CssRule orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- CssRule lastMatching(bool test(CssRule value), {CssRule orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ CssRule lastWhere(bool test(CssRule value), {CssRule orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- CssRule singleMatching(bool test(CssRule value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ CssRule singleWhere(bool test(CssRule value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
CssRule elementAt(int index) {
@@ -27960,11 +27960,11 @@ class _CssRuleList implements JavaScriptIndexingBehavior, List<CssRule> native "
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(CssRule element)) {
+ void removeWhere(bool test(CssRule element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(CssRule element)) {
+ void retainWhere(bool test(CssRule element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -28065,16 +28065,16 @@ class _CssValueList extends CssValue implements List<CssValue>, JavaScriptIndexi
return IterableMixinWorkaround.skipWhile(this, test);
}
- CssValue firstMatching(bool test(CssValue value), { CssValue orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ CssValue firstWhere(bool test(CssValue value), { CssValue orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- CssValue lastMatching(bool test(CssValue value), {CssValue orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ CssValue lastWhere(bool test(CssValue value), {CssValue orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- CssValue singleMatching(bool test(CssValue value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ CssValue singleWhere(bool test(CssValue value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
CssValue elementAt(int index) {
@@ -28162,11 +28162,11 @@ class _CssValueList extends CssValue implements List<CssValue>, JavaScriptIndexi
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(CssValue element)) {
+ void removeWhere(bool test(CssValue element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(CssValue element)) {
+ void retainWhere(bool test(CssValue element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -28267,16 +28267,16 @@ class _EntryArray implements JavaScriptIndexingBehavior, List<Entry> native "*En
return IterableMixinWorkaround.skipWhile(this, test);
}
- Entry firstMatching(bool test(Entry value), { Entry orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ Entry firstWhere(bool test(Entry value), { Entry orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- Entry lastMatching(bool test(Entry value), {Entry orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ Entry lastWhere(bool test(Entry value), {Entry orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- Entry singleMatching(bool test(Entry value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ Entry singleWhere(bool test(Entry value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
Entry elementAt(int index) {
@@ -28364,11 +28364,11 @@ class _EntryArray implements JavaScriptIndexingBehavior, List<Entry> native "*En
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(Entry element)) {
+ void removeWhere(bool test(Entry element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(Entry element)) {
+ void retainWhere(bool test(Entry element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -28469,16 +28469,16 @@ class _EntryArraySync implements JavaScriptIndexingBehavior, List<EntrySync> nat
return IterableMixinWorkaround.skipWhile(this, test);
}
- EntrySync firstMatching(bool test(EntrySync value), { EntrySync orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ EntrySync firstWhere(bool test(EntrySync value), { EntrySync orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- EntrySync lastMatching(bool test(EntrySync value), {EntrySync orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ EntrySync lastWhere(bool test(EntrySync value), {EntrySync orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- EntrySync singleMatching(bool test(EntrySync value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ EntrySync singleWhere(bool test(EntrySync value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
EntrySync elementAt(int index) {
@@ -28566,11 +28566,11 @@ class _EntryArraySync implements JavaScriptIndexingBehavior, List<EntrySync> nat
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(EntrySync element)) {
+ void removeWhere(bool test(EntrySync element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(EntrySync element)) {
+ void retainWhere(bool test(EntrySync element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -28671,16 +28671,16 @@ class _GamepadList implements JavaScriptIndexingBehavior, List<Gamepad> native "
return IterableMixinWorkaround.skipWhile(this, test);
}
- Gamepad firstMatching(bool test(Gamepad value), { Gamepad orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ Gamepad firstWhere(bool test(Gamepad value), { Gamepad orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- Gamepad lastMatching(bool test(Gamepad value), {Gamepad orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ Gamepad lastWhere(bool test(Gamepad value), {Gamepad orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- Gamepad singleMatching(bool test(Gamepad value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ Gamepad singleWhere(bool test(Gamepad value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
Gamepad elementAt(int index) {
@@ -28768,11 +28768,11 @@ class _GamepadList implements JavaScriptIndexingBehavior, List<Gamepad> native "
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(Gamepad element)) {
+ void removeWhere(bool test(Gamepad element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(Gamepad element)) {
+ void retainWhere(bool test(Gamepad element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -28936,16 +28936,16 @@ class _NamedNodeMap implements JavaScriptIndexingBehavior, List<Node> native "*N
return IterableMixinWorkaround.skipWhile(this, test);
}
- Node firstMatching(bool test(Node value), { Node orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ Node firstWhere(bool test(Node value), { Node orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- Node lastMatching(bool test(Node value), {Node orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ Node lastWhere(bool test(Node value), {Node orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- Node singleMatching(bool test(Node value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ Node singleWhere(bool test(Node value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
Node elementAt(int index) {
@@ -29033,11 +29033,11 @@ class _NamedNodeMap implements JavaScriptIndexingBehavior, List<Node> native "*N
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(Node element)) {
+ void removeWhere(bool test(Node element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(Node element)) {
+ void retainWhere(bool test(Node element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -29162,16 +29162,16 @@ class _SpeechInputResultList implements JavaScriptIndexingBehavior, List<SpeechI
return IterableMixinWorkaround.skipWhile(this, test);
}
- SpeechInputResult firstMatching(bool test(SpeechInputResult value), { SpeechInputResult orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ SpeechInputResult firstWhere(bool test(SpeechInputResult value), { SpeechInputResult orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- SpeechInputResult lastMatching(bool test(SpeechInputResult value), {SpeechInputResult orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ SpeechInputResult lastWhere(bool test(SpeechInputResult value), {SpeechInputResult orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- SpeechInputResult singleMatching(bool test(SpeechInputResult value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ SpeechInputResult singleWhere(bool test(SpeechInputResult value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
SpeechInputResult elementAt(int index) {
@@ -29259,11 +29259,11 @@ class _SpeechInputResultList implements JavaScriptIndexingBehavior, List<SpeechI
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(SpeechInputResult element)) {
+ void removeWhere(bool test(SpeechInputResult element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(SpeechInputResult element)) {
+ void retainWhere(bool test(SpeechInputResult element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -29364,16 +29364,16 @@ class _SpeechRecognitionResultList implements JavaScriptIndexingBehavior, List<S
return IterableMixinWorkaround.skipWhile(this, test);
}
- SpeechRecognitionResult firstMatching(bool test(SpeechRecognitionResult value), { SpeechRecognitionResult orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ SpeechRecognitionResult firstWhere(bool test(SpeechRecognitionResult value), { SpeechRecognitionResult orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- SpeechRecognitionResult lastMatching(bool test(SpeechRecognitionResult value), {SpeechRecognitionResult orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ SpeechRecognitionResult lastWhere(bool test(SpeechRecognitionResult value), {SpeechRecognitionResult orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- SpeechRecognitionResult singleMatching(bool test(SpeechRecognitionResult value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ SpeechRecognitionResult singleWhere(bool test(SpeechRecognitionResult value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
SpeechRecognitionResult elementAt(int index) {
@@ -29461,11 +29461,11 @@ class _SpeechRecognitionResultList implements JavaScriptIndexingBehavior, List<S
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(SpeechRecognitionResult element)) {
+ void removeWhere(bool test(SpeechRecognitionResult element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(SpeechRecognitionResult element)) {
+ void retainWhere(bool test(SpeechRecognitionResult element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -29566,16 +29566,16 @@ class _StyleSheetList implements JavaScriptIndexingBehavior, List<StyleSheet> na
return IterableMixinWorkaround.skipWhile(this, test);
}
- StyleSheet firstMatching(bool test(StyleSheet value), { StyleSheet orElse() }) {
- return IterableMixinWorkaround.firstMatching(this, test, orElse);
+ StyleSheet firstWhere(bool test(StyleSheet value), { StyleSheet orElse() }) {
+ return IterableMixinWorkaround.firstWhere(this, test, orElse);
}
- StyleSheet lastMatching(bool test(StyleSheet value), {StyleSheet orElse()}) {
- return IterableMixinWorkaround.lastMatchingInList(this, test, orElse);
+ StyleSheet lastWhere(bool test(StyleSheet value), {StyleSheet orElse()}) {
+ return IterableMixinWorkaround.lastWhereList(this, test, orElse);
}
- StyleSheet singleMatching(bool test(StyleSheet value)) {
- return IterableMixinWorkaround.singleMatching(this, test);
+ StyleSheet singleWhere(bool test(StyleSheet value)) {
+ return IterableMixinWorkaround.singleWhere(this, test);
}
StyleSheet elementAt(int index) {
@@ -29663,11 +29663,11 @@ class _StyleSheetList implements JavaScriptIndexingBehavior, List<StyleSheet> na
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void removeMatching(bool test(StyleSheet element)) {
+ void removeWhere(bool test(StyleSheet element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
- void retainMatching(bool test(StyleSheet element)) {
+ void retainWhere(bool test(StyleSheet element)) {
throw new UnsupportedError("Cannot remove from immutable List.");
}
@@ -30162,12 +30162,12 @@ abstract class CssClassSet implements Set<String> {
_modify((s) => s.retainAll(iterable));
}
- void removeMatching(bool test(String name)) {
- _modify((s) => s.removeMatching(test));
+ void removeWhere(bool test(String name)) {
+ _modify((s) => s.removeWhere(test));
}
- void retainMatching(bool test(String name)) {
- _modify((s) => s.retainMatching(test));
+ void retainWhere(bool test(String name)) {
+ _modify((s) => s.retainWhere(test));
}
bool isSubsetOf(Collection<String> collection) =>
@@ -30195,12 +30195,12 @@ abstract class CssClassSet implements Set<String> {
Iterable<String> skip(int n) => readClasses().skip(n);
Iterable<String> skipWhile(bool test(String value)) =>
readClasses().skipWhile(test);
- String firstMatching(bool test(String value), { String orElse() }) =>
- readClasses().firstMatching(test, orElse: orElse);
- String lastMatching(bool test(String value), {String orElse()}) =>
- readClasses().lastMatching(test, orElse: orElse);
- String singleMatching(bool test(String value)) =>
- readClasses().singleMatching(test);
+ String firstWhere(bool test(String value), { String orElse() }) =>
+ readClasses().firstWhere(test, orElse: orElse);
+ String lastWhere(bool test(String value), {String orElse()}) =>
+ readClasses().lastWhere(test, orElse: orElse);
+ String singleWhere(bool test(String value)) =>
+ readClasses().singleWhere(test);
String elementAt(int index) => readClasses().elementAt(index);
void clear() {
@@ -32483,13 +32483,13 @@ class _WrappedList<E> implements List<E> {
E get single => _list.single;
- E firstMatching(bool test(E value), { E orElse() }) =>
- _list.firstMatching(test, orElse: orElse);
+ E firstWhere(bool test(E value), { E orElse() }) =>
+ _list.firstWhere(test, orElse: orElse);
- E lastMatching(bool test(E value), {E orElse()}) =>
- _list.lastMatching(test, orElse: orElse);
+ E lastWhere(bool test(E value), {E orElse()}) =>
+ _list.lastWhere(test, orElse: orElse);
- E singleMatching(bool test(E value)) => _list.singleMatching(test);
+ E singleWhere(bool test(E value)) => _list.singleWhere(test);
E elementAt(int index) => _list.elementAt(index);
@@ -32505,9 +32505,9 @@ class _WrappedList<E> implements List<E> {
void retainAll(Iterable elements) { _list.retainAll(elements); }
- void removeMatching(bool test(E element)) { _list.removeMatching(test); }
+ void removeWhere(bool test(E element)) { _list.removeWhere(test); }
- void retainMatching(bool test(E element)) { _list.retainMatching(test); }
+ void retainWhere(bool test(E element)) { _list.retainWhere(test); }
void clear() { _list.clear(); }
« no previous file with comments | « sdk/lib/core/iterable.dart ('k') | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698