Searched refs:ArrayList (Results 1 - 14 of 14) sorted by relevance
/yui3/src/collection/js/ |
H A D | arraylist.js | 12 * Generic ArrayList class for managing lists of items and iterating operations 16 * ArrayList, then use ArrayList.addMethod to mirror the API of the constituent 23 * @class ArrayList 27 function ArrayList( items ) { function 60 * @return { ArrayList } this instance 130 * @return { Array } an array representation of the ArrayList 141 * methods added with <code>ArrayList.addMethod()</code>. 152 Y.mix(ArrayList.prototype, ArrayListProto); 154 Y.mix( ArrayList, { [all...] |
H A D | arraylist-filter.js | 9 * Adds filter method to ArrayList prototype 11 Y.mix(Y.ArrayList.prototype, { 14 * <p>Create a new ArrayList (or augmenting class instance) from a subset 16 * argument. The original ArrayList is unchanged.</p> 22 * @return { ArrayList } New instance based on who passed the validator. 23 * @for ArrayList
|
H A D | arraylist-add.js | 5 * @deprecated Use ModelList or a custom ArrayList subclass 9 * Adds methods add and remove to Y.ArrayList 11 Y.mix(Y.ArrayList.prototype, { 14 * Add a single item to the ArrayList. Does not prevent duplicates. 18 * ArrayList. 21 * @return {ArrayList} the instance. 22 * @for ArrayList 23 * @deprecated Use ModelList or a custom ArrayList subclass 40 * Removes first or all occurrences of an item to the ArrayList. If a 48 * @return {ArrayList} th [all...] |
/yui3/build/arraylist-filter/ |
H A D | arraylist-filter-debug.js | 11 * Adds filter method to ArrayList prototype 13 Y.mix(Y.ArrayList.prototype, { 16 * <p>Create a new ArrayList (or augmenting class instance) from a subset 18 * argument. The original ArrayList is unchanged.</p> 24 * @return { ArrayList } New instance based on who passed the validator. 25 * @for ArrayList
|
/yui3/build/arraylist/ |
H A D | arraylist-debug.js | 14 * Generic ArrayList class for managing lists of items and iterating operations 18 * ArrayList, then use ArrayList.addMethod to mirror the API of the constituent 25 * @class ArrayList 29 function ArrayList( items ) { 62 * @return { ArrayList } this instance 132 * @return { Array } an array representation of the ArrayList 143 * methods added with <code>ArrayList.addMethod()</code>. 154 Y.mix(ArrayList.prototype, ArrayListProto); 156 Y.mix( ArrayList, { [all...] |
/yui3/src/collection/tests/ |
H A D | arraylist-tests.js | 3 var suite = new Y.Test.Suite("Y.ArrayList"); 9 var list = new Y.ArrayList(["foo"]); 11 Y.Assert.isInstanceOf(Y.ArrayList, list); 18 Y.augment(C, Y.ArrayList); 34 this.list = new Y.ArrayList(['foo', { bar: 'bar' }, new Y.ArrayList()]); 40 Y.Assert.isInstanceOf(Y.ArrayList, this.list.item(2)); 130 Y.Assert.areSame(-1, this.list.indexOf(new Y.ArrayList())); 136 Y.Assert.areSame(0, (new Y.ArrayList()).size()); 142 Y.Assert.isTrue((new Y.ArrayList()) [all...] |
/yui3/src/collection/tests/src/ |
H A D | arraylist.js | 1 var suite = new Y.Test.Suite("Y.ArrayList"); 7 var list = new Y.ArrayList(["foo"]); 9 Y.Assert.isInstanceOf(Y.ArrayList, list); 16 Y.augment(C, Y.ArrayList); 32 this.list = new Y.ArrayList(['foo', { bar: 'bar' }, new Y.ArrayList()]); 38 Y.Assert.isInstanceOf(Y.ArrayList, this.list.item(2)); 128 Y.Assert.areSame(-1, this.list.indexOf(new Y.ArrayList())); 134 Y.Assert.areSame(0, (new Y.ArrayList()).size()); 140 Y.Assert.isTrue((new Y.ArrayList()) [all...] |
/yui3/build/arraylist-add/ |
H A D | arraylist-add-debug.js | 7 * @deprecated Use ModelList or a custom ArrayList subclass 11 * Adds methods add and remove to Y.ArrayList 13 Y.mix(Y.ArrayList.prototype, { 16 * Add a single item to the ArrayList. Does not prevent duplicates. 20 * ArrayList. 23 * @return {ArrayList} the instance. 24 * @for ArrayList 25 * @deprecated Use ModelList or a custom ArrayList subclass 42 * Removes first or all occurrences of an item to the ArrayList. If a 50 * @return {ArrayList} th [all...] |
/yui3/build/widget-parent/ |
H A D | widget-parent-debug.js | 26 * @uses ArrayList 165 * @type {ArrayList|Widget} 170 * return an Y.ArrayList instance containing the currently selected 178 (new Y.ArrayList(value)) : value; 258 if (Y.instanceOf(selection, Y.ArrayList) && 615 * @return {ArrayList} Y.ArrayList containing the successfully added 617 * Y.ArrayList instance. 624 return (new Y.ArrayList(children)); 655 * @return {ArrayList} [all...] |
/yui3/src/widget-parent/js/ |
H A D | Widget-Parent.js | 24 * @uses ArrayList 163 * @type {ArrayList|Widget} 168 * return an Y.ArrayList instance containing the currently selected 176 (new Y.ArrayList(value)) : value; 256 if (Y.instanceOf(selection, Y.ArrayList) && 613 * @return {ArrayList} Y.ArrayList containing the successfully added 615 * Y.ArrayList instance. 622 return (new Y.ArrayList(children)); 653 * @return {ArrayList} [all...] |
/yui3/build/recordset-base/ |
H A D | recordset-base-debug.js | 69 var ArrayList = Y.ArrayList, 81 @uses ArrayList 646 Y.augment(Recordset, ArrayList);
|
/yui3/src/recordset/js/ |
H A D | recordset-base.js | 10 var ArrayList = Y.ArrayList, variable 22 @uses ArrayList 587 Y.augment(Recordset, ArrayList);
|
/yui3/src/app/js/ |
H A D | model-list.js | 24 @uses ArrayList 495 // item() is inherited from ArrayList. 1079 Y.augment(ModelList, Y.ArrayList);
|
/yui3/build/model-list/ |
H A D | model-list-debug.js | 26 @uses ArrayList 497 // item() is inherited from ArrayList. 1081 Y.augment(ModelList, Y.ArrayList);
|
Completed in 2225 milliseconds