Lines Matching defs:proto
154 var proto, prop,
238 proto = {
1237 YUI.prototype = proto;
1240 for (prop in proto) {
1241 if (proto.hasOwnProperty(prop)) {
1242 YUI[prop] = proto[prop];
2691 // once to do the proto to proto mix. The object to object mix will be
3039 * @param {Boolean} [proto=false] Include prototype properties.
3044 O.each = function (obj, fn, thisObj, proto) {
3048 if (proto || owns(obj, key)) {
3071 * @param {Boolean} [proto=false] Include prototype properties.
3076 O.some = function (obj, fn, thisObj, proto) {
3080 if (proto || owns(obj, key)) {
5523 function dispatch(o, f, c, proto, action) {
5533 return Y.Object[action](o, f, c, proto);
5713 * @param {boolean} proto if true, prototype properties are
5717 Y.each = function(o, f, c, proto) {
5718 return dispatch(o, f, c, proto, 'each');
5731 * @param {boolean} proto if true, prototype properties are
5736 Y.some = function(o, f, c, proto) {
5737 return dispatch(o, f, c, proto, 'some');