HomeSort by relevance Sort by last modified time
    Searched defs:Test (Results 76 - 100 of 323) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/tools/cr/cr/actions/
linux.py 28 def Test(self, target, arguments):
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
mock_writer.py 29 def Test(self):
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
p4.cpp 33 namespace Test {
34 void test() { function in namespace:Test
60 void test() { function in namespace:test1
  /external/clang/test/CodeGen/
2002-03-12-ArrayInitialization.c 15 struct Test { int X; double Y; };
17 struct Test Array[10] = { { 2, 12.0 }, { 3, 24.0 } };
  /external/clang/test/Misc/
ast-dump-color.cpp 6 int Test __attribute__((unused));
36 //CHECK: {{^}}[[Blue]]|-[[RESET]][[GREEN]]VarDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]{{.*}}ast-dump-color.cpp:6:1[[RESET]], [[Yellow]]col:5[[RESET]]> [[Yellow]]col:5[[RESET]][[CYAN]] Test[[RESET]] [[Green]]'int'[[RESET]]{{$}}
  /external/clang/test/SemaCXX/
tag-ambig.cpp 13 class Test
17 virtual bool testMethod (Test::Point& p) = 0;
  /external/clang/test/SemaTemplate/
recovery-crash.cpp 15 void Test() {
  /external/compiler-rt/test/tsan/
atomic_norace.cc 10 void Test(int test, T *p, bool main_thread) {
12 if (test == 0) {
17 } else if (test == 1) {
22 } else if (test == 2) {
27 } else if (test == 3) {
37 Test(i, &atomics[i], false);
41 fprintf(stderr, "Test %d reverse\n", i);
42 Test(i, &atomics[kTestCount + i], false);
52 fprintf(stderr, "Test %d\n", i)
    [all...]
atomic_race.cc 10 void Test(int test, T *p, bool main_thread) {
12 if (test == 0) {
17 } else if (test == 1) {
22 } else if (test == 2) {
27 } else if (test == 3) {
37 Test(i, &atomics[i], false);
41 fprintf(stderr, "Test %d reverse\n", i);
42 Test(i, &atomics[kTestCount + i], false);
52 fprintf(stderr, "Test %d\n", i)
    [all...]
unaligned_norace.cc 45 void Test(bool main) {
71 Test(false);
78 Test(true);
  /external/junit/src/org/junit/
Test.java 9 * <p>The <code>Test</code> annotation tells JUnit that the <code>public void</code> method
10 * to which it is attached can be run as a test case. To run the method,
12 * annotated method. Any exceptions thrown by the test will be reported
13 * by JUnit as a failure. If no exceptions are thrown, the test is assumed
16 * <p>A simple test looks like this:
19 * <b>&#064;Test</b>
27 * <p>The <code>Test</code> annotation supports two optional parameters.
28 * The first, <code>expected</code>, declares that a test method should throw
30 * than the one declared, the test fails. For example, the following test succeeds
    [all...]
  /external/llvm/utils/lit/lit/
LitTestCase.py 4 import lit.Test
14 def __init__(self, test, run):
16 self._test = test
26 # Run the test.
31 if result.code is lit.Test.UNRESOLVED:
  /external/regex-re2/re2/testing/
simplify_test.cc 5 // Test simplify.cc.
9 #include "util/test.h"
14 struct Test {
19 static Test tests[] = {
81 // Test that operators simplify their arguments.
141 TEST(TestSimplify, SimpleRegexps) {
  /external/regex-re2/util/
test.cc 7 #include "util/test.h"
11 struct Test {
16 static Test tests[10000];
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_array_in_pointer.py 19 class Test(unittest.TestCase):
20 def test(self): member in class:Test
test_cast.py 5 class Test(unittest.TestCase):
test_errno.py 4 from test import test_support
10 class Test(unittest.TestCase):
49 @unittest.skipUnless(os.name == "nt", 'Test specific to Windows')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_array_in_pointer.py 19 class Test(unittest.TestCase):
20 def test(self): member in class:Test
test_cast.py 5 class Test(unittest.TestCase):
test_errno.py 4 from test import test_support
10 class Test(unittest.TestCase):
49 @unittest.skipUnless(os.name == "nt", 'Test specific to Windows')
  /external/chromium_org/third_party/skia/tests/
Test.cpp 8 #include "Test.h"
30 void Reporter::startTest(Test* test) {
31 this->onStart(test);
38 void Reporter::endTest(Test* test) {
39 this->onEnd(test);
44 Test::Test() : fReporter(NULL), fPassed(true) {}
46 Test::~Test()
    [all...]
  /external/skia/tests/
Test.cpp 8 #include "Test.h"
30 void Reporter::startTest(Test* test) {
31 this->onStart(test);
38 void Reporter::endTest(Test* test) {
39 this->onEnd(test);
44 Test::Test() : fReporter(NULL), fPassed(true) {}
46 Test::~Test()
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
qunit.js 26 var Test = function(name, testName, expected, testEnvironmentArg, async, callback) {
35 Test.prototype = {
44 li.id = this.id = "test-output" + testId++;
78 // allow utility functions to access the current test environment
104 fail("Test " + this.testName + " died, exception and test follows", e, this.callback);
105 QUnit.ok( false, "Died on test #" + (this.assertions.length + 1) + ": " + e.message + " - " + QUnit.jsDump.parse(e) );
106 // else next test will carry the responsibility
210 fail("reset() failed, following Test " + this.testName + ", exception and reset fn follows", e, QUnit.reset);
222 var test = this
    [all...]
  /external/clang/test/Index/
comment-cplus-decls.cpp 3 // RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-schema.rng -target x86_64-apple-darwin10 %s > %t/out
14 class Test
20 Test () : reserved (new data()) {}
32 ~Test () {}
42 // CHECK: <Declaration>class Test {}</Declaration>
43 // CHECK: <Declaration>Test() : reserved(new Test::data())</Declaration>
45 // CHECK: <Declaration>~Test()</Declaration>
46 // CHECK: <Declaration>Test::data *reserved</Declaration
    [all...]
  /art/runtime/gc/accounting/
heap_bitmap-inl.h 38 inline bool HeapBitmap::Test(const mirror::Object* obj) {
41 return bitmap->Test(obj);
45 return bitmap->Test(obj);

Completed in 2545 milliseconds

1 2 34 5 6 7 8 91011>>