Lines Matching refs:at

1415     static void checkArrayTypes0(ArrayTypes at, AnnotatedElement e) {
1417 if (!(at.b().length == 0 &&
1418 at.s().length == 0 &&
1419 at.i().length == 0 &&
1420 at.l().length == 0 &&
1421 at.c().length == 0 &&
1422 at.f().length == 0 &&
1423 at.d().length == 0 &&
1424 at.bool().length == 0 &&
1425 at.str().length == 0 &&
1426 at.cls().length == 0 &&
1427 at.e().length == 0 &&
1428 at.a().length == 0)) {
1441 static void checkArrayTypes1(ArrayTypes at, AnnotatedElement e) {
1443 if (!(at.b()[0] == 1 &&
1444 at.s()[0] == 2 &&
1445 at.i()[0] == 3 &&
1446 at.l()[0] == 4L &&
1447 at.c()[0] == '5' &&
1448 at.f()[0] == 6.0f &&
1449 at.d()[0] == 7.0 &&
1450 at.bool()[0] == true &&
1451 at.str()[0].equals("custom") &&
1452 at.cls()[0] == Map.class &&
1453 at.e()[0] == Stooge.MOE &&
1454 at.a()[0].x() == 1 && at.a()[0].y() == 2 &&
1456 at.b().length==1 && at.s().length==1 && at.i().length==1 &&
1457 at.l().length==1 && at.c().length==1 && at.d().length==1 &&
1458 at.bool().length==1 && at.str().length==1 &&
1459 at.cls().length==1 && at.cls().length==1 && at.a().length==1))
1471 static void checkArrayTypes2(ArrayTypes at, AnnotatedElement e) {
1473 if (!(at.b()[0] == 1 && at.b()[1] == 2 &&
1474 at.s()[0] == 2 && at.s()[1] == 3 &&
1475 at.i()[0] == 3 && at.i()[1] == 4 &&
1476 at.l()[0] == 4L && at.l()[1] == 5L &&
1477 at.c()[0] == '5' && at.c()[1] == '6' &&
1478 at.f()[0] == 6.0f && at.f()[1] == 7.0f &&
1479 at.d()[0] == 7.0 && at.d()[1] == 8.0 &&
1480 at.bool()[0] == true && at.bool()[1] == false &&
1481 at.str()[0].equals("custom") && at.str()[1].equals("paint") &&
1482 at.cls()[0] == Map.class && at.cls()[1] == Set.class &&
1483 at.e()[0] == Stooge.MOE && at.e()[1] == Stooge.CURLY &&
1484 at.a()[0].x() == 1 && at.a()[0].y() == 2 && at.a()[1].x() == 3 && at.a()[1].y() == 4 &&
1486 at.b().length==2 && at.s().length==2 && at.i().length==2 &&
1487 at.l().length==2 && at.c().length==2 && at.d().length==2 &&
1488 at.bool().length==2 && at.str().length==2 &&
1489 at.cls().length==2 && at.cls().length==2 && at.a().length==2))
1501 static void checkArrayTypesOverrideDefault(ArrayTypesWithDefault at, AnnotatedElement e) {
1503 if (!(at.b()[0] == 1 &&
1504 at.s()[0] == 2 &&
1505 at.i()[0] == 3 &&
1506 at.l()[0] == 4L &&
1507 at.c()[0] == '5' &&
1508 at.f()[0] == 6.0f &&
1509 at.d()[0] == 7.0 &&
1510 at.bool()[0] == true &&
1511 at.str()[0].equals("custom") &&
1512 at.cls()[0] == Map.class &&
1513 at.e()[0] == Stooge.MOE &&
1514 at.a()[0].x() == 1 && at.a()[0].y() == 2 &&
1516 at.b().length==1 && at.s().length==1 && at.i().length==1 &&
1517 at.l().length==1 && at.c().length==1 && at.d().length==1 &&
1518 at.bool().length==1 && at.str().length==1 &&
1519 at.cls().length==1 && at.cls().length==1))
1531 static void checkArrayTypesAcceptDefault(ArrayTypesWithDefault at, AnnotatedElement e) {
1533 if (!(at.b()[0] == 11 &&
1534 at.s()[0] == 12 &&
1535 at.i()[0] == 13 &&
1536 at.l()[0] == 14L &&
1537 at.c()[0] == 'V' &&
1538 at.f()[0] == 16.0f &&
1539 at.d()[0] == 17.0 &&
1540 at.bool()[0] == false &&
1541 at.str()[0].equals("default") &&
1542 at.cls()[0] == Class.class &&
1543 at.e()[0] == Stooge.LARRY &&
1544 at.a()[0].x() == 11 && at.a()[0].y() == 12 &&
1546 at.b().length==1 && at.s().length==1 && at.i().length==1 &&
1547 at.l().length==1 && at.c().length==1 && at.d().length==1 &&
1548 at.bool().length==1 && at.str().length==1 &&
1549 at.cls().length==1 && at.cls().length==1))