Searched refs:test (Results 201 - 225 of 2784) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/chromium/src/js/
H A DTests.js34 * test suite for the frontend. These tests are a part of the continues build
56 * Reports test failure.
72 * @param {string} opt_message User message to print if the test fails.
87 * @param {string} opt_message User message to print if the test fails.
157 * Runs all global functions starting with "test" as unit tests.
198 var test = this;
210 test.fail("Exception in overriden method '" + methodName + "': " + e);
238 var test = this;
253 test.releaseControl();
257 test
[all...]
/external/chromium/chrome/browser/sync/syncable/
H A Dmodel_type_payload_map_unittest.cc11 #include "chrome/test/values_test_util.h"
17 using test::ExpectBooleanValue;
18 using test::ExpectDictionaryValue;
19 using test::ExpectIntegerValue;
20 using test::ExpectListValue;
21 using test::ExpectStringValue;
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp1.cpp3 // We have to avoid ADL for this test.
5 template <unsigned N> class test {}; class
8 test<0> foo(foo); // expected-note {{candidate}}
12 test<1> foo(class foo);
15 test<2> foo(class ::foo); // expected-note {{candidate}} \
22 test<0> _ = (foo)(a);
29 test<1> _ = (foo)(a);
36 test<0> _0 = foo(a); // expected-error {{call to 'foo' is ambiguous}}
39 test<2> _1 = (foo)(a);
42 test<
84 int test() { function in namespace:test2
107 void test() { function in namespace:test3
[all...]
H A Dp11.cpp41 void test() { function in class:test3::Test0
48 void test() { function in class:test3::Test1
58 void test() { function in class:test4::Test0
65 void test() { function in class:test4::Test1
76 void test() { function in class:test5::Test0
83 void test() { function in class:test5::Test1
/external/v8/test/mjsunit/regress/
H A Dregress-conditional-position.js78 function test(f, expectedLineNumber) { function
85 test(test1, 58);
86 test(test2, 65);
87 test(test3, 72);
93 test(test1, 2);
94 test(test2, 3);
95 test(test3, 3);
/external/chromium/testing/gtest/test/
H A Dgtest_shuffle_test.py31 """Verifies that test shuffling works."""
41 # The environment variables for test sharding.
79 """Runs the test program and returns its output."""
88 """Runs the test program and returns a list of test lists.
96 test iteration.
111 """Returns a list of test cases in the given full test names.
114 tests: a list of full test names
117 A list of test case
[all...]
/external/gtest/test/
H A Dgtest_shuffle_test.py31 """Verifies that test shuffling works."""
41 # The environment variables for test sharding.
79 """Runs the test program and returns its output."""
88 """Runs the test program and returns a list of test lists.
96 test iteration.
111 """Returns a list of test cases in the given full test names.
114 tests: a list of full test names
117 A list of test case
[all...]
/external/protobuf/gtest/test/
H A Dgtest_shuffle_test.py31 """Verifies that test shuffling works."""
41 # The environment variables for test sharding.
79 """Runs the test program and returns its output."""
94 """Runs the test program and returns a list of test lists.
102 test iteration.
117 """Returns a list of test cases in the given full test names.
120 tests: a list of full test names
123 A list of test case
[all...]
/external/chromium-trace/trace-viewer/src/
H A Dunittest.css5 unittest-test-runner {
8 test-case {
13 unittest-test-runner > title {
21 test-case > title {
26 test-case-error,
27 test-case-output {
32 test-case-stack {
/external/junit/src/junit/framework/
H A DTestResult.java11 * a test case. It is an instance of the Collecting Parameter pattern.
12 * The test framework distinguishes between <i>failures</i> and <i>errors</i>.
40 public synchronized void addError(Test test, Throwable t) { argument
41 fErrors.add(new TestFailure(test, t));
43 each.addError(test, t);
49 public synchronized void addFailure(Test test, AssertionFailedError t) { argument
50 fFailures.add(new TestFailure(test, t));
52 each.addFailure(test, t);
75 * Informs the result that a test was completed.
77 public void endTest(Test test) { argument
111 run(final TestCase test) argument
131 runProtected(final Test test, Protectable p) argument
154 startTest(Test test) argument
[all...]
/external/openssl/crypto/hmac/
H A Dhmactest.c89 } test[4]={ variable in typeref:struct:test_st
92 "More text test vectors to stuff up EBCDIC machines :-)",
133 printf("test skipped: MD5 disabled\n");
137 ebcdic2ascii(test[0].data, test[0].data, test[0].data_len);
138 ebcdic2ascii(test[1].data, test[1].data, test[1].data_len);
139 ebcdic2ascii(test[
[all...]
/external/v8/test/mjsunit/
H A Dcyrillic.js76 assertTrue(Range(first, last).test(first), 1);
77 assertTrue(Range(first, last).test(middle), 2);
78 assertTrue(Range(first, last).test(last), 3);
80 assertFalse(Range(first, last).test(first_other_case), 4);
81 assertFalse(Range(first, last).test(middle_other_case), 5);
82 assertFalse(Range(first, last).test(last_other_case), 6);
84 assertTrue(Range(first, last, "i").test(first), 7);
85 assertTrue(Range(first, last, "i").test(middle), 8);
86 assertTrue(Range(first, last, "i").test(last), 9);
88 assertTrue(Range(first, last, "i").test(first_other_cas
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
H A Dtest.js23 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("d
73 function test() function
[all...]
/external/clang/test/CXX/conv/conv.mem/
H A Dp4.cpp12 void test() { function in namespace:test0
21 void test() { function in namespace:test1
32 void test() { function in namespace:test2
41 void test() { function in namespace:test3
51 void test() { function in namespace:test4
61 void test() { function in namespace:test5
/external/clang/test/SemaCXX/
H A Dlinkage.cpp1 // This is an IR generation test because the calculation of visibility
16 void test(A *a) { function in namespace:test0
33 void test(A *a) { function in namespace:test1
51 void test(A *a) { function in namespace:test2
60 void test(A a) {} function in namespace:test3
61 void force() { test(A()); }
90 int test(X& x) { function
H A Daddress-of.cpp24 void test() { function
40 void test();
43 void PR11066::test() { function in class:PR11066
/external/embunit/src/
H A DTestSuite.c46 Test* test; local
49 test = self->tests[i];
50 Test_run(test, result);
59 Test* test; local
62 test = self->tests[i];
63 count += Test_countTestCases(test);
/external/webkit/Tools/RebaselineQueueServer/model/
H A Dqueueentry.py33 test = db.StringProperty() variable in class:QueueEntry
37 def add(builder_name, test):
40 entry.test = test
45 def remove(builder_name, test):
47 query = query.filter('builder =', builder_name).filter('test =', test)
/external/embunit/inc/
H A DTestResult.h62 void TestResult_startTest(TestResult* self,Test* test);
63 void TestResult_endTest(TestResult* self,Test* test);
64 void TestResult_addFailure(TestResult* self,Test* test,const char* msg,int line,const char* file);
/external/mksh/src/
H A Dcheck.pl22 # Example test:
23 # name: a-test
25 # a test to show how tests are done
37 # This runs the test-program (eg, mksh) with the arguments -x and -f,
43 # Format of test files:
45 # - a test file contains a series of tests
46 # - a test is a series of tag:value pairs ended with a "---" line
48 # - test tags are:
51 # name r The name of the test; should be unique
52 # description m What test doe
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DMockEnum.java41 str = "test";
50 MockEnum test = (MockEnum) arg0;
51 if (str.equals(test.str) && i == test.i && samEnum == test.samEnum) {
/external/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_content/
H A Dcontentscript.js9 if (regex.test(document.body.innerText)) {
/external/chromium/testing/gtest/xcode/Samples/FrameworkSample/
H A Druntests.sh45 for test in ${test_executables[*]}; do
46 "$test"
52 failed_list="$failed_list $test"
/external/clang/test/Analysis/diagnostics/
H A Dderef-track-symbolic-region.cpp9 void test(S *p) { function
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
H A Dp3.cpp16 void test() { function in class:test0::Test

Completed in 765 milliseconds

1234567891011>>