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

1 2 3 4 5 6 78 91011>>

  /external/flatbuffers/tests/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/googletest/googlemock/test/
gmock-pp_test.cc 45 struct Test {
50 static_assert(Test<GMOCK_PP_FOR_EACH(GMOCK_PP_INTERNAL_TYPE_TEST, ~,
  /external/harfbuzz_ng/test/subset/
subset_test_suite.py 6 # A single test in a subset test suite. Identifies a font
8 class Test:
39 # A group of tests to perform on the subsetter. Each test
68 test = Test(font, profile, subset)
69 if test.applicable():
70 yield test
97 raise Exception("Failed to parse test suite file.")
  /external/icu/icu4c/source/samples/citer/
citer.cpp 47 class Test
54 void Test::TestUChariter() {
121 void Test::TestStringiter() {
191 Test t;
194 u_fprintf(out, "Test::TestUCharIter()\n");
199 u_fprintf(out, "Test::TestStringchariter()\n");
  /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 struct 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_cast.py 2 from ctypes.test import need_symbol
6 class Test(unittest.TestCase):
test_frombuffer.py 12 class Test(unittest.TestCase):
  /external/python/funcsigs/tests/
test_funcsigs.py 29 def test(): function in function:TestFunctionSignatures.test_zero_arguments
31 self.assertEqual(self.signature(test),
35 def test(a): function in function:TestFunctionSignatures.test_single_positional_argument
37 self.assertEqual(self.signature(test),
41 def test(a=None): function in function:TestFunctionSignatures.test_single_keyword_argument
43 self.assertEqual(self.signature(test),
47 def test(*args): function in function:TestFunctionSignatures.test_var_args
49 self.assertEqual(self.signature(test),
53 def test(**kwargs): function in function:TestFunctionSignatures.test_keywords_args
55 self.assertEqual(self.signature(test),
59 def test(a, b=None, *args, **kwargs): function in function:TestFunctionSignatures.test_multiple_arguments
    [all...]
  /external/python/httplib2/python2/httplib2/
iri2uri.py 77 class Test(unittest.TestCase):
79 """Test that URIs are invariant under the transformation."""
94 """Test that the right type of escaping is done for each part of the URI."""
  /external/python/httplib2/python3/httplib2/
iri2uri.py 78 class Test(unittest.TestCase):
80 """Test that URIs are invariant under the transformation."""
95 """Test that the right type of escaping is done for each part of the URI."""
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
RobolectricTestRunnerClassLoaderConfigTest.java 5 import androidx.test.ext.junit.runners.AndroidJUnit4;
7 import org.junit.Test;
10 import org.robolectric.test.DummyClass;
15 @Test
21 @Test
28 @Test public void testPackagesFromParentClassLoaderAreMadeAvailableByName() throws Exception {
29 assertThat(Test.class.getPackage()).isNotNull();
31 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 28 from tensorflow.python.platform import test
31 class BatchMatmulOpTest(test.TestCase):
54 # Test _npBatchMatMul works.
140 def Test(self):
145 return Test
148 class BatchMatmulGradientTest(test.TestCase):
190 def Test(self):
194 return Test
213 test.main()
qr_op_test.py 31 from tensorflow.python.platform import test
35 test_name = "_".join(["test", op_name, testcase_name])
37 raise RuntimeError("Test %s defined more than once" % test_name)
41 class QrOpTest(test.TestCase):
89 # implicitly test that the trailing vectors of x and y span the
120 def Test(self):
159 return Test
162 class QrGradOpTest(test.TestCase):
169 def Test(self):
200 return Test
    [all...]
self_adjoint_eig_op_test.py 31 from tensorflow.python.platform import test
35 test_name = "_".join(["test", op_name, testcase_name])
37 raise RuntimeError("Test %s defined more than once" % test_name)
41 class SelfAdjointEigTest(test.TestCase):
78 # Test a 32x32 matrix which is known to fail if denorm floats are flushed to
81 test.test_src_dir_path(
141 def Test(self):
177 return Test
180 class SelfAdjointEigGradTest(test.TestCase):
186 def Test(self)
    [all...]
svd_op_test.py 32 from tensorflow.python.platform import test
36 test_name = "_".join(["test", op_name, testcase_name])
38 raise RuntimeError("Test %s defined more than once" % test_name)
42 class SvdOpTest(test.TestCase):
99 # implicitly test that the trailing vectors of x and y span the
134 def Test(self):
138 if test.is_gpu_available():
192 return Test
195 class SvdGradOpTest(test.TestCase):
224 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/v8/tools/clang/rewrite_to_chrome_style/tests/
gmock-expected.cc 21 void Test() {
43 void Test() {
gmock-original.cc 21 void test() { function in namespace:blink::simple_test
43 void Test() {

Completed in 588 milliseconds

1 2 3 4 5 6 78 91011>>