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

Lines Matching full:val

100 function sc_putpropBang(sym, key, val) {
106 ht[key] = val;
609 (peephole (hole 2 p ".car = " val)))
611 function sc_setCarBang(p, val) {
612 p.car = val;
616 (peephole (hole 2 p ".cdr = " val)))
618 function sc_setCdrBang(p, val) {
619 p.cdr = val;
1044 function sc_isCharStringEqual(cs1, cs2) { return cs1.val === cs2.val; }
1045 function sc_isCharStringLess(cs1, cs2) { return cs1.val < cs2.val; }
1046 function sc_isCharStringGreater(cs1, cs2) { return cs1.val > cs2.val; }
1047 function sc_isCharStringLessEqual(cs1, cs2) { return cs1.val <= cs2.val; }
1048 function sc_isCharStringGreaterEqual(cs1, cs2) { return cs1.val >= cs2.val; }
1050 { return cs1.val.toLowerCase() === cs2.val.toLowerCase(); }
1052 { return cs1.val.toLowerCase() < cs2.val.toLowerCase(); }
1054 { return cs1.val.toLowerCase() > cs2.val.toLowerCase(); }
1056 { return cs1.val.toLowerCase() <= cs2.val.toLowerCase(); }
1058 { return cs1.val.toLowerCase() >= cs2.val.toLowerCase(); }
1067 this.val = c;
1162 return this.val;
1166 var entry = sc_Char.char2readable[this.val];
1170 return "#\\" + this.val;
1183 (peephole (hole 2 c1 ".val === " c2 ".val")))
1188 (peephole (hole 2 c1 ".val < " c2 ".val")))
1193 (peephole (hole 2 c1 ".val > " c2 ".val")))
1198 (peephole (hole 2 c1 ".val <= " c2 ".val")))
1203 (peephole (hole 2 c1 ".val >= " c2 ".val")))
1208 (peephole (hole 2 c1 ".val.toLowerCase() === " c2 ".val.toLowerCase()")))
1213 (peephole (hole 2 c1 ".val.toLowerCase() < " c2 ".val.toLowerCase()")))
1218 (peephole (hole 2 c1 ".val.toLowerCase() > " c2 ".val.toLowerCase()")))
1223 (peephole (hole 2 c1 ".val.toLowerCase() <= " c2 ".val.toLowerCase()")))
1228 (peephole (hole 2 c1 ".val.toLowerCase() >= " c2 ".val.toLowerCase()")))
1242 { return sc_isCharOfClass(c.val, SC_LOWER_CLASS) ||
1243 sc_isCharOfClass(c.val, SC_UPPER_CLASS); }
1246 (peephole (hole 1 "SC_NUMBER_CLASS.indexOf(" c ".val) != -1")))
1249 { return sc_isCharOfClass(c.val, SC_NUMBER_CLASS); }
1254 var tmp = c.val;
1259 (peephole (hole 1 "SC_UPPER_CLASS.indexOf(" c ".val) != -1")))
1262 { return sc_isCharOfClass(c.val, SC_UPPER_CLASS); }
1265 (peephole (hole 1 "SC_LOWER_CLASS.indexOf(" c ".val) != -1")))
1268 { return sc_isCharOfClass(c.val, SC_LOWER_CLASS); }
1271 (peephole (postfix ".val.charCodeAt(0)")))
1274 { return c.val.charCodeAt(0); }
1282 (peephole (hole 1 "new sc_Char(" c ".val.toUpperCase())")))
1285 { return new sc_Char(c.val.toUpperCase()); }
1287 (peephole (hole 1 "new sc_Char(" c ".val.toLowerCase())")))
1290 { return new sc_Char(c.val.toLowerCase()); }
1313 fill = c.val;
1329 a.push(l.car.val);
1402 (peephole (hole 3 v "[" pos "] = " val)))
1404 function sc_vectorSetBang(v, pos, val) {
1405 v[pos] = val;
1764 function sc_setStructFieldBang(s, name, field, val) {
1765 s[field] = val;
1825 (peephole (hole 3 o "[" field "] = " val)))
1827 function sc_setJsFieldBang(o, field, val) {
1828 return o[field] = val;
1969 function sc_HashtableElement(key, val) {
1971 this.val = val;
1982 function sc_hashtablePutBang(ht, key, val) {
1984 ht[hash] = new sc_HashtableElement(key, val);
1991 return ht[hash].val;
2000 f(ht[v].key, ht[v].val);
2152 function sc_Token(type, val, pos) {
2154 this.val = val;
2495 throw token.val;
2505 return sc_jsstring2string(token.val);
2507 return new sc_Char(token.val);
2511 return readReference.call(this, token.val);
2513 return storeRefence.call(this, token.val);
2515 return sc_jsstring2symbol(token.val);
2521 return token.val;
2523 throw "unexpected token " + token.type + " " + token.val;
2856 p.appendJSString(c.val);
3245 (peephole (postfix ".val")))
3247 function sc_char2string(c) { return c.val; }
3250 (peephole (hole 1 "'\\u1E9C' + " c ".val")))
3252 function sc_char2symbol(c) { return sc_SYMBOL_PREFIX + c.val; }
3269 arguments[i] = arguments[i].val;