Searched defs:constructor (Results 1 - 21 of 21) sorted by relevance
| /yui3/src/event-custom/js/ |
| H A D | subscriber.js | 8 * @constructor 57 constructor: Y.Subscriber,
|
| H A D | event-custom.js | 46 * @constructor 266 constructor: Y.CustomEvent,
|
| H A D | event-target.js | 91 // Y.log('EventTarget constructor executed: ' + this._yuid); 126 constructor: ET,
|
| /yui3/src/test/js/ |
| H A D | AssertionError.js | 9 * @constructor
30 //restore constructor
31 constructor: YUITest.AssertionError,
|
| H A D | ShouldError.js | 9 * @constructor
28 //restore constructor
29 YUITest.ShouldError.prototype.constructor = YUITest.ShouldError;
|
| H A D | ShouldFail.js | 9 * @constructor
28 //restore constructor
29 YUITest.ShouldFail.prototype.constructor = YUITest.ShouldFail;
|
| H A D | TestCase.js | 7 * @constructor
32 //restore constructor
33 constructor: YUITest.TestCase,
|
| H A D | TestSuite.js | 9 * @constructor
48 //restore constructor
49 constructor: YUITest.TestSuite,
|
| H A D | UnexpectedError.js | 11 * @constructor
44 //restore constructor
45 YUITest.UnexpectedError.prototype.constructor = YUITest.UnexpectedError;
|
| H A D | EventTarget.js | 6 * @constructor
24 constructor: YUITest.EventTarget,
|
| H A D | Reporter.js | 7 * @constructor
54 //restore missing constructor
55 constructor: YUITest.Reporter,
|
| H A D | ComparisonFailure.js | 12 * @constructor
45 //restore constructor
46 YUITest.ComparisonFailure.prototype.constructor = YUITest.ComparisonFailure;
|
| H A D | UnexpectedValue.js | 12 * @constructor
38 //restore constructor
39 YUITest.UnexpectedValue.prototype.constructor = YUITest.UnexpectedValue;
|
| /yui3/src/base/js/ |
| H A D | BaseBuild.js | 77 builtClass.prototype.constructor = builtClass; 129 BuiltClass.superclass.constructor.apply(this, arguments); 197 c = c.superclass ? c.superclass.constructor : null; 262 * Builds a custom constructor function (class) from the 264 * provided. The NAME field for the constructor function is 302 * Creates a new class (constructor function) which extends the base class passed in as the second argument,
|
| H A D | Base.js | 60 * @constructor 73 * way to configure events listeners and plugins for the instance, as part of the constructor call: 78 * <dd>An event name to listener function map, to register event listeners for the "on" moment of the event. A constructor convenience property for the <a href="Base.html#method_on">on</a> method.</dd> 80 * <dd>An event name to listener function map, to register event listeners for the "after" moment of the event. A constructor convenience property for the <a href="Base.html#method_after">after</a> method.</dd> 82 * <dd>An object, or array of objects, to register as bubble targets for bubbled events fired by this instance. A constructor convenience property for the <a href="EventTarget.html#method_addTarget">addTarget</a> method.</dd> 84 * <dd>A plugin, or array of plugins to be plugged into the instance (see PluginHost's plug method for signature details). A constructor convenience property for the <a href="Plugin.Host.html#method_plug">plug</a> method.</dd> 158 * @param {Object} config The constructor configuration object 164 this._eventPrefix = this.constructor.EVENT_PREFIX || this.constructor.NAME; 217 * refers to the configuration object passed to the constructor [all...] |
| H A D | BaseCore.js | 25 OBJECT_CONSTRUCTOR = Object.prototype.constructor, 57 * @constructor 67 Y.log('constructor called', 'life', 'base'); 70 else { Y.log('Based constructor called more than once. Ignoring duplicate calls', 'life', 'base'); } 102 * allow users to add ad-hoc attributes through the constructor configuration 178 * @param {Object} config The constructor configuration object 199 * @deprecated Use this.constructor.NAME 203 this.name = this.constructor.NAME; 245 // Need to initPlugins manually, to handle constructor parsing, static Plug parsing 282 * @return {Function[]} An array of classes (constructor function [all...] |
| /yui3/src/graphics/js/ |
| H A D | GraphicBase.js | 46 * @constructor 62 * Initializes the attributes for a shape. If an attribute config is passed into the constructor of the host, 71 attrConfig = this.constructor.ATTRS, 141 attrConfig = host.constructor.ATTRS; 202 attrConfig = host.constructor.ATTRS; 231 * @constructor 242 host.name = host.constructor.NAME; 243 host._eventPrefix = host.constructor.EVENT_PREFIX || host.constructor.NAME; 248 // Need to initPlugins manually, to handle constructor parsin [all...] |
| /yui3/src/event/js/ |
| H A D | synthetic.js | 24 * @constructor 108 * @constructor 123 constructor: SynthRegistry, 202 * @constructor 275 constructor: SyntheticEvent,
|
| /yui3/src/node/js/ |
| H A D | align-plugin.js | 184 Align.prototype.constructor = Align;
|
| /yui3/src/button/js/ |
| H A D | core.js | 15 * @constructor 24 constructor: Button,
|
| /yui3/src/transition/js/ |
| H A D | transition-native.js | 39 * @constructor 116 constructor: Transition, 125 config.duration: anim.constructor.DEFAULT_DURATION; 128 config.delay: anim.constructor.DEFAULT_DELAY; 130 anim._easing = config.easing || anim.constructor.DEFAULT_EASING;
|
Completed in 50 milliseconds