Home | History | Annotate | Download | only in parse-only

Lines Matching refs:Native

24 var Native = function(options){
36 object.constructor = Native;
37 object.$family = {name: 'native'};
44 Native.typize(object, family);
49 if (generics) Native.genericize(obj, name, protect);
73 Native.genericize = function(object, property, check){
80 Native.implement = function(objects, properties){
84 Native.typize = function(object, family){
92 for (var n in natives) new Native({name: n, initialize: natives[n], protect: true});
94 var types = {'boolean': Boolean, 'native': Native, 'object': Object};
95 for (var t in types) Native.typize(types[t], t);
102 for (var i = generics[g].length; i--;) Native.genericize(window[g], generics[g][i], true);
106 var Hash = new Native({
381 Native.UID = 1;
384 return (item.uid || (item.uid = [Native.UID++]))[0];
386 return item.uid || (item.uid = Native.UID++);
389 var Window = new Native({
416 var Document = new Native({
787 Contains Hash Prototypes. Provides a means for overcoming the JavaScript practical impossibility of extending native Objects.
923 Contains the Event Native, to make the event object completely crossbrowser.
929 var Event = new Native({
1095 new Native({name: 'Class', initialize: Class}).extend({
1302 var Element = new Native({
1335 var IFrame = new Native({
1366 var Elements = new Native({
1480 Native.implement([Element, Document], {
1857 Native.implement([Element, Window, Document], {
1984 Native.implement([Element, Window, Document], {
2393 Native.implement([Document, Window], {
2458 Native.implement([Window, Document, Element], {
2503 Native.implement([Document, Element], {
2951 Native.implement([Hash, Array, String, Number], {