Home | History | Annotate | Download | only in v8-v4

Lines Matching defs:ht

101     var ht = sc_properties[sym];
102 if (!ht) {
103 ht = new Object();
104 sc_properties[sym] = ht;
106 ht[key] = val;
111 var ht = sc_properties[sym];
112 if (ht) {
113 if (key in ht)
114 return ht[key];
123 var ht = sc_properties[sym];
124 if (ht)
125 delete ht[key];
1135 "ht": "\011",
1982 function sc_hashtablePutBang(ht, key, val) {
1984 ht[hash] = new sc_HashtableElement(key, val);
1988 function sc_hashtableGet(ht, key) {
1990 if (hash in ht)
1991 return ht[hash].val;
1997 function sc_hashtableForEach(ht, f) {
1998 for (var v in ht) {
1999 if (ht[v] instanceof sc_HashtableElement)
2000 f(ht[v].key, ht[v].val);
2007 function sc_hashtableContains(ht, key) {
2009 if (hash in ht)