/dalvik/libcore/support/src/test/java/tests/resources/ |
Modified_Manifest_EntryAttributes.jar | |
Modified_Manifest_MainAttributes.jar | |
Modified_SF_EntryAttributes.jar | |
/external/clearsilver/util/test/ |
test.hdf | 1 #This is a test 4 Test.Wow = Foo 5 Test.Foo : Test.Wow 7 Test.Embedded {
|
/external/e2fsprogs/lib/ss/ |
test_script_expected | 3 test_icount: test 6 test_icount: test foo bar quux 9 test_icount: test bar quux 16 test_icount: test quux 20 test_icount: test foo bar
|
/external/icu4c/test/cintltst/ |
cbiapts.h | 14 /* C API TEST FOR BREAKITERATOR */ 26 * This is an API test. It doesn't test very many cases, and doesn't 27 * try to test the full functionality. It just calls each function in the class and 30 /* The function used to test the BreakIterator API*/
|
/external/junit/src/junit/extensions/ |
RepeatedTest.java | 3 import junit.framework.Test; 7 * A Decorator that runs a test repeatedly. 13 public RepeatedTest(Test test, int repeat) { 14 super(test);
|
/external/webkit/WebCore/manual-tests/inspector/ |
returnEvent-crash.html | 8 function test() { 15 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=19038">Bug 19038: Crash in JavaScriptDebugServer::returnEvent when inspecting an attached Inspector</a>.</p> 16 <p>To test, open and attach the Inspector's debugger, then click the button below. If you don't crash, you have passed the test.</p> 17 <button onclick="test()">click me</button>
|
debugger-pause-on-for-in-statements.html | 2 function test() 7 var object = { test: 1 }; 10 test(); 13 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=22004">Bug 22004: Can't set a breakpoint on the statement after a single line "for"</a>. 16 in the call stack, you should see the execution line on the call to test(). 18 Also set a breakpoint on the call to test(), and reload. It should break before the test() function is called.
|
/ndk/samples/hello-jni/tests/src/com/example/HelloJni/ |
HelloJniTest.java | 3 import android.test.ActivityInstrumentationTestCase; 6 * This is a simple framework for a test of an Application. See 7 * {@link android.test.ApplicationTestCase ApplicationTestCase} for more information on 10 * To run this test, you can type: 13 * com.example.HelloJni.tests/android.test.InstrumentationTestRunner
|
/ndk/samples/two-libs/tests/src/com/example/TwoLib/ |
TwoLibTest.java | 3 import android.test.ActivityInstrumentationTestCase; 6 * This is a simple framework for a test of an Application. See 7 * {@link android.test.ApplicationTestCase ApplicationTestCase} for more information on 10 * To run this test, you can type: 13 * com.example.TwoLib.tests/android.test.InstrumentationTestRunner
|
/dalvik/dx/src/junit/framework/ |
TestSuite.java | 10 * It runs a collection of test cases. Here is an example using 11 * the dynamic test definition. 24 * starting with "test" that take no arguments. 26 * @see Test 28 public class TestSuite implements Test { 30 private Vector<Test> fTests= new Vector<Test>(10); 50 * starting with "test" as test cases to the suite. 70 while (Test.class.isAssignableFrom(superClass)) 126 Object test; local 162 Test test= (Test)e.nextElement(); local 200 Test test= (Test)e.nextElement(); local [all...] |
/dalvik/libcore/dom/src/test/java/org/w3c/domts/ |
JUnitTestSuiteAdapter.java | 23 private DOMTestSuite test; field in class:JUnitTestSuiteAdapter 25 public JUnitTestSuiteAdapter(DOMTestSuite test) { 26 super(test.getTargetURI()); 27 this.test = test; 28 test.build(this); 32 DOMTestDocumentBuilderFactory factory = test.getFactory(); 48 TestCase test = new JUnitTestCaseAdapter((DOMTestCase) domtest); local 49 addTest(test); 53 TestSuite test = new JUnitTestSuiteAdapter((DOMTestSuite) domtest) local [all...] |
DOMTestInnerClass.java | 27 private final DOMTestCase test; field in class:DOMTestInnerClass 29 public DOMTestInnerClass(DOMTestCase test) { 30 this.test = test; 34 test.wait(millisecond); 38 test.assertTrue(assertID, actual); 42 test.assertFalse(assertID, actual); 46 test.assertNull(assertID, actual); 50 test.assertNotNull(assertID, actual); 54 test.assertSame(assertID, expected, actual) [all...] |
/external/dbus/test/ |
Makefile.am | 1 SUBDIRS=name-test 2 DIST_SUBDIRS=name-test 9 TEST_BINARIES=test-service test-names test-shell-service shell-test spawn-test test-segfault test-exit test-sleep-foreve [all...] |
/external/v8/test/mjsunit/ |
string-lastindexof.js | 28 var s = "test test test"; 35 assertEquals(10, s.lastIndexOf("test", Infinity), "tinf"); 36 assertEquals(10, s.lastIndexOf("test", MAX_DOUBLE), "tmaxdouble"); 37 assertEquals(10, s.lastIndexOf("test", MAX_SMI), "tmaxsmi"); 38 assertEquals(10, s.lastIndexOf("test", s.length * 2), "t2length"); 39 assertEquals(10, s.lastIndexOf("test", 15), "t15"); 40 assertEquals(10, s.lastIndexOf("test", 14), "t14"); 41 assertEquals(10, s.lastIndexOf("test", 10), "t10") [all...] |
regexp.js | 37 // Test containing null char in regexp. 43 // Test strings containing all line separators 90 assertTrue(/\ca/.test( "\x01" )); 91 assertFalse(/\ca/.test( "\\ca" )); 94 //assertTrue(/\c[a/]/.test( "\x1ba/]" )); 97 // Test \c in character class 99 assertTrue(re.test("\r")); 100 assertFalse(re.test("M")); 101 assertFalse(re.test("c")); 102 assertFalse(re.test("\\")); [all...] |
/dalvik/libcore/junit/src/main/java/junit/framework/ |
TestSuite.java | 12 * It runs a collection of test cases. Here is an example using 13 * the dynamic test definition. 26 * starting with "test" that take no arguments. 28 * @see Test 30 public class TestSuite implements Test { 52 * starting with "test" as test cases to the suite. 72 while (Test.class.isAssignableFrom(superClass)) { 91 * Adds a test to the suite. 93 public void addTest(Test test) 128 Object test; local 164 Test test= (Test)e.nextElement(); local 202 Test test= (Test)e.nextElement(); local [all...] |
/external/bluetooth/glib/tests/refcount/ |
signals.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 void (*test_signal1) (GTest * test, gint an_int); 29 void (*test_signal2) (GTest * test, gint an_int); 51 static void my_test_init (GTest * test); 54 static void signal2_handler (GTest * test, gint anint) 135 GTest *test; local 148 GTest *test; local 166 GTest *test; local [all...] |
/development/testrunner/ |
test_defs.xml | 18 This file contains standard test definitions for the Android platform 20 The following test types are supported: 21 - On device Java instrumentation tests are defined by <test> tags. 22 - native ones (C/C++) are defined by <test-native> tags. 23 - host java tests are defined by <test-host> tags. 28 <test-definitions xmlns="http://schemas.android.com/testrunner/test_defs/1.0" 33 <test name="frameworks-core" 39 <test name="frameworks-graphics" 45 <test name="frameworks-location" 51 <test name="frameworks-sax [all...] |
/external/gtest/test/ |
gtest_filter_unittest_.cc | 32 // Unit test for Google Test test filters. 34 // A user can specify which test(s) in a Google Test program to run via 38 // The program will be invoked from a Python unit test. Don't run it 46 // Test case FooTest. 48 class FooTest : public testing::Test { 59 // Test case BarTest. 61 TEST(BarTest, TestOne) [all...] |
/external/srec/doc/logs/uapi/ |
run_contacts.log | 5 android.speech.recognition.test.contacts.CLRecognizer:before EmbeddedRecognizer.getInstance() 6 android.speech.recognition.test.contacts.CLRecognizer:after EmbeddedRecognizer.getInstance(): android.speech.recognition.impl.EmbeddedRecognizerImpl android.speech.recognition.impl.EmbeddedRecognizerImpl@4001e7a8 7 android.speech.recognition.test.contacts.CLRecognizer:before EmbeddedRecognizer.configure(/system/usr/srec/config/en.us/baseline11k.par) 8 android.speech.recognition.test.contacts.CLRecognizer:after EmbeddedRecognizer.configure() 9 android.speech.recognition.test.contacts.CLRecognizer:before recognizer.createGrammar(/system/usr/srec/config/en.us/grammars/dynamic-test.g2g) 10 android.speech.recognition.test.contacts.CLRecognizer:after recognizer.createGrammar(/system/usr/srec/config/en.us/grammars/dynamic-test.g2g) 11 android.speech.recognition.test.contacts.CLRecognizer:before grammar.load() 12 android.speech.recognition.test.contacts.CLRecognizer:onLoade [all...] |
/development/samples/SpinnerTest/ |
_index.html | 2 This sample is the test application for the 8 The test application uses the 9 <a href="../../../reference/android/test/ActivityInstrumentationTestCase2.html"><code>ActivityInstrumentationTestCase2</code></a> 10 test case class, 13 class. The test runner is <a href="../../../reference/android/test/InstrumentationTestRunner.html"><code>InstrumentationTestRunner</code></a>. 16 The application shows how to set up a test application project, 18 file for a test application, and how to set up a test case class for a test fixture. Th [all...] |
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
SimpleDateFormatTest.java | 55 public void test(String pattern, Calendar cal, String expected, method in class:SimpleDateFormatTest.TestFormat 107 assertEquals("Test z for TimeZone : " + timeZoneId, expected1, 111 assertEquals("Test Z for TimeZone : " + timeZoneId, expected2, 126 // Test for method java.text.SimpleDateFormat() 147 // Test for method java.text.SimpleDateFormat(java.lang.String) 193 // Test for method java.text.SimpleDateFormat(java.lang.String, 230 // Test for method java.text.SimpleDateFormat(java.lang.String, 265 // Test for method void 269 // This test doesn't work like this. The cause lies inside of icu 271 // test fails because the pattern template contains characters that ar 485 TestFormat test = new TestFormat( local 683 TestFormat test = new TestFormat( local 767 TestFormat test = new TestFormat( local [all...] |
/development/tools/hosttestlib/src/com/android/hosttest/ |
DeviceTest.java | 21 import junit.framework.Test; 24 * Helper JUnit test that stores reference to a Android device and test data. 26 public interface DeviceTest extends Test { 29 * Sets the device under test 30 * @param device the Android device to test 35 * Retrieves the Android device under test 41 * Retrieves host file system path that contains test app files 47 * Sets host file system path that contains test app files 48 * @param path absolute file system path to test data file [all...] |