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

Lines Matching refs:Native

143 		// Resetting the length to 0, then using the native Array push
2472 // This is to prevent a memory leak with non-native
2643 // Handle triggering native .onfoo handlers (and on links since we don't call .click() for links)
2647 // Trigger the native events (except for clicks on links)
2813 // So we won't rely on the native value
4400 var Native = function(options){
4412 object.constructor = Native;
4413 object.$family = {name: 'native'};
4420 Native.typize(object, family);
4425 if (generics) Native.genericize(obj, name, protect);
4449 Native.genericize = function(object, property, check){
4456 Native.implement = function(objects, properties){
4460 Native.typize = function(object, family){
4468 for (var n in natives) new Native({name: n, initialize: natives[n], protect: true});
4470 var types = {'boolean': Boolean, 'native': Native, 'object': Object};
4471 for (var t in types) Native.typize(types[t], t);
4478 for (var i = generics[g].length; i--;) Native.genericize(window[g], generics[g][i], true);
4482 var Hash = new Native({
4757 Native.UID = 1;
4760 return (item.uid || (item.uid = [Native.UID++]))[0];
4762 return item.uid || (item.uid = Native.UID++);
4765 var Window = new Native({
4792 Native({
5163 Contains Hash Prototypes. Provides a means for overcoming the JavaScript practical impossibility of extending native Objects.
5299 Contains the Event Native, to make the event object completely crossbrowser.
5305 var Event = new Native({
5471 new Native({name: 'Class', initialize: Class}).extend({
5678 var Element = new Native({
5711 var IFrame = new Native({
5742 var Elements = new Native({
5856 Native.implement([Element, Document], {
6233 Native.implement([Element, Window, Document], {
6360 Native.implement([Element, Window, Document], {
6769 Native.implement([Document, Window], {
6834 Native.implement([Window, Document, Element], {
6879 Native.implement([Document, Element], {
7327 Native.implement([Hash, Array, String, Number], {
9303 // use native browser JS 1.6 implementation if available
12076 // extend element because hasAttribute may not be native