Lines Matching full:val
106 function sc_putpropBang(sym, key, val) {
112 ht[key] = val;
615 (peephole (hole 2 p ".car = " val)))
617 function sc_setCarBang(p, val) {
618 p.car = val;
622 (peephole (hole 2 p ".cdr = " val)))
624 function sc_setCdrBang(p, val) {
625 p.cdr = val;
1050 function sc_isCharStringEqual(cs1, cs2) { return cs1.val === cs2.val; }
1051 function sc_isCharStringLess(cs1, cs2) { return cs1.val < cs2.val; }
1052 function sc_isCharStringGreater(cs1, cs2) { return cs1.val > cs2.val; }
1053 function sc_isCharStringLessEqual(cs1, cs2) { return cs1.val <= cs2.val; }
1054 function sc_isCharStringGreaterEqual(cs1, cs2) { return cs1.val >= cs2.val; }
1056 { return cs1.val.toLowerCase() === cs2.val.toLowerCase(); }
1058 { return cs1.val.toLowerCase() < cs2.val.toLowerCase(); }
1060 { return cs1.val.toLowerCase() > cs2.val.toLowerCase(); }
1062 { return cs1.val.toLowerCase() <= cs2.val.toLowerCase(); }
1064 { return cs1.val.toLowerCase() >= cs2.val.toLowerCase(); }
1073 this.val = c;
1168 return this.val;
1172 var entry = sc_Char.char2readable[this.val];
1176 return "#\\" + this.val;
1189 (peephole (hole 2 c1 ".val === " c2 ".val")))
1194 (peephole (hole 2 c1 ".val < " c2 ".val")))
1199 (peephole (hole 2 c1 ".val > " c2 ".val")))
1204 (peephole (hole 2 c1 ".val <= " c2 ".val")))
1209 (peephole (hole 2 c1 ".val >= " c2 ".val")))
1214 (peephole (hole 2 c1 ".val.toLowerCase() === " c2 ".val.toLowerCase()")))
1219 (peephole (hole 2 c1 ".val.toLowerCase() < " c2 ".val.toLowerCase()")))
1224 (peephole (hole 2 c1 ".val.toLowerCase() > " c2 ".val.toLowerCase()")))
1229 (peephole (hole 2 c1 ".val.toLowerCase() <= " c2 ".val.toLowerCase()")))
1234 (peephole (hole 2 c1 ".val.toLowerCase() >= " c2 ".val.toLowerCase()")))
1248 { return sc_isCharOfClass(c.val, SC_LOWER_CLASS) ||
1249 sc_isCharOfClass(c.val, SC_UPPER_CLASS); }
1252 (peephole (hole 1 "SC_NUMBER_CLASS.indexOf(" c ".val) != -1")))
1255 { return sc_isCharOfClass(c.val, SC_NUMBER_CLASS); }
1260 var tmp = c.val;
1265 (peephole (hole 1 "SC_UPPER_CLASS.indexOf(" c ".val) != -1")))
1268 { return sc_isCharOfClass(c.val, SC_UPPER_CLASS); }
1271 (peephole (hole 1 "SC_LOWER_CLASS.indexOf(" c ".val) != -1")))
1274 { return sc_isCharOfClass(c.val, SC_LOWER_CLASS); }
1277 (peephole (postfix ".val.charCodeAt(0)")))
1280 { return c.val.charCodeAt(0); }
1288 (peephole (hole 1 "new sc_Char(" c ".val.toUpperCase())")))
1291 { return new sc_Char(c.val.toUpperCase()); }
1293 (peephole (hole 1 "new sc_Char(" c ".val.toLowerCase())")))
1296 { return new sc_Char(c.val.toLowerCase()); }
1319 fill = c.val;
1335 a.push(l.car.val);
1408 (peephole (hole 3 v "[" pos "] = " val)))
1410 function sc_vectorSetBang(v, pos, val) {
1411 v[pos] = val;
1770 function sc_setStructFieldBang(s, name, field, val) {
1771 s[field] = val;
1831 (peephole (hole 3 o "[" field "] = " val)))
1833 function sc_setJsFieldBang(o, field, val) {
1834 return o[field] = val;
1975 function sc_HashtableElement(key, val) {
1977 this.val = val;
1988 function sc_hashtablePutBang(ht, key, val) {
1990 ht[hash] = new sc_HashtableElement(key, val);
1997 return ht[hash].val;
2006 f(ht[v].key, ht[v].val);
2158 function sc_Token(type, val, pos) {
2160 this.val = val;
2501 throw token.val;
2511 return sc_jsstring2string(token.val);
2513 return new sc_Char(token.val);
2517 return readReference.call(this, token.val);
2519 return storeRefence.call(this, token.val);
2521 return sc_jsstring2symbol(token.val);
2527 return token.val;
2529 throw "unexpected token " + token.type + " " + token.val;
2862 p.appendJSString(c.val);
3251 (peephole (postfix ".val")))
3253 function sc_char2string(c) { return c.val; }
3256 (peephole (hole 1 "'\\u1E9C' + " c ".val")))
3258 function sc_char2symbol(c) { return sc_SYMBOL_PREFIX + c.val; }
3275 arguments[i] = arguments[i].val;