Lines Matching refs:Hash

106 var Hash = new Native({
108 name: 'Hash',
118 Hash.implement({
144 Hash.alias('forEach', 'each');
187 ((type == 'arguments' || type == 'collection' || type == 'array') ? Array : Hash).each(iterable, fn, bind);
198 return new Hash(object);
277 unlinked = new Hash(object);
291 The Browser Core. Contains Browser initialization, Window and Document, and the Browser Hash.
786 Script: Hash.js
787 Contains Hash Prototypes. Provides a means for overcoming the JavaScript practical impossibility of extending native Objects.
793 Hash.implement({
805 return (Hash.keyOf(this, value) !== null);
809 Hash.each(properties, function(value, key){
810 Hash.set(this, key, value);
816 Hash.each(properties, function(value, key){
817 Hash.include(this, key, value);
837 Hash.each(this, function(value, key){
849 var results = new Hash;
850 Hash.each(this, function(value, key){
857 var results = new Hash;
858 Hash.each(this, function(value, key){
880 Hash.each(this, function(value, key){
888 Hash.each(this, function(value){
896 Hash.each(this, function(value, key){
900 case 'object': result = Hash.toQueryString(value, key); break;
906 result = Hash.toQueryString(qs, key);
918 Hash.alias({keyOf: 'indexOf', hasValue: 'contains'});
1003 Event.Keys = new Hash({
1333 Element.Constructors = new Hash;
1531 Hash.each(collected, clean);
1561 Hash.extend(attributes, bools);
1562 Hash.extend(attributes, camels.associate(camels.map(String.toLowerCase)));
1589 Hash.each(inserters, function(inserter, where){
1904 Element.Properties = new Hash;
2101 Element.Events = new Hash({
2235 Element.Styles = new Hash({
2768 Selectors.Pseudo = new Hash({
2916 var JSON = new Hash({
2932 Hash.each(obj, function(value, key){
2951 Native.implement([Hash, Array, String, Number], {
3086 params.flashVars = Hash.toQueryString(vars);
3362 Fx.CSS.Parsers = new Hash({
3605 Fx.Transitions = new Hash({
3704 this.headers = new Hash(this.options.headers);
3782 case 'object': case 'hash': data = Hash.toQueryString(data);