HomeSort by relevance Sort by last modified time
    Searched refs:expect2 (Results 1 - 17 of 17) sorted by null

  /external/v8/tools/gyp/test/multiple-targets/
gyptest-all.py 22 expect2 = """\
28 test.run_built_executable('prog2', stdout=expect2, chdir='relocate/src')
gyptest-default.py 22 expect2 = """\
28 test.run_built_executable('prog2', stdout=expect2, chdir='relocate/src')
  /external/v8/tools/gyp/test/same-source-file-name/
gyptest-all.py 26 expect2 = """\
32 test.run_built_executable('prog2', chdir='relocate/src', stdout=expect2)
gyptest-default.py 26 expect2 = """\
32 test.run_built_executable('prog2', chdir='relocate/src', stdout=expect2)
  /external/v8/tools/gyp/test/same-gyp-name/
gyptest-all.py 25 expect2 = """\
36 test.run_built_executable('program2', chdir=chdir2, stdout=expect2)
gyptest-default.py 25 expect2 = """\
36 test.run_built_executable('program2', chdir=chdir2, stdout=expect2)
  /external/v8/tools/gyp/test/builddir/
gyptest-all.py 55 expect2 = """\
80 run_builddir('prog2', expect2)
gyptest-default.py 55 expect2 = """\
80 run_builddir('prog2', expect2)
  /external/valgrind/none/tests/
map_unmap.c 88 void *expect1, *expect2; local
93 expect2 = domap(LEN, 0);
95 munmap(expect2, LEN);
108 if (m2 != expect2) {
109 printf("FAIL i=%d: m2=%p expect2=%p\n",
110 i, m2, expect2);
  /external/webrtc/webrtc/base/
versionparsing_unittest.cc 28 static const ExampleVersion expect2 = {2, 0, 0, 1}; local
30 EXPECT_EQ(0, CompareVersions(ver, expect2, kExampleSegments));
  /external/icu/icu4c/source/test/intltest/
numfmtst.h 230 void expect2(NumberFormat& fmt, const Formattable& n, const UnicodeString& str);
234 void expect2(NumberFormat& fmt, const Formattable& n, const char* str) { function in class:NumberFormatTest
235 expect2(fmt, n, UnicodeString(str, ""));
238 void expect2(NumberFormat* fmt, const Formattable& n, const UnicodeString& str, UErrorCode ec);
240 void expect2(NumberFormat* fmt, const Formattable& n, const char* str, UErrorCode ec) { function in class:NumberFormatTest
241 expect2(fmt, n, UnicodeString(str, ""), ec);
numfmtst.cpp 2878 void NumberFormatTest::expect2(NumberFormat& fmt, const Formattable& n, const UnicodeString& str) { function in class:NumberFormatTest
2884 void NumberFormatTest::expect2(NumberFormat* fmt, const Formattable& n, function in class:NumberFormatTest
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberFormatTest.java 1411 expect2(fmt1, n, "1.234E3"); method
1412 expect2(fmt2, n, "1.234E+3"); method
1461 expect2(new DecimalFormat("#E0", US), 12345.0, "1.2345E4"); method
1474 expect2(new DecimalFormat("##0.####E0", US), 12345, "12.345E3"); method
1483 expect2(new DecimalFormat("##0.####E0", US), 780.e-9, "780E-9"); method
1485 expect2(new DecimalFormat(".###E0", US), 0, ".0E0"); method
1507 expect2(new DecimalFormat("#E0", US), 45678000, "4.5678E7"); method
1508 expect2(new DecimalFormat("##E0", US), 45678000, "45.678E6"); method
1509 expect2(new DecimalFormat("####E0", US), 45678000, "4567.8E4"); method
1529 expect2(new DecimalFormat("###E0", US), 0.0000123, "12.3E-6"); method
1530 expect2(new DecimalFormat("###E0", US), 0.000123, "123E-6"); method
1531 expect2(new DecimalFormat("###E0", US), 0.00123, "1.23E-3"); method
1532 expect2(new DecimalFormat("###E0", US), 0.0123, "12.3E-3"); method
1533 expect2(new DecimalFormat("###E0", US), 0.123, "123E-3"); method
1534 expect2(new DecimalFormat("###E0", US), 1.23, "1.23E0"); method
1535 expect2(new DecimalFormat("###E0", US), 12.3, "12.3E0"); method
1536 expect2(new DecimalFormat("###E0", US), 123.0, "123E0"); method
1537 expect2(new DecimalFormat("###E0", US), 1230.0, "1.23E3"); method
1547 expect2(new DecimalFormat("0.#E+00", US), 0.00012, "1.2E-04"); method
1548 expect2(new DecimalFormat("0.#E+00", US), 12000, "1.2E+04"); method
1557 expect2(new DecimalFormat("*^##.##", US), 0, "^^^^0"); method
1558 expect2(new DecimalFormat("*^##.##", US), -1.3, "^-1.3"); method
1559 expect2( method
1567 expect2(new DecimalFormat("##0.0####*_ 'g-m\/s^2'", US), 0, "0.0______ g-m\/s^2"); method
1575 expect2(new DecimalFormat(formatStr, US), -10, "xxxxxxxxxx(10.0)"); method
1576 expect2(new DecimalFormat(formatStr, US), -1000, "xxxxxxx(1,000.0)"); method
1577 expect2(new DecimalFormat(formatStr, US), -1000000, "xxx(1,000,000.0)"); method
1578 expect2(new DecimalFormat(formatStr, US), -100.37, "xxxxxxxx(100.37)"); method
1579 expect2(new DecimalFormat(formatStr, US), -10456.37, "xxxxx(10,456.37)"); method
1580 expect2(new DecimalFormat(formatStr, US), -1120456.37, "xx(1,120,456.37)"); method
1581 expect2(new DecimalFormat(formatStr, US), -112045600.37, "(112,045,600.37)"); method
1582 expect2(new DecimalFormat(formatStr, US), -1252045600.37, "(1,252,045,600.37)"); method
1584 expect2(new DecimalFormat(formatStr, US), 10, "xxxxxxxxxxxx10.0"); method
1585 expect2(new DecimalFormat(formatStr, US), 1000, "xxxxxxxxx1,000.0"); method
1586 expect2(new DecimalFormat(formatStr, US), 1000000, "xxxxx1,000,000.0"); method
1587 expect2(new DecimalFormat(formatStr, US), 100.37, "xxxxxxxxxx100.37"); method
1588 expect2(new DecimalFormat(formatStr, US), 10456.37, "xxxxxxx10,456.37"); method
1589 expect2(new DecimalFormat(formatStr, US), 1120456.37, "xxxx1,120,456.37"); method
1590 expect2(new DecimalFormat(formatStr, US), 112045600.37, "xx112,045,600.37"); method
1591 expect2(new DecimalFormat(formatStr, US), 10252045600.37, "10,252,045,600.37"); method
1595 expect2(new DecimalFormat(formatStr2, US), -10, "(10.0xxxxxxxxxx)"); method
1596 expect2(new DecimalFormat(formatStr2, US), -1000, "(1,000.0xxxxxxx)"); method
1597 expect2(new DecimalFormat(formatStr2, US), -1000000, "(1,000,000.0xxx)"); method
1598 expect2(new DecimalFormat(formatStr2, US), -100.37, "(100.37xxxxxxxx)"); method
1599 expect2(new DecimalFormat(formatStr2, US), -10456.37, "(10,456.37xxxxx)"); method
1600 expect2(new DecimalFormat(formatStr2, US), -1120456.37, "(1,120,456.37xx)"); method
1601 expect2(new DecimalFormat(formatStr2, US), -112045600.37, "(112,045,600.37)"); method
1602 expect2(new DecimalFormat(formatStr2, US), -1252045600.37, "(1,252,045,600.37)"); method
1604 expect2(new DecimalFormat(formatStr2, US), 10, "10.0xxxxxxxxxxxx"); method
1605 expect2(new DecimalFormat(formatStr2, US), 1000, "1,000.0xxxxxxxxx"); method
1606 expect2(new DecimalFormat(formatStr2, US), 1000000, "1,000,000.0xxxxx"); method
1607 expect2(new DecimalFormat(formatStr2, US), 100.37, "100.37xxxxxxxxxx"); method
1608 expect2(new DecimalFormat(formatStr2, US), 10456.37, "10,456.37xxxxxxx"); method
1609 expect2(new DecimalFormat(formatStr2, US), 1120456.37, "1,120,456.37xxxx"); method
1610 expect2(new DecimalFormat(formatStr2, US), 112045600.37, "112,045,600.37xx"); method
1611 expect2(new DecimalFormat(formatStr2, US), 10252045600.37, "10,252,045,600.37"); method
1812 expect2(df, 1.0, "*&' \\u20B9 '&* 1.00"); method
1813 expect2(df, -2.0, "-*&' \\u20B9 '&* 2.00"); method
1815 expect2(df, 2.0, "2.00 *&' \\u20B9 '&*"); method
1816 expect2(df, -1.0, "-1.00 *&' \\u20B9 '&*"); method
1848 expect2(df, 3.14159, "3.14159E+00"); method
1958 expect2(fmt,item.value,item.expectedResult); method
2673 public void expect2(NumberFormat fmt, Number n, String exp) { method in class:NumberFormatTest
2686 public void expect2(NumberFormat fmt, double n, String exp) { method in class:NumberFormatTest
2687 expect2(fmt, new Double(n), exp); method
2695 public void expect2(NumberFormat fmt, long n, String exp) { method in class:NumberFormatTest
2696 expect2(fmt, new Long(n), exp); method
3136 expect2(df, Long.MAX_VALUE, BigInteger.valueOf(Long.MAX_VALUE).negate().toString()); method
3137 expect2(df, Long.MIN_VALUE, BigInteger.valueOf(Long.MIN_VALUE).negate().toString()); method
3138 expect2(df, Long.MAX_VALUE \/ 2, BigInteger.valueOf(Long.MAX_VALUE \/ 2).negate().toString()); method
3139 expect2(df, Long.MIN_VALUE \/ 2, BigInteger.valueOf(Long.MIN_VALUE \/ 2).negate().toString()); method
3141 expect2(df, BigDecimal.valueOf(Long.MAX_VALUE), BigDecimal.valueOf(Long.MAX_VALUE).negate().toString()); method
3142 expect2(df, BigDecimal.valueOf(Long.MIN_VALUE), BigDecimal.valueOf(Long.MIN_VALUE).negate().toString()); method
3144 expect2(df, java.math.BigDecimal.valueOf(Long.MAX_VALUE), java.math.BigDecimal.valueOf(Long.MAX_VALUE).negate().toString()); method
3145 expect2(df, java.math.BigDecimal.valueOf(Long.MIN_VALUE), java.math.BigDecimal.valueOf(Long.MIN_VALUE).negate().toString()); method
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberFormatTest.java 1407 expect2(fmt1, n, "1.234E3"); method
1408 expect2(fmt2, n, "1.234E+3"); method
1457 expect2(new DecimalFormat("#E0", US), 12345.0, "1.2345E4"); method
1470 expect2(new DecimalFormat("##0.####E0", US), 12345, "12.345E3"); method
1479 expect2(new DecimalFormat("##0.####E0", US), 780.e-9, "780E-9"); method
1481 expect2(new DecimalFormat(".###E0", US), 0, ".0E0"); method
1503 expect2(new DecimalFormat("#E0", US), 45678000, "4.5678E7"); method
1504 expect2(new DecimalFormat("##E0", US), 45678000, "45.678E6"); method
1505 expect2(new DecimalFormat("####E0", US), 45678000, "4567.8E4"); method
1525 expect2(new DecimalFormat("###E0", US), 0.0000123, "12.3E-6"); method
1526 expect2(new DecimalFormat("###E0", US), 0.000123, "123E-6"); method
1527 expect2(new DecimalFormat("###E0", US), 0.00123, "1.23E-3"); method
1528 expect2(new DecimalFormat("###E0", US), 0.0123, "12.3E-3"); method
1529 expect2(new DecimalFormat("###E0", US), 0.123, "123E-3"); method
1530 expect2(new DecimalFormat("###E0", US), 1.23, "1.23E0"); method
1531 expect2(new DecimalFormat("###E0", US), 12.3, "12.3E0"); method
1532 expect2(new DecimalFormat("###E0", US), 123.0, "123E0"); method
1533 expect2(new DecimalFormat("###E0", US), 1230.0, "1.23E3"); method
1543 expect2(new DecimalFormat("0.#E+00", US), 0.00012, "1.2E-04"); method
1544 expect2(new DecimalFormat("0.#E+00", US), 12000, "1.2E+04"); method
1553 expect2(new DecimalFormat("*^##.##", US), 0, "^^^^0"); method
1554 expect2(new DecimalFormat("*^##.##", US), -1.3, "^-1.3"); method
1555 expect2( method
1563 expect2(new DecimalFormat("##0.0####*_ 'g-m\/s^2'", US), 0, "0.0______ g-m\/s^2"); method
1571 expect2(new DecimalFormat(formatStr, US), -10, "xxxxxxxxxx(10.0)"); method
1572 expect2(new DecimalFormat(formatStr, US), -1000, "xxxxxxx(1,000.0)"); method
1573 expect2(new DecimalFormat(formatStr, US), -1000000, "xxx(1,000,000.0)"); method
1574 expect2(new DecimalFormat(formatStr, US), -100.37, "xxxxxxxx(100.37)"); method
1575 expect2(new DecimalFormat(formatStr, US), -10456.37, "xxxxx(10,456.37)"); method
1576 expect2(new DecimalFormat(formatStr, US), -1120456.37, "xx(1,120,456.37)"); method
1577 expect2(new DecimalFormat(formatStr, US), -112045600.37, "(112,045,600.37)"); method
1578 expect2(new DecimalFormat(formatStr, US), -1252045600.37, "(1,252,045,600.37)"); method
1580 expect2(new DecimalFormat(formatStr, US), 10, "xxxxxxxxxxxx10.0"); method
1581 expect2(new DecimalFormat(formatStr, US), 1000, "xxxxxxxxx1,000.0"); method
1582 expect2(new DecimalFormat(formatStr, US), 1000000, "xxxxx1,000,000.0"); method
1583 expect2(new DecimalFormat(formatStr, US), 100.37, "xxxxxxxxxx100.37"); method
1584 expect2(new DecimalFormat(formatStr, US), 10456.37, "xxxxxxx10,456.37"); method
1585 expect2(new DecimalFormat(formatStr, US), 1120456.37, "xxxx1,120,456.37"); method
1586 expect2(new DecimalFormat(formatStr, US), 112045600.37, "xx112,045,600.37"); method
1587 expect2(new DecimalFormat(formatStr, US), 10252045600.37, "10,252,045,600.37"); method
1591 expect2(new DecimalFormat(formatStr2, US), -10, "(10.0xxxxxxxxxx)"); method
1592 expect2(new DecimalFormat(formatStr2, US), -1000, "(1,000.0xxxxxxx)"); method
1593 expect2(new DecimalFormat(formatStr2, US), -1000000, "(1,000,000.0xxx)"); method
1594 expect2(new DecimalFormat(formatStr2, US), -100.37, "(100.37xxxxxxxx)"); method
1595 expect2(new DecimalFormat(formatStr2, US), -10456.37, "(10,456.37xxxxx)"); method
1596 expect2(new DecimalFormat(formatStr2, US), -1120456.37, "(1,120,456.37xx)"); method
1597 expect2(new DecimalFormat(formatStr2, US), -112045600.37, "(112,045,600.37)"); method
1598 expect2(new DecimalFormat(formatStr2, US), -1252045600.37, "(1,252,045,600.37)"); method
1600 expect2(new DecimalFormat(formatStr2, US), 10, "10.0xxxxxxxxxxxx"); method
1601 expect2(new DecimalFormat(formatStr2, US), 1000, "1,000.0xxxxxxxxx"); method
1602 expect2(new DecimalFormat(formatStr2, US), 1000000, "1,000,000.0xxxxx"); method
1603 expect2(new DecimalFormat(formatStr2, US), 100.37, "100.37xxxxxxxxxx"); method
1604 expect2(new DecimalFormat(formatStr2, US), 10456.37, "10,456.37xxxxxxx"); method
1605 expect2(new DecimalFormat(formatStr2, US), 1120456.37, "1,120,456.37xxxx"); method
1606 expect2(new DecimalFormat(formatStr2, US), 112045600.37, "112,045,600.37xx"); method
1607 expect2(new DecimalFormat(formatStr2, US), 10252045600.37, "10,252,045,600.37"); method
1808 expect2(df, 1.0, "*&' \\u20B9 '&* 1.00"); method
1809 expect2(df, -2.0, "-*&' \\u20B9 '&* 2.00"); method
1811 expect2(df, 2.0, "2.00 *&' \\u20B9 '&*"); method
1812 expect2(df, -1.0, "-1.00 *&' \\u20B9 '&*"); method
1844 expect2(df, 3.14159, "3.14159E+00"); method
1954 expect2(fmt,item.value,item.expectedResult); method
2669 public void expect2(NumberFormat fmt, Number n, String exp) { method in class:NumberFormatTest
2682 public void expect2(NumberFormat fmt, double n, String exp) { method in class:NumberFormatTest
2683 expect2(fmt, new Double(n), exp); method
2691 public void expect2(NumberFormat fmt, long n, String exp) { method in class:NumberFormatTest
2692 expect2(fmt, new Long(n), exp); method
3132 expect2(df, Long.MAX_VALUE, BigInteger.valueOf(Long.MAX_VALUE).negate().toString()); method
3133 expect2(df, Long.MIN_VALUE, BigInteger.valueOf(Long.MIN_VALUE).negate().toString()); method
3134 expect2(df, Long.MAX_VALUE \/ 2, BigInteger.valueOf(Long.MAX_VALUE \/ 2).negate().toString()); method
3135 expect2(df, Long.MIN_VALUE \/ 2, BigInteger.valueOf(Long.MIN_VALUE \/ 2).negate().toString()); method
3137 expect2(df, BigDecimal.valueOf(Long.MAX_VALUE), BigDecimal.valueOf(Long.MAX_VALUE).negate().toString()); method
3138 expect2(df, BigDecimal.valueOf(Long.MIN_VALUE), BigDecimal.valueOf(Long.MIN_VALUE).negate().toString()); method
3140 expect2(df, java.math.BigDecimal.valueOf(Long.MAX_VALUE), java.math.BigDecimal.valueOf(Long.MAX_VALUE).negate().toString()); method
3141 expect2(df, java.math.BigDecimal.valueOf(Long.MIN_VALUE), java.math.BigDecimal.valueOf(Long.MIN_VALUE).negate().toString()); method
    [all...]
  /external/libweave/src/commands/
cloud_command_proxy_unittest.cc 271 const char expect2[] = "{'progress': {'status':'busy'}}"; local
272 EXPECT_CALL(cloud_updater_, UpdateCommand(kCmdID, MatchJson(expect2), _))
310 const char expect2[] = "{'state': 'done'}"; local
311 EXPECT_CALL(cloud_updater_, UpdateCommand(kCmdID, MatchJson(expect2), _))
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 5940 milliseconds