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

1 2 34 5 6 7 8

  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 22 void Test() {
  /external/clang/test/CodeGen/
2002-02-17-ArgumentAddress.c 3 int test(int X) { function
13 struct Test { short X, x; int Y, Z; };
15 int Testing(struct Test *A) {
19 int Test2(int X, struct Test A, int Y) {
22 int Test3(struct Test A, struct Test B) {
26 struct Test Test4(struct Test A) {
  /external/clang/test/CodeGenCXX/
debug-info-enum-class.cpp 19 template <typename T> struct Test {
21 test = 0 member in class:A::B::PR14029::Test::Tag
23 Test() {
24 auto t = Tag::test;
28 Test<int> t;
debug-info-template.cpp 28 struct Test {
31 static Test test; variable
  /external/clang/test/SemaCXX/
PR11358.cpp 12 struct Test {
14 void test() { function in struct:test1::Test
44 struct Test {
46 void test() { function in struct:test3::Test
return.cpp 52 class Test
68 void Test(const VarType& value) {
warn-new-overaligned-3.cpp 3 // This test ensures that we still get the warning even if we #include <new>
8 struct Test {
18 Test t;
19 new Test; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
20 new Test[10]; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
warn-new-overaligned.cpp 4 struct Test {
14 Test t;
15 new Test; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
16 new Test[10]; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
21 class Test {
27 Test t;
28 new Test; // expected-warning {{type 'test2::Test' requires 256 bytes of alignment and the default allocator only guarantees}
    [all...]
  /external/gtest/test/
gtest_nc.cc 32 // This file is the input to a negative-compilation test for Google
33 // Test. Code here is NOT supposed to compile. Its purpose is to
34 // verify that certain incorrect usages of the Google Test API are
37 // We still need to write the negative-compilation test itself, which
40 // TODO(wan@google.com): finish the negative-compilation test.
59 // Setup() method in a test fixture.
63 class MyTest : public testing::Test {
70 // from a test fixture.
74 class MyTest : public testing::Test {
77 testing::Test::Setup(); // Tries to call SetUp() in the parent class
    [all...]
  /external/icu4c/samples/citer/
citer.cpp 36 class Test
43 void Test::TestUChariter() {
110 void Test::TestStringiter() {
180 Test t;
183 u_fprintf(out, "Test::TestUCharIter()\n");
188 u_fprintf(out, "Test::TestStringchariter()\n");
  /external/javassist/sample/
Test.java 8 This program overwrites sample/Test.class (the class file of this
10 defined in class Test, then this program adds a copy of
11 f() to the class Test with name g(). Otherwise, this program does
12 not modify sample/Test.class at all.
16 % javap sample.Test
20 public class Test {
28 CtClass cc = pool.get("sample.Test");
31 System.out.println("g() is already defined in sample.Test.");
35 * is not defined in sample.Test.
  /external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/
Test.java 8 public class Test {
  /external/protobuf/gtest/test/
gtest_nc.cc 32 // This file is the input to a negative-compilation test for Google
33 // Test. Code here is NOT supposed to compile. Its purpose is to
34 // verify that certain incorrect usages of the Google Test API are
37 // We still need to write the negative-compilation test itself, which
40 // TODO(wan@google.com): finish the negative-compilation test.
59 // Setup() method in a test fixture.
63 class MyTest : public testing::Test {
70 // from a test fixture.
74 class MyTest : public testing::Test {
77 testing::Test::Setup(); // Tries to call SetUp() in the parent class
    [all...]
  /external/regex-re2/re2/testing/
compile_test.cc 5 // Test prog.cc, compile.cc
9 #include "util/test.h"
23 struct Test {
28 static Test tests[] = {
104 TEST(TestRegexpCompileToProg, Simple) {
107 const re2::Test& t = tests[i];
158 TEST(TestCompile, ByteRanges) {
  /external/v8/test/mjsunit/harmony/
block-const-assign.js 30 // Test that we throw early syntax errors in harmony mode
114 function Test(d,u) {
129 Test(decls[d], uses[u]);
  /external/valgrind/main/memcheck/tests/
new_override.cpp 4 class Test {
18 Test *toto;
22 toto = new Test[2];
  /external/webkit/Tools/Scripts/webkitpy/common/system/
stack_utils_unittest.py 41 class Test(unittest.TestCase):
58 stack_utils.log_thread_state(logger, "test-thread", thread_id,
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_failures_unittest.py 36 class Test(unittest.TestCase):
45 # Also test that != is implemented.
  /frameworks/base/tests/backup/
backup_helper_test.cpp 30 struct Test {
37 Test TESTS[] = {
51 Test* t;
104 printf("All %d test(s) passed\n", testCount);
  /external/clang/test/CXX/special/class.copy/
p18-cxx11.cpp 52 struct Test {
  /external/embunit/inc/
Test.h 33 * $Id: Test.h,v 1.4 2004/02/10 16:19:29 arms22 Exp $
54 typedef struct __Test Test;
61 #define Test_name(s) ((Test*)s)->isa->name(s)
62 #define Test_run(s,r) ((Test*)s)->isa->run(s,r)
63 #define Test_countTestCases(s) ((Test*)s)->isa->countTestCases(s)
  /external/llvm/utils/lit/lit/
LitConfig.py 2 """LitConfig - Configuration data for a 'lit' test runner instance, shared
11 # Provide access to Test module.
12 import Test
24 # The name of the test runner.
39 # Configuration files to look for when discovering test suites.
Test.py 3 # Test results.
21 # Test classes.
24 """TestFormat - Test information provider."""
32 A test suite groups together a set of logically related tests.
39 # The test suite configuration.
48 class Test:
49 """Test - Information on a single test instance."""
55 # The test result code, once complete.
57 # Any additional output from the test, once complete
    [all...]
TestFormats.py 4 import Test
65 yield Test.Test(testSuite, testPath, localConfig)
78 for test in self.getTestsInExecutable(
81 yield test
83 for test in self.getTestsInExecutable(
86 yield test
88 def execute(self, test, litConfig):
89 testPath,testName = os.path.split(test.getSourcePath())
101 return Test.PASS, '
    [all...]
discovery.py 2 Test discovery functions.
9 from lit import LitConfig, Test
22 Find the test suite containing @arg item.
24 @retval (None, ...) - Indicates no test suite contains @arg item.
48 return Test.TestSuite(cfg.name, source_root, exec_root, cfg), ()
51 # Check for an already instantiated test suite.
100 # Find the test suite for this input and its relative path.
103 litConfig.warning('unable to find test suite for %r' % path)
121 # Check if the user named a test directly.
124 yield Test.Test(ts, path_in_suite, lc
    [all...]

Completed in 594 milliseconds

1 2 34 5 6 7 8