Home | History | Annotate | Download | only in intltest

Lines Matching full:124

3509         {"$124",           4, -1, FALSE},
3510 {"$124 $124", 4, -1, FALSE},
3511 {"$124 ", 4, -1, FALSE},
3512 //{"$ 124 ", 5, -1, FALSE}, // TODO: need to handle space correctly
3514 {"$ 124 ", 0, 1, FALSE}, // errorIndex used to be 0, now 1 (better)
3516 {" $ 124 ", 0, 0, FALSE}, // TODO: need to handle space correctly
3517 {"124$", 0, 3, FALSE}, // TODO: need to handle space correctly
3518 // {"124 $", 5, -1, FALSE}, // TODO: OK or not, need currency spacing rule
3519 {"124 $", 0, 3, FALSE},
3520 {"$124", 4, -1, TRUE},
3521 {"$124 $124", 4, -1, TRUE},
3522 {"$124 ", 4, -1, TRUE},
3523 {"$ 124 ", 5, -1, TRUE},
3525 {" $ 124 ", 6, -1, TRUE},
3526 //{"124$", 4, -1, TRUE}, // TODO: need to handle trailing currency correctly
3527 {"124$", 3, -1, TRUE},
3528 //{"124 $", 5, -1, TRUE}, // TODO: OK or not, need currency spacing rule
3529 {"124 $", 4, -1, TRUE},
3553 result.getLong() != 124) {
3554 errln("FAILED parse " + stringToBeParsed + "; wrong number, expect: 124, got " + result.getLong());