Lines Matching refs:proto
764 for (var proto = obj.__proto__; proto; proto = proto.__proto__) {
765 var indices = %GetArrayKeys(proto, length);
771 if (!obj.hasOwnProperty(i) && proto.hasOwnProperty(i)) {
772 obj[i] = proto[i];
780 !obj.hasOwnProperty(index) && proto.hasOwnProperty(index)) {
781 obj[index] = proto[index];
795 for (var proto = obj.__proto__; proto; proto = proto.__proto__) {
796 var indices = %GetArrayKeys(proto, to);
802 if (proto.hasOwnProperty(i)) {
810 proto.hasOwnProperty(index)) {