/cts/tools/vm-tests/src/dot/junit/opcodes/int_to_short/ |
Test_int_to_short.java | 30 assertEquals(1, t.run(1)); 38 assertEquals(-1, t.run(-1)); 46 assertEquals(32767, t.run(32767)); 54 assertEquals(-32768, t.run(-32768)); 62 assertEquals(32767, t.run(-32769)); 70 assertEquals(-32768, t.run(32768)); 78 assertEquals(0xfffffedc, t.run(0x10fedc)); 89 t.run(1.333f); 99 assertEquals(0, t.run(0)); 107 assertEquals(-1, t.run(Integer.MAX_VALUE)) [all...] |
/cts/tools/vm-tests/src/dot/junit/opcodes/mul_long/ |
Test_mul_long.java | 31 assertEquals(3195355577426903040l, t.run(222000000000l, 5000000000l)); 39 assertEquals(-15241578750190521l, t.run(-123456789l, 123456789l)); 47 assertEquals(15241578750190521l, t.run(-123456789l, -123456789l)); 58 t.run(500000l, 2.7d); 68 assertEquals(0, t.run(0, Long.MAX_VALUE)); 76 assertEquals(9223372036854775807L, t.run(Long.MAX_VALUE, 1)); 84 assertEquals(-9223372036854775808L, t.run(Long.MIN_VALUE, 1)); 92 assertEquals(-9223372036854775808L, t.run(Long.MAX_VALUE, 101 assertEquals(0, t.run(0, 0)); 109 assertEquals(-9223372036854775807L, t.run(Long.MAX_VALUE, -1)) [all...] |
/cts/tools/vm-tests/src/dot/junit/opcodes/mul_long_2addr/ |
Test_mul_long_2addr.java | 31 assertEquals(3195355577426903040l, t.run(222000000000l, 5000000000l)); 39 assertEquals(-15241578750190521l, t.run(-123456789l, 123456789l)); 47 assertEquals(15241578750190521l, t.run(-123456789l, -123456789l)); 58 t.run(500000l, 2.7d); 68 assertEquals(0, t.run(0, Long.MAX_VALUE)); 76 assertEquals(9223372036854775807L, t.run(Long.MAX_VALUE, 1)); 84 assertEquals(-9223372036854775808L, t.run(Long.MIN_VALUE, 1)); 92 assertEquals(-9223372036854775808L, t.run(Long.MAX_VALUE, 101 assertEquals(0, t.run(0, 0)); 109 assertEquals(-9223372036854775807L, t.run(Long.MAX_VALUE, -1)) [all...] |
/cts/tools/vm-tests/src/dot/junit/opcodes/ushr_long/ |
Test_ushr_long.java | 30 assertEquals(5000000000l, t.run(40000000000l, 3)); 38 assertEquals(20000000000l, t.run(40000000000l, 1)); 46 assertEquals(0x7FFFFFFFFC521975l, t.run(-123456789l, 1)); 54 assertEquals(0l, t.run(1l, -1)); 62 assertEquals(123456789l, t.run(123456789l, 64)); 70 assertEquals(0l, t.run(123456789l, 63)); 80 t.run(3.14d, 1); 90 assertEquals(0l, t.run(0l, -1)); 98 assertEquals(0x3FFFFFFFFFFFFFFFl, t.run(Long.MAX_VALUE, 1)); 106 assertEquals(0x4000000000000000l, t.run(Long.MIN_VALUE, 1)) [all...] |
/cts/tools/vm-tests/src/dot/junit/opcodes/ushr_long_2addr/ |
Test_ushr_long_2addr.java | 30 assertEquals(5000000000l, t.run(40000000000l, 3)); 38 assertEquals(20000000000l, t.run(40000000000l, 1)); 46 assertEquals(0x7FFFFFFFFC521975l, t.run(-123456789l, 1)); 54 assertEquals(0l, t.run(1l, -1)); 62 assertEquals(123456789l, t.run(123456789l, 64)); 70 assertEquals(0l, t.run(123456789l, 63)); 80 t.run(3.14d, 1); 91 assertEquals(0l, t.run(0l, -1)); 99 assertEquals(0x3FFFFFFFFFFFFFFFl, t.run(Long.MAX_VALUE, 1)); 107 assertEquals(0x4000000000000000l, t.run(Long.MIN_VALUE, 1)) [all...] |
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/ |
ExchangerTest.java | 18 junit.textui.TestRunner.run (suite()); 30 public void run(){ 42 public void run(){ 69 public void run(){ 83 public void run(){ 112 public void run(){ 136 public void run(){ 161 public void run(){ 185 public void run(){ 196 public void run(){ [all...] |
/external/icu4c/layoutex/layout/ |
playout.h | 44 * The opaque type for a visual run in a line. 53 * are specified for each font run. The limit offset is the offset of the character immediately 54 * after the font run. 303 * which returns the last X position of the last visual run 317 * visual run in the line. 320 * @param runIndex is the index of the run, in visual order. 323 * visual run. This object is owned by the <code>pl_line</code> object which 336 * represents the font of the visual run. This will always 339 * @param run the <code>pl_visualRun</code> object. 342 * font of the visual run [all...] |
/dalvik/dx/src/junit/framework/ |
TestCase.java | 6 * A test case defines the fixture to run multiple tests. To define a test case<br> 35 * Once the methods are defined you can run them. The framework supports 36 * both a static type safe and more dynamic way to run a test. 45 * test.run(); 50 * to be run. 53 * test.run(); 55 * The tests to be run can be collected into a TestSuite. JUnit provides 56 * different <i>test runners</i> which can run a test suite and collect the results. 58 * point to get a test to run or it will extract the suite automatically. 90 * Counts the number of test cases executed by run(TestResult result) 109 public TestResult run() { method in class:TestCase 117 public void run(TestResult result) { method in class:TestCase [all...] |
/dalvik/libcore/junit/src/main/java/junit/framework/ |
TestCase.java | 6 * A test case defines the fixture to run multiple tests. To define a test case<br> 35 * Once the methods are defined you can run them. The framework supports 36 * both a static type safe and more dynamic way to run a test. 45 * test.run(); 50 * to be run. 53 * test.run(); 55 * The tests to be run can be collected into a TestSuite. JUnit provides 56 * different <i>test runners</i> which can run a test suite and collect the results. 58 * point to get a test to run or it will extract the suite automatically. 90 * Counts the number of test cases executed by run(TestResult result) 109 public TestResult run() { method in class:TestCase 117 public void run(TestResult result) { method in class:TestCase [all...] |
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/ |
PrivilegedActionTest.java | 22 public String run() { method in class:PrivilegedActionTest.MyPrivilegedAction 31 public String run() { method in class:PrivilegedActionTest.MyPrivilegedAction2 40 method="run" 46 assertTrue("run method was not called", action.called);
|
/dalvik/tests/025-access-controller/src/ |
Privvy.java | 15 public Integer run() { method in class:Privvy
|
/development/ide/intellij/ |
build.xml | 3 description="Run make and then regenerate IntelliJ configuration.">
|
make+intelligen.sh | 4 echo "Error: Please run from the root of the tree."
|
/external/icu4c/samples/layout/ |
paragraph.cpp | 48 for (le_int32 run = 0; run < runCount; run += 1) { 49 if (runArray->getLimit(run) > offset) { 50 return run; 64 for (le_int32 run = startRun; run <= endRun; run += 1) { 65 const LEFontInstance *runFont = fontRuns->getFont(run); 66 le_int32 runLimit = fontRuns->getLimit(run) - start 228 le_int32 run; local [all...] |
/external/jpeg/ |
makvms.opt | 1 ! A pointer to the VAX/VMS C Run-Time Shareable Library.
|
/external/jsr305/ |
Readme.rtf | 7 \f0\fs24 \cf0 After installing maven, do the update and at the main directory, run either\
|
/external/junit/src/junit/extensions/ |
ActiveTestSuite.java | 31 public void run(TestResult result) { method in class:ActiveTestSuite 33 super.run(result); 39 public void run() { 43 test.run(result);
|
/external/junit/src/junit/framework/ |
TestCase.java | 8 * A test case defines the fixture to run multiple tests. To define a test case<br> 37 * Once the methods are defined you can run them. The framework supports 38 * both a static type safe and more dynamic way to run a test. 47 * test.run(); 52 * to be run. 55 * test.run(); 57 * The tests to be run can be collected into a TestSuite. JUnit provides 58 * different <i>test runners</i> which can run a test suite and collect the results. 60 * point to get a test to run or it will extract the suite automatically. 92 * Counts the number of test cases executed by run(TestResult result) 111 public TestResult run() { method in class:TestCase 119 public void run(TestResult result) { method in class:TestCase [all...] |
/external/libpng/contrib/pngminim/decoder/ |
README | 3 To build a minimal read-only decoder with embedded libpng and zlib, run
|
/external/libpng/contrib/pngminim/encoder/ |
README | 3 To build a minimal write-only decoder with embedded libpng and zlib, run
|
/external/libpng/projects/ |
netware.txt | 5 Put the zip file in this directory (projects) and then run
|
wince.txt | 5 Put the zip file in this directory (projects) and then run
|
/external/srec/config/en.us/ |
adb_pull_system_usr_srec_change_sample_rate2.sh | 0 # Run this from Ubuntu to copy files from device
|
adb_pull_system_usr_srec_set_get_param.sh | 0 # Run this from Ubuntu to copy files from device
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
GOOGLE_README.txt | 7 - run ant
|