HomeSort by relevance Sort by last modified time
    Searched full:test (Results 251 - 275 of 12179) sorted by null

<<11121314151617181920>>

  /dalvik/tests/043-privates/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /dalvik/tests/044-proxy/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /dalvik/tests/045-reflect-array/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /dalvik/tests/046-reflect/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /dalvik/tests/047-returns/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /dalvik/tests/048-server-socket/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /dalvik/tests/049-show-object/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /dalvik/tests/050-sync-test/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /dalvik/tests/051-thread/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /dalvik/tests/052-verifier-fun/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /dalvik/tests/053-wait-some/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /dalvik/tests/054-uncaught/
info.txt 1 This is a miscellaneous test that was imported into the new-at-the-time
2 runtime test framework. The test is intended to exercise basic features,
  /external/icu4c/test/intltest/
ustrtest.h 24 * Test some basic methods (insert, remove, replace, ...)
28 * Test the methods for comparison
32 * Test the methods for extracting
36 * More extensively test methods for removing and replacing
40 * Test language specific case conversions
44 * Test methods for padding, trimmimg and truncating
48 * Test methods startsWith and endsWith
52 * Test method findAndReplace
56 * Test method reverse
60 * Test a few miscellaneous methods (isBogus, hashCode,...
    [all...]
  /external/junit/src/junit/runner/
SimpleTestCollector.java 5 * a class to be a test class when it contains the
6 * pattern "Test" in its name
18 classFileName.indexOf("Test") > 0;
  /external/v8/test/mjsunit/
regexp-multiline-stack-trace.js 28 // The flags below are to test the trace-calls functionality and the
37 assertTrue(/^bar/.test("bar"));
38 assertTrue(/^bar/.test("bar\nfoo"));
39 assertFalse(/^bar/.test("foo\nbar"));
40 assertTrue(/^bar/m.test("bar"));
41 assertTrue(/^bar/m.test("bar\nfoo"));
42 assertTrue(/^bar/m.test("foo\nbar"));
44 assertTrue(/bar$/.test("bar"));
45 assertFalse(/bar$/.test("bar\nfoo"));
46 assertTrue(/bar$/.test("foo\nbar"))
    [all...]
regexp-multiline.js 33 assertTrue(/^bar/.test("bar"));
34 assertTrue(/^bar/.test("bar\nfoo"));
35 assertFalse(/^bar/.test("foo\nbar"));
36 assertTrue(/^bar/m.test("bar"));
37 assertTrue(/^bar/m.test("bar\nfoo"));
38 assertTrue(/^bar/m.test("foo\nbar"));
40 assertTrue(/bar$/.test("bar"));
41 assertFalse(/bar$/.test("bar\nfoo"));
42 assertTrue(/bar$/.test("foo\nbar"));
43 assertTrue(/bar$/m.test("bar"))
    [all...]
  /external/junit/src/junit/swingui/
TestSuitePanel.java 20 import junit.framework.Test;
24 * A Panel showing a test suite as a tree.
62 Test t= (Test)value;
99 public void addError(final Test test, final Throwable t) {
100 fModel.addError(test);
101 fireTestChanged(test, true);
104 public void addFailure(final Test test, final AssertionFailedError t)
    [all...]
TestTreeModel.java 13 import junit.framework.Test;
17 * A tree model for a Test.
20 private Test fRoot;
27 * Constructs a tree model with the given test as its root.
29 public TestTreeModel(Test root) {
48 * Finds the path to a test. Returns the index of the test in its
49 * parent test suite.
51 public int findTest(Test target, Test node, Vector path)
    [all...]
  /external/srec/tools/grxmlcompile/
netw_arc.h 172 int Compare (NUANArc *test)
174 if (fromId > test->fromId)
176 else if (fromId < test->fromId)
178 else if (toId > test->toId)
180 else if (toId < test->toId)
182 else if (inputLabel > test->inputLabel)
184 else if (inputLabel < test->inputLabel)
186 else if (outputLabel > test->outputLabel)
188 else if (outputLabel < test->outputLabel)
194 int CompareSymbol (NUANArc *test)
    [all...]
  /frameworks/base/test-runner/src/android/test/
TestCaseUtil.java 17 package android.test;
21 import junit.framework.Test;
44 public static List<String> getTestCaseNames(Test test, boolean flatten) {
45 List<Test> tests = (List<Test>) getTests(test, flatten);
47 for (Test aTest : tests) {
53 public static List<? extends Test> getTests(Test test, boolean flatten)
146 Test test = (Test) enumeration.nextElement(); local
158 Test test = invokeSuiteMethodIfPossible(testClass, local
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/
test.js 23 Filename: test.js
33 var TITLE = 'RegExp: test';
35 writeHeaderToLog('Executing script: test.js');
42 "/[0-9]{3}/.test('23 2 34 678 9 09')",
43 true, /[0-9]{3}/.test('23 2 34 678 9 09'));
46 "/[0-9]{3}/.test('23 2 34 78 9 09')",
47 false, /[0-9]{3}/.test('23 2 34 78 9 09'));
50 "/\w+ \w+ \w+/.test('do a test')",
51 true, /\w+ \w+ \w+/.test("do a test"))
73 function test() function
    [all...]
  /dalvik/libcore/support/src/test/java/tests/resources/
Inserted_Entry_Manifest.jar 
Inserted_Entry_Manifest_with_DigestCode.jar 
Integrate.jar 
Modified_Class.jar 

Completed in 79 milliseconds

<<11121314151617181920>>