HomeSort by relevance Sort by last modified time
    Searched defs:Test (Results 226 - 250 of 602) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
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/clang/test/SemaTemplate/
recovery-crash.cpp 17 void Test() {
  /external/compiler-rt/test/tsan/
unaligned_race.cc 2 #include "test.h"
105 NOINLINE void Test(bool main) {
124 Test(false);
132 Test(true);
  /external/flatbuffers/tests/FlatBuffers.Test/
Assert.cs 22 namespace FlatBuffers.Test
FuzzTestData.cs 19 namespace FlatBuffers.Test
  /external/flatbuffers/tests/MyGame/Example/
Test.cs 11 public struct Test : IFlatbufferObject
16 public Test __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
23 public static Offset<Test> CreateTest(FlatBufferBuilder builder, short A, sbyte B) {
28 return new Offset<Test>(builder.Offset);
  /external/icu/icu4c/source/samples/citer/
citer.cpp 42 class Test
49 void Test::TestUChariter() {
116 void Test::TestStringiter() {
186 Test t;
189 u_fprintf(out, "Test::TestUCharIter()\n");
194 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/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/
tuple_size_structured_bindings.pass.cpp 112 struct Test {
117 int get(Test const&) { static_assert(N == 0, ""); return -1; }
120 class std::tuple_element<0, Test> {
126 Test const t{99};
132 class std::tuple_size<Test> {
138 Test const t{99};
  /external/parameter-framework/upstream/test/functional-tests/include/
Test.hpp 48 /** Value to test with a title.
51 * values and run the test for each of them.
59 * Each Test MUST specify a unique title, Ie all titles of a Tests MUST
64 struct Test
70 /** Use a vector to represent a collection of test input.
74 * for (auto &test : Tests<std::string>{
75 * // ^~~~~~~~~~~ Test parameter type
77 * //^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Test parameters
81 * // ^~~~~~~~~~~ Value to test
82 * SECTION("Testing: " + test.title)
    [all...]
  /external/perf_data_converter/src/
perf_to_profile_lib_test.cc 16 TEST(PerfToProfileTest, ParseArguments) {
17 struct Test {
26 std::vector<Test> tests;
27 tests.push_back(Test{
35 tests.push_back(Test{
43 tests.push_back(Test{
51 tests.push_back(Test{
59 tests.push_back(Test{
67 for (auto test : tests) {
71 LOG(INFO) << "Testing: " << test.desc
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_simplesubclasses.py 12 class Test(unittest.TestCase):
19 # Test if the return value of a callback is ignored
  /external/python/cpython2/Lib/test/
test_pkg.py 0 # Test packages (dotted-name import)
8 from test import test_support
29 # XXX Things to test
45 class Test(unittest.TestCase):
54 if self.root: # Only clean if the test was actually run
  /external/python/cpython3/Lib/ctypes/test/
test_frombuffer.py 12 class Test(unittest.TestCase):
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
RobolectricTestRunnerClassLoaderConfigTest.java 6 import org.junit.Test;
9 import org.robolectric.test.DummyClass;
14 @Test
20 @Test
27 @Test public void testPackagesFromParentClassLoaderAreMadeAvailableByName() throws Exception {
28 assertThat(Test.class.getPackage()).isNotNull();
30 assertThat(Package.getPackage("org.junit")).isEqualTo(Test.class.getPackage());
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
Test.py 3 # Test results.
17 # Test classes.
20 """TestFormat - Test information provider."""
28 A test suite groups together a set of logically related tests.
35 # The test suite configuration.
44 class Test:
45 """Test - Information on a single test instance."""
51 # The test result code, once complete.
53 # Any additional output from the test, once complete
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
batch_matmul_op_test.py 27 from tensorflow.python.platform import test
30 class BatchMatmulOpTest(test.TestCase):
53 # Test _npBatchMatMul works.
138 def Test(self):
143 return Test
146 class BatchMatmulGradientTest(test.TestCase):
191 def Test(self):
195 return Test
213 test.main()
linalg_ops_test.py 29 from tensorflow.python.platform import test
33 test_name = "_".join(["test", op_name, testcase_name])
35 raise RuntimeError("Test %s defined more than once" % test_name)
47 class CholeskySolveTest(test.TestCase):
68 class LogdetTest(test.TestCase):
97 class SlogdetTest(test.TestCase):
124 class AdjointTest(test.TestCase):
138 class EyeTest(test.TestCase):
144 def Test(self):
179 return Test
    [all...]
qr_op_test.py 29 from tensorflow.python.platform import test
33 test_name = "_".join(["test", op_name, testcase_name])
35 raise RuntimeError("Test %s defined more than once" % test_name)
39 class QrOpTest(test.TestCase):
85 # implicitly test that the trailing vectors of x and y span the
115 def Test(self):
154 return Test
157 class QrGradOpTest(test.TestCase):
163 def Test(self):
194 return Test
    [all...]
self_adjoint_eig_op_test.py 30 from tensorflow.python.platform import test
34 test_name = "_".join(["test", op_name, testcase_name])
36 raise RuntimeError("Test %s defined more than once" % test_name)
40 class SelfAdjointEigTest(test.TestCase):
121 def Test(self):
157 return Test
160 class SelfAdjointEigGradTest(test.TestCase):
166 def Test(self):
221 return Test
236 test.main(
    [all...]
svd_op_test.py 29 from tensorflow.python.platform import test
33 test_name = "_".join(["test", op_name, testcase_name])
35 raise RuntimeError("Test %s defined more than once" % test_name)
39 class SvdOpTest(test.TestCase):
94 # implicitly test that the trailing vectors of x and y span the
128 def Test(self):
132 if test.is_gpu_available():
186 return Test
189 class SvdGradOpTest(test.TestCase):
216 def Test(self)
    [all...]
  /external/testng/src/main/java/org/testng/annotations/
Test.java 11 * Mark a class or a method as part of the test.
17 public @interface Test {
41 * methods was not a SUCCESS, this test method will not be
49 * are guaranteed that all these methods will be run before the test method
51 * methods was not a SUCCESS, this test method will not be
60 * The maximum number of milliseconds this test should take.
66 * The maximum number of milliseconds that the total number of invocations on this test
91 * The name of the data provider for this test method.
99 * of the current test method or one of its super classes.
106 * If set to true, this test method will always be run even if it depend
    [all...]
  /external/valgrind/drd/tests/
std_list.cpp 2 * Test program that triggers strcpy() from one thread and a memory allocation
4 * strcpy() intercept there is about 50% chance that this test program triggers
39 class Test {
61 Test *casted = reinterpret_cast<Test*>(instance);
70 Test *casted = reinterpret_cast<Test*>(instance);
82 Test instance1;
83 Test instance2;

Completed in 1051 milliseconds

1 2 3 4 5 6 7 8 91011>>