Searched refs:name (Results 1 - 25 of 342) sorted by relevance

1234567891011>>

/yui3/src/autocomplete/tests/functional/
H A Dautocomplete-test-data.js45 {name: "ABC Company", id: 57367 },
46 {name: "Acme Supply Company", id: 84377},
47 {name: "Avery Widgets", id: 73678},
48 {name: "AAA International", id: 73675},
49 {name: "Atlantic Brothers, Inc", id: 83757},
50 {name: "Ace Products", id: 48588},
51 {name: "Above Average, Ltd", id: 75968}
/yui3/src/autocomplete/tests/assets/
H A Dtest-data.js43 {name: "ABC Company", id: 57367 },
44 {name: "Acme Supply Company", id: 84377},
45 {name: "Avery Widgets", id: 73678},
46 {name: "AAA International", id: 73675},
47 {name: "Atlantic Brothers, Inc", id: 83757},
48 {name: "Ace Products", id: 48588},
49 {name: "Above Average, Ltd", id: 75968}
/yui3/src/node/js/
H A Dnode-data.js22 * @param {string} name Optional name of the data field to retrieve.
23 * If no name is given, all data is returned.
27 getData: function(name) {
33 if (name in data) {
34 ret = data[name];
36 ret = this._getDataAttribute(name);
58 name;
61 name = attrs[i].name;
[all...]
/yui3/build/profiler/
H A Dprofiler-debug.js24 * Creates a report object with the given name.
25 * @param {String} name The name to store for the report object.
30 function createReport(name){
31 report[name] = {
38 return report[name];
45 * @param {String} name The name of the function to mark as stopped.
53 function saveDataPoint(name, duration){
56 var functionData /*:Object*/ = report[name];
[all...]
/yui3/src/profiler/js/
H A DProfiler.js22 * Creates a report object with the given name.
23 * @param {String} name The name to store for the report object.
28 function createReport(name){
29 report[name] = {
36 return report[name];
43 * @param {String} name The name of the function to mark as stopped.
51 function saveDataPoint(name, duration){
54 var functionData /*:Object*/ = report[name];
[all...]
/yui3/src/attribute/js/
H A DState.js26 * @param name {String} The name of the item.
27 * @param key {String} The name of the property.
30 add : function(name, key, val) {
32 d[name] = d[name] || {};
33 d[name][key] = val;
40 * @param name {String} The name of the item.
43 addAll: function(name,
[all...]
H A DAttributeExtras.js5 * but can also be used independently to provide a name/property/value data structure to
48 * @param {String} name The name of the attribute whose configuration is to be updated.
51 modifyAttr: function(name, config) {
55 if (host.attrAdded(name)) {
57 if (host._isLazyAttr(name)) {
58 host._addLazyAttr(name);
64 state.add(name, prop, config[prop]);
68 state.remove(name, PUBLISHED);
74 if (!host.attrAdded(name)) {
[all...]
H A DAttributeCore.js5 * but can also be used independently to provide a name/property/value data structure to
144 * <p>valueFn can also be set to a string, representing the name of the instance method to be used to retrieve the value.</p>
168 * <p>setter can also be set to a string, representing the name of the instance method to be used as the setter function.</p>
179 * <p>getter can also be set to a string, representing the name of the instance method to be used as the getter function.</p>
189 * <p>validator can also be set to a string, representing the name of the instance method to be used as the validator function.</p>
199 * <p>The setter, getter and validator are invoked with the value and name passed in as the first and second arguments, and with
207 * @param {String} name The name of the attribute.
221 addAttr: function(name, config, lazy) {
223 Y.log('Adding attribute: ' + name, 'inf
[all...]
/yui3/build/attribute-extras/
H A Dattribute-extras-debug.js7 * but can also be used independently to provide a name/property/value data structure to
50 * @param {String} name The name of the attribute whose configuration is to be updated.
53 modifyAttr: function(name, config) {
57 if (host.attrAdded(name)) {
59 if (host._isLazyAttr(name)) {
60 host._addLazyAttr(name);
66 state.add(name, prop, config[prop]);
70 state.remove(name, PUBLISHED);
76 if (!host.attrAdded(name)) {
[all...]
/yui3/src/event-custom/tests/src/
H A Devent-custom-base-y.js8 name: "Y.on",
/yui3/src/test/js/
H A DAssertionError.js21 * The name of the error that occurred.
23 * @property name
25 this.name = "Assert Error";
49 return this.name + ": " + this.getMessage();
H A DTestSuite.js5 * @param {String||Object} data The name of the test suite or an object containing
6 * a name property as well as setUp and tearDown methods.
14 * The name of the test suite.
16 * @property name
18 this.name = "";
30 this.name = data;
39 //double-check name
40 if (this.name === ""){
41 this.name = "testSuite" + (+new Date());
H A DResults.js8 * @param {String} name The name of the test.
10 YUITest.Results = function(name){
15 * @property name
17 this.name = name;
/yui3/src/collection/js/
H A Dinvoke.js8 that do not have a function by that name will be skipped.
16 @param {String} name the name of the method to execute on each item.
23 Y.Array.invoke = function(items, name) {
29 if (item && isFunction(item[name])) {
30 ret[i] = item[name].apply(item, args);
/yui3/build/attribute-core/
H A Dattribute-core-debug.js28 * @param name {String} The name of the item.
29 * @param key {String} The name of the property.
32 add : function(name, key, val) {
34 d[name] = d[name] || {};
35 d[name][key] = val;
42 * @param name {String} The name of the item.
45 addAll: function(name,
[all...]
/yui3/build/querystring-stringify/
H A Dquerystring-stringify-debug.js46 * @param name {String} (optional) Name of the current key, for handling children recursively.
49 QueryString.stringify = function (obj, c, name) {
56 return name ? QueryString.escape(name) + eq : '';
65 return QueryString.escape(name) + eq + QueryString.escape(obj);
70 name = aK ? name + '[]' : name;
73 s.push( QueryString.stringify(obj[i], c, name) );
93 begin = name
[all...]
/yui3/build/cookie/
H A Dcookie-debug.js32 * Checks the validity of a cookie name.
34 function validateCookieName(name){
35 if (!isString(name) || name === ""){
36 error("Cookie name must be a non-empty string.");
41 * Checks the validity of a subcookie name.
45 error("Subcookie name must be a non-empty string.");
62 * @param {String} name The name of the cookie.
71 _createCookieString : function (name /*
[all...]
/yui3/src/console/tests/
H A Dconsole-tests.js6 name: "Lifecycle",
13 name: "API",
47 name: "Attributes",
97 name: "Runtime expectations",
110 name: "Bugs",
/yui3/src/console/tests/src/
H A Dconsole.js4 name: "Lifecycle",
11 name: "API",
45 name: "Attributes",
95 name: "Runtime expectations",
108 name: "Bugs",
/yui3/src/querystring/js/
H A Dquerystring-stringify.js44 * @param name {String} (optional) Name of the current key, for handling children recursively.
47 QueryString.stringify = function (obj, c, name) {
54 return name ? QueryString.escape(name) + eq : '';
63 return QueryString.escape(name) + eq + QueryString.escape(obj);
68 name = aK ? name + '[]' : name;
71 s.push( QueryString.stringify(obj[i], c, name) );
91 begin = name
[all...]
/yui3/build/array-invoke/
H A Darray-invoke-debug.js10 that do not have a function by that name will be skipped.
18 @param {String} name the name of the method to execute on each item.
25 Y.Array.invoke = function(items, name) {
31 if (item && isFunction(item[name])) {
32 ret[i] = item[name].apply(item, args);
/yui3/src/button/js/
H A Dplugin.js21 * @param name {string}
24 _afterNodeGet: function (name) {
27 fn = ATTRS[name] && ATTRS[name].getter && this[ATTRS[name].getter];
30 return new Y.Do.AlterReturn('get ' + name, fn.call(this));
36 * @param name {String}
40 _afterNodeSet: function (name, val) {
42 fn = ATTRS[name] && ATTRS[name]
[all...]
/yui3/src/cookie/js/
H A DCookie.js30 * Checks the validity of a cookie name.
32 function validateCookieName(name){
33 if (!isString(name) || name === ""){
34 error("Cookie name must be a non-empty string.");
39 * Checks the validity of a subcookie name.
43 error("Subcookie name must be a non-empty string.");
60 * @param {String} name The name of the cookie.
69 _createCookieString : function (name /*
[all...]
/yui3/src/yui/scripts/
H A Dbuild_doc_modules.js19 if (!a.name || !b.name) {
22 var an = a.name.toLowerCase(),
23 bn = b.name.toLowerCase(),
44 if (alias_data[v.name] && alias_data[v.name].use) {
45 d = 'Alias module for: `' + alias_data[v.name].use.join(', ') + '`';
49 name: v.name,
72 str.push(' <td>`' + m.name
[all...]
/yui3/build/button-plugin/
H A Dbutton-plugin-debug.js23 * @param name {string}
26 _afterNodeGet: function (name) {
29 fn = ATTRS[name] && ATTRS[name].getter && this[ATTRS[name].getter];
32 return new Y.Do.AlterReturn('get ' + name, fn.call(this));
38 * @param name {String}
42 _afterNodeSet: function (name, val) {
44 fn = ATTRS[name] && ATTRS[name]
[all...]

Completed in 103 milliseconds

1234567891011>>