Home | History | Annotate | Download | only in benchmarks

Lines Matching defs:ht

107     var ht = sc_properties[sym];
108 if (!ht) {
109 ht = new Object();
110 sc_properties[sym] = ht;
112 ht[key] = val;
117 var ht = sc_properties[sym];
118 if (ht) {
119 if (key in ht)
120 return ht[key];
129 var ht = sc_properties[sym];
130 if (ht)
131 delete ht[key];
1141 "ht": "\011",
1988 function sc_hashtablePutBang(ht, key, val) {
1990 ht[hash] = new sc_HashtableElement(key, val);
1994 function sc_hashtableGet(ht, key) {
1996 if (hash in ht)
1997 return ht[hash].val;
2003 function sc_hashtableForEach(ht, f) {
2004 for (var v in ht) {
2005 if (ht[v] instanceof sc_HashtableElement)
2006 f(ht[v].key, ht[v].val);
2013 function sc_hashtableContains(ht, key) {
2015 if (hash in ht)