Searched refs:call (Results 1 - 25 of 192) sorted by relevance

12345678

/yui3/src/test/js/
H A DShouldError.js13 //call superclass
14 YUITest.AssertionError.call(this, message || "This test should have thrown an error but didn't.");
H A DShouldFail.js13 //call superclass
14 YUITest.AssertionError.call(this, message || "This test should fail but didn't.");
H A DUnexpectedError.js15 //call superclass
16 YUITest.AssertionError.call(this, "Unexpected error: " + cause.message);
H A DUnexpectedValue.js16 //call superclass
17 YUITest.AssertionError.call(this, message);
H A DComparisonFailure.js16 //call superclass
17 YUITest.AssertionError.call(this, message);
/yui3/src/event/js/
H A Davailable.js26 return Y.Event.onAvailable.call(Y.Event, id, fn, o, a);
50 return Y.Event.onContentReady.call(Y.Event, id, fn, o, a);
/yui3/src/event-custom/js/
H A Dhandle.js29 f.call(c || this, this);
32 h.batch.call(c || h, f);
H A Dsubscriber.js72 ret = this.fn.call(c, ce.type, args, c);
75 ret = this.fn.call(c, args[0] || null, c);
83 ret = this.fn.call(c);
/yui3/src/handlebars/js/
H A Dhandlebars-base.js37 var type = toString.call(context);
39 if(type === functionType) { context = context.call(this); }
74 var type = toString.call(context);
75 if(type === functionType) { context = context.call(this); }
89 return Handlebars.helpers['if'].call(this, context, options);
/yui3/src/yui/js/
H A Dyui-array.js47 return Native.slice.call(thing, startIndex);
86 if (!hasOwn.call(hash, item)) {
111 Native.forEach.call(array || [], fn, thisObj || Y);
116 fn.call(thisObj || Y, array[i], i, array);
176 return Native.indexOf.call(array, value, from);
241 return Native.some.call(array, fn, thisObj);
244 if (i in array && fn.call(thisObj, array[i], i, array)) {
278 // or functions without apply/call (Safari
/yui3/build/get-nodejs/
H A Dget-nodejs-debug.js6 * so that you can call outerHTML on the document to print it to the screen.
20 cb.onEnd.call(Y, msg, result);
25 cb.onSuccess.call(Y, cb);
31 cb.onFailure.call(Y, er, cb);
/yui3/build/anim-curve/
H A Danim-curve-debug.js12 from = from.slice.call(from);
13 to = to.slice.call(to);
/yui3/build/array-extras/
H A Darray-extras-debug.js135 if (f.call(o, item, i, a)) {
158 return !f.call(o, item, i, a);
180 if (i in a && !f.call(o, a[i], i, a)) {
219 results[i] = f.call(o, a[i], i, a);
252 return f.call(o, init, item, i, a);
262 result = f.call(o, result, a[i], i, a);
284 if (i in a && f.call(o, a[i], i, a)) {
333 var set = f.call(o, item, index, a) ? results.matches : results.rejects;
/yui3/build/arraylist-add/
H A Darraylist-add-debug.js59 if (comparator.call(this, needle, this.item(i))) {
/yui3/build/dataschema-base/
H A Ddataschema-base-debug.js53 value = parser.call(this, value);
/yui3/build/datasource-jsonschema/
H A Ddatasource-jsonschema-debug.js89 payload.response = Y.DataSchema.JSON.apply.call(this, schema, data) || {
/yui3/build/datasource-textschema/
H A Ddatasource-textschema-debug.js88 payload.response = Y.DataSchema.Text.apply.call(this, schema, data) || {
/yui3/build/datasource-xmlschema/
H A Ddatasource-xmlschema-debug.js88 payload.response = Y.DataSchema.XML.apply.call(this, schema, data) || {
/yui3/build/node-deprecated/
H A Dnode-deprecated-debug.js93 return fn.call(context, this);
/yui3/src/anim/js/
H A Danim-curve.js10 from = from.slice.call(from);
11 to = to.slice.call(to);
/yui3/src/button/js/
H A Dplugin.js30 return new Y.Do.AlterReturn('get ' + name, fn.call(this));
45 fn.call(this, val);
/yui3/src/collection/js/
H A Darray-extras.js133 if (f.call(o, item, i, a)) {
156 return !f.call(o, item, i, a);
178 if (i in a && !f.call(o, a[i], i, a)) {
217 results[i] = f.call(o, a[i], i, a);
250 return f.call(o, init, item, i, a);
260 result = f.call(o, result, a[i], i, a);
282 if (i in a && f.call(o, a[i], i, a)) {
331 var set = f.call(o, item, index, a) ? results.matches : results.rejects;
H A Darraylist-add.js57 if (comparator.call(this, needle, this.item(i))) {
H A Darraylist.js67 fn.call( context || item, item, i, this );
91 return fn.call( context || item, item, i, this );
/yui3/src/dataschema/js/
H A Ddataschema-base.js51 value = parser.call(this, value);

Completed in 18 milliseconds

12345678