Lines Matching defs:set
66 // set up the core environment
138 // overriding values set in those config files if there is a '
367 // this is to set up the path to the loader. The file
841 * This private method is called from the `use` method queue. To ensure that only one set of loading
1282 //If there is a GlobalConfig, apply it first to set the defaults
1292 // set up the environment
1382 * If `throwFail` is set, `Y.error` will generate or re-throw a JS Error.
1609 * loading nodes. If not set, there is no timeout.
1632 * configure the base and combo spec for a set of modules.
1800 * When set to true, the YUI loader will expect that all modules
1803 * set to true, loader will fail if the module registration fails
1880 if the `useNativeES5` YUI config option is set to `false`.
3030 * prototype properties, set the _proto_ parameter to `true`.
3062 * prototype properties, set the _proto_ parameter to `true`.
3126 * @param o The object on which to set the sub value.
3128 * at which to set the sub value.
3130 * @return {Object} The modified object, with the new sub value set, or
3293 * The mobile property will be set to a string containing any relevant
3707 will be set to "utf-8" and nodes will be given an auto-generated `id`
3762 is set automatically by the `css()` and `js()` functions and will be
4173 // attribute is set to false to explicitly disable async execution.
4230 // options that have already been set.
5439 * single time unless periodic is set to true.
5664 * Utility to set up the prototype, constructor and superclass properties to
5762 * an object. Used to set up context for cloned functions.
5785 // if we do this we need to set the flags too
6671 * @param {String} attr The attribute to set.
6749 addFeature('value-set', 'select', {
6758 if (!testFeature('value-set', 'select')) {
7346 * @param {String} att The style property to set.
7361 if (CUSTOM_STYLES[att].set) {
7362 CUSTOM_STYLES[att].set(node, val, style);
7531 set: function(node, val, style) {
7843 set: function(node, val, style) {
7872 } catch(e) { // IE throws error on invalid style set; trap common cases
7874 set: function(node, val, style) {
7885 set: function(node, val, style) {
8238 * @param {Boolean} noRetry By default we try and set the position a second time if the first fails
8274 Y.log('setXY failed to set ' + node + ' to ' + xy, 'info', 'dom-screen');
8651 * Retrieves a set of nodes based on a given CSS selector.
9405 * By default all custom events are logged in the debug build, set silent
9466 * is set to true
9562 * If set to true, the custom event will deliver an EventFacade object
9825 * @param {Object*} arguments an arbitrary set of parameters to pass to
10848 * @param arguments {Object*} an arbitrary set of parameters to pass to
10997 * when the broadcast config is set to 2. This property is
11148 * Wraps and protects a custom event for use when emitFacade is set to true.
11392 // set up stack to allow the next item to be processed
11591 // set the original target to that the target payload on the
11641 * Node properties can be accessed via the set/get methods.
11645 * the <code>set</code> and <code>get</code> methods.
11938 * @param {String} name The attribute/property being set
11939 * @param {any} val The value to be set
12062 * Unless pre-configured (via Node.ATTRS), set hands
12064 * attributes/properties for the node will be set.
12065 * To set custom attributes use setAttribute.
12066 * @method set
12067 * @param {String} attr The attribute to be set.
12068 * @param {any} val The value to set the attribute to.
12071 set: function(attr, val) {
12092 * @param {Object} attrMap an object of name/value pairs to set
12100 this.set(n, v);
12466 * NodeList properties can be accessed via the set/get methods.
12827 * @method set
12828 * @see Node.set
12830 'set'
13106 * @param {string} value The value to set
13163 * @param {string} value The value to set
13431 * Use `Y.Escape.html()` to escape HTML, or `set('text')` to add as text.
13456 * Use `Y.Escape.html()` to escape HTML, or `set('text')` to add as text.
13507 * Use `Y.Escape.html()` to escape HTML, or `set('text')` to add as text.
13522 * Use `Y.Escape.html()` to escape HTML, or `set('text')` to add as text.
13633 * @param {string} value The value to set
14095 if (this.get('value') !== "") { // IE < 8 fails to populate specified when set in HTML
14240 * @param {string} name The name of the field to set. If no name
14296 * @param {string} name The name of the field to set. If no name
14353 * fire normally. That configuration option is 'injected' -- set
14406 // this case, even though the shiftKey modifier is set)
14479 // IE6-8 don't set charCode or which.
14480 // All browsers other than IE6-8 set which=keyCode in keydown, keyup, and
14844 * is set
14905 * @param {boolean|object} p_override If set to true, fn will execute
14906 * in the context of p_obj, if set to an object it
14937 // set by the event system for lazy DOM listeners
14974 * @param {boolean|object} override If set to true, fn will execute
15183 // set context to the Node if not specified
16039 * object set to the Node matched by the filter (unless a specific context was
16041 * <code>currentTarget</code> will also be set to the matching Node. The
16301 * that may be needed for event delegation. 'currentTarget' is set to
16303 * from the filter function. 'container' is set to the element that the
16353 * object set to the Node matched by the filter (unless a specific context was
16355 * <code>currentTarget</code> will also be set to the matching Node. The
16523 Y.log('unable to set scrollLeft for ' + node, 'error', 'Node');
16543 Y.log('unable to set scrollTop for ' + node, 'error', 'Node');
16696 * @param {String} attr The style attribute to set.
16766 * @param {String} attr The style attribute to set.
16820 * supported. When set to true, the key of an
16934 // IO global events are set to broadcast by default.
17006 // a "Type Mismatch" error if the event handler is set to "null".
17475 * @param {Number} id Transaction id, if already set.
17544 // Determine if request is to be set as
17587 // Retry the request with the XDR transport set
17602 Y.log('Configuration timeout set to: ' + config.timeout, 'info', 'io');
17768 * @param {String} [id] The transport to set as the default, if empty a new transport is created.
18310 // TODO: selective set
19664 setter = (i in customAttr && 'set' in customAttr[i]) ?
19665 customAttr[i].set : Transition.DEFAULT_SETTER;