/external/zlib/contrib/blast/ |
Makefile | 4 test: blast 5 blast < test.pk | cmp - test.txt
|
/dalvik/tests/021-string2/src/ |
Main.java | 24 String test = "0123456789"; local 31 Assert.assertTrue(test.equals(test)); 32 Assert.assertTrue(test.equals(test1)); 33 Assert.assertFalse(test.equals(test2)); 35 Assert.assertEquals(test.compareTo(test1), 0); 40 Assert.assertEquals(test.compareTo(sub), 0); 41 Assert.assertEquals(sub.compareTo(test), 0); 42 Assert.assertTrue(test.equals(sub)); 43 Assert.assertTrue(sub.equals(test)); [all...] |
/external/webkit/LayoutTests/fast/dom/Geolocation/resources/ |
argument-types.js | 13 function test(expression, expressionShouldThrow, expectedException) { function 36 test('navigator.geolocation.getCurrentPosition()', true); 38 test('navigator.geolocation.getCurrentPosition(undefined)', true); 39 test('navigator.geolocation.getCurrentPosition(null)', true); 40 test('navigator.geolocation.getCurrentPosition({})', true); 41 test('navigator.geolocation.getCurrentPosition(objectThrowingException)', true); 42 test('navigator.geolocation.getCurrentPosition(emptyFunction)', false); 43 test('navigator.geolocation.getCurrentPosition(Math.abs)', false); 44 test('navigator.geolocation.getCurrentPosition(true)', true); 45 test('navigator.geolocation.getCurrentPosition(42)', true) [all...] |
/external/v8/tools/visual_studio/ |
v8_cctest_arm.vcproj | 139 RelativePath="..\..\test\cctest\cctest.cc" 143 RelativePath="..\..\test\cctest\test-alloc.cc" 147 RelativePath="..\..\test\cctest\test-api.cc" 151 RelativePath="..\..\test\cctest\test-assembler-arm.cc" 155 RelativePath="..\..\test\cctest\test-ast.cc" 159 RelativePath="..\..\test\cctest\test-compiler.cc [all...] |
/dalvik/dx/tests/001-nop/ |
info.txt | 1 This is a sample no-op test, which does at least serve to verify that the 2 test harness is working.
|
/dalvik/tests/001-nop/ |
info.txt | 1 This is a sample no-op test, which does at least serve to verify that the 2 test harness is working.
|
/dalvik/tests/055-enum-performance/ |
info.txt | 1 This is a performance test of Enum.valueOf(). To see the numbers, invoke 2 this test with the "--timing" option.
|
/dalvik/tests/057-iteration-performance/ |
info.txt | 1 This is a performance test of various iterator uses. To see the numbers, 2 invoke this test with the "--timing" option.
|
/external/clearsilver/cs/ |
test14.cs.gold | 42 CORRECT boolean test, blooey doesn't exist, testif == 0 so its false 46 explicit existence test 64 not expression existence test 68 not expression test 72 not expression test 75 array exists test 81 array element exists test 87 array element exists test false
|
test_paren.cs | 1 <?cs def:test(a) ?> 4 <?cs call:test("HELLO()") ?>
|
/external/dbus/test/data/valid-service-files/ |
debug-echo.service | 3 Exec=/home/quinticent/devel/dbus-branch/dbus_1_0/test/test-service
|
debug-segfault.service | 3 Exec=/home/quinticent/devel/dbus-branch/dbus_1_0/test/test-segfault
|
/external/webkit/LayoutTests/storage/ |
change-version-expected.txt | 1 This test verifies that the JS database.changeVersion() function works as expected. 3 TEST COMPLETE
|
/external/webkit/WebCore/manual-tests/inspector/resources/ |
script-error.js | 1 var test = document.body; variable 4 function test() { function
|
/sdk/emulator/qtools/tests/gtrace/ |
Makefile | 7 all: test.elf test.bin test.dis 9 trace: test.elf test.bin 10 $(QEMU) -QEMU -kernel test.bin -trace foo 12 $(QTOOLS)/read_trace foo test.elf > t1 15 $(QTOOLS)/q2g -r $(P4ROOT)/device/out/linux-arm-release/symbols foo test.elf foo.gtrace
|
/external/icu4c/test/cintltst/ |
cmsgtst.h | 15 /* C API TEST FOR MESSAGE FORMAT */ 26 /* The function used to test the Message format API*/ 29 * Test u_formatMessage() with various test patterns 33 * Test u_formatMessage() with sample test Patterns 37 * Test format and parse sequence and roundtrip 41 * Test u_formatMessage() with choice option 45 * Test u_parseMessage() with various test patterns( [all...] |
/external/bluetooth/glib/tests/refcount/ |
objects2.c | 6 #define MY_TEST(test) (G_TYPE_CHECK_INSTANCE_CAST ((test), G_TYPE_TEST, GTest)) 7 #define MY_IS_TEST(test) (G_TYPE_CHECK_INSTANCE_TYPE ((test), G_TYPE_TEST)) 10 #define MY_TEST_GET_CLASS(test) (G_TYPE_INSTANCE_GET_CLASS ((test), G_TYPE_TEST, GTestClass)) 28 static void my_test_init (GTest * test); 71 my_test_init (GTest * test) 73 g_print ("init %p\n", test); 79 GTest *test; local 102 GTest *test; local [all...] |
/external/dbus/test/name-test/ |
run-test.sh | 5 if ! test -z "$DBUS_SESSION_BUS_PID" ; then 22 if test -z "$DBUS_TEST_NAME_IN_RUN_TEST"; then 27 echo "running test-names" 28 libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-names || die "test-client failed" 30 echo "running test-pending-call-dispatch" 31 libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-pending-call-dispatch || die "test-client failed [all...] |
/frameworks/base/test-runner/src/android/test/ |
BundlePrinter.java | 17 package android.test; 24 import junit.framework.Test; 31 * Subclass of ResultPrinter that adds test case results to a bundle. 47 public void addError(Test test, Throwable t) { 48 mResults.putString(getComboName(test), BaseTestRunner.getFilteredTrace(t)); 50 super.addError(test, t); 54 public void addFailure(Test test, AssertionFailedError t) { 55 mResults.putString(getComboName(test), BaseTestRunner.getFilteredTrace(t)) [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/ |
ITestRunListener.java | 20 * Receives event notifications during instrumentation test runs. 26 * Types of test failures. 29 /** Test failed due to unanticipated uncaught exception. */ 31 /** Test failed due to a false assertion. */ 36 * Reports the start of a test run. 38 * @param testCount total number of tests in test run 43 * Reports end of test run. 50 * Reports test run stopped before completion. 57 * Reports the start of an individual test case. 59 * @param test identifies the tes [all...] |
/external/v8/test/cctest/ |
SConscript | 37 'test-accessors.cc', 38 'test-alloc.cc', 39 'test-api.cc', 40 'test-ast.cc', 41 'test-compiler.cc', 42 'test-conversions.cc', 43 'test-debug.cc', 44 'test-decls.cc', 45 'test-flags.cc', 46 'test-func-name-inference.cc' [all...] |
/dalvik/dx/tests/029-unit-Bits/ |
info.txt | 1 Unit test for com.android.dx.util.Bits.
|
/dalvik/dx/tests/033-unit-IntList/ |
info.txt | 1 Unit test for com.android.dx.util.IntList.
|
/dalvik/libcore/luni/src/test/resources/tests/api/java/io/ |
testfile.txt | 1 This is a test message with Unicode character. ??? is China's name in Chines
|
/dalvik/tests/004-annotations/src/android/test/anno/ |
INoted.java | 1 package android.test.anno;
|