/external/webkit/LayoutTests/http/tests/appcache/ |
resource-redirect-expected.txt | 0 Test that a redirect makes resource caching fail.
|
/external/webkit/LayoutTests/storage/ |
hash-change-with-xhr-expected.txt | 3 Test Complete, SUCCESS
|
transaction-callback-exception-crash-expected.txt | 2 If WebKit doesn't crash, this test has passed
|
/external/webkit/WebCore/manual-tests/resources/multiFileResources/ |
testFile1.html | 2 parent.log('test file 1 submitted');
|
testFile2.html | 2 parent.log('test file 2 submitted');
|
/external/webkit/WebCore/manual-tests/ |
target-test.html | 1 <a href="targeted.html" target="test">Click this link.</a>
|
caret-image.html | 2 Test to see if caret works correctly to the right of an image. 3 If the test is successful, the caret will look thin as usual. 4 If the test fails, the caret will be a big black box the size of the image. 7 <div id="test" contenteditable="true">free<img src="resources/webkit-background.png">lunch</div> 9 <script>window.getSelection().setPosition(document.getElementById("test"), 2);</script>
|
/external/webkit/WebKit/qt/tests/hybridPixmap/ |
resources.qrc | 3 <file>test.html</file>
|
/frameworks/base/core/java/android/test/ |
package.html | 3 A framework for writing Android test cases and suites.
|
/frameworks/base/test-runner/src/android/test/suitebuilder/annotation/ |
package.html | 3 Utility classes supporting the test runner classes.
|
/frameworks/base/test-runner/src/android/test/suitebuilder/ |
package.html | 3 Utility classes supporting the test runner classes.
|
/frameworks/base/test-runner/src/junit/runner/ |
package.html | 3 Utility classes supporting the junit test framework.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/templates/ |
test_instrumentation.template | 1 <instrumentation android:targetPackage="TEST_TARGET_PCKG" android:name="android.test.InstrumentationTestRunner" />
|
test_uses-library.template | 1 <uses-library android:name="android.test.runner" />
|
/system/core/libacc/tests/ |
test | 5 python test.py "$@"
|
/external/webkit/WebCore/manual-tests/inspector/ |
console-call-line-numbers.html | 2 console.info("Test console.info"); 3 console.log("Test console.log"); 4 console.warn("Test console.warn"); 5 console.error("Test console.error"); 6 console.time("Test console.time"); 7 console.timeEnd("Test console.time"); 8 console.count("Test console.count"); 9 console.assert(false, "Test console.assert"); 13 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=17234">Bug 17234: Inspector should link console.{log,warn,info,error} back to call site</a>.</p> 14 <p>To test, open the Inspector's Console and verify that all console messages have correct resource URLs and (…) [all...] |
/external/icu4c/test/testdata/ |
ssearch.xml | 5 <!-- Test data file for string search --> 7 <!ELEMENT stringsearch-tests (test-case+)> 9 <!ELEMENT test-case (pattern, pre?, m?, post?)> 10 <!ATTLIST test-case 28 <test-case id="test01" > 31 </test-case> 34 <test-case id="test02" > 37 </test-case> 40 <test-case id="test03" > 43 </test-case [all...] |
/sdk/templates/ |
java_tests_file.template | 3 import android.test.ActivityInstrumentationTestCase2; 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 * PACKAGE.tests/android.test.InstrumentationTestRunner
|
/external/bluetooth/glib/tests/refcount/ |
properties.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)) 38 static void my_test_init (GTest * test); 98 my_test_init (GTest * test) 101 test->id = static_id++; 107 GTest *test; local 120 GTest *test; local 141 GTest *test; local 160 GTest *test; local 209 GTest *test; local 224 GTest *test; local 247 GTest *test; local [all...] |
properties2.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)) 35 static void my_test_init (GTest * test); 96 my_test_init (GTest * test) 98 g_print ("init %p\n", test); 104 GTest *test; local 119 GTest *test; local 140 GTest *test; local 179 GTest *test; local [all...] |
/dalvik/tests/010-instance/src/ |
InstanceTest.java | 6 * Test some instanceof stuff. 22 Object test; local 24 test = x; 25 System.out.println("x instanceof X (true): " + (test instanceof X)); 26 System.out.println("x instanceof Y (false): " + (test instanceof Y)); 27 test = y; 28 System.out.println("y instanceof X (true): " + (test instanceof X)); 29 System.out.println("y instanceof Y (true): " + (test instanceof Y)); 31 test = xar; 33 + (test instanceof Object)) [all...] |
/external/sonivox/arm-wt-22k/misc/ |
MMAPI.zip | |
/cts/tools/host/src/com/android/cts/ |
TestCase.java | 24 * Correspond to junit's test case, provide functions on 25 * storing and executing a test case from CTS test harness. 29 private Collection<Test> mTests; 33 private Test mCurrentTest; 40 mTests = new ArrayList<Test>(); 58 * @return The case name of this test case. 65 * Get the full name of this test case. 67 * @return The full name of this test case. 75 * Get the priority of this test case [all...] |
/dalvik/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTestFramework.java | 24 * This interface provides services typically provided by a test framework 34 void fail(DOMTestCase test, String assertID); 36 void assertTrue(DOMTestCase test, String assertID, boolean actual); 38 void assertFalse(DOMTestCase test, String assertID, boolean actual); 40 void assertNull(DOMTestCase test, String assertID, Object actual); 42 void assertNotNull(DOMTestCase test, String assertID, Object actual); 45 DOMTestCase test, 51 DOMTestCase test, 57 DOMTestCase test, 63 DOMTestCase test, [all...] |
/external/e2fsprogs/tests/progs/test_data/ |
test.brel | 2 # This is the test script for the block relocation table. 14 # Test boundary cases for brel_put 19 # Test other boundary cases 24 # Test getting existing and non-existent entries 30 # Test the iterator functions 38 # Test delete and move
|