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

1 2 3 4 5 6 7 8 91011>>

  /external/grpc-grpc-java/interop-testing/src/generated/main/java/io/grpc/testing/integration/
Test.java 2 // source: grpc/testing/test.proto
6 public final class Test {
7 private Test() {}
26 "\n\027grpc/testing/test.proto\022\014grpc.testing\032" +
  /external/llvm/tools/llvm-jitlistener/
llvm-jitlistener.cpp 186 cl::ParseCommandLineOptions(argc, argv, "llvm jit event listener test utility\n");
188 JitEventListenerTest Test;
190 Test.ProcessInput(InputFilename);
  /external/parameter-framework/upstream/bindings/c/
Test.cpp 47 struct Test
114 TEST_CASE_METHOD(Test, "Parameter-framework c api use")
126 const char *intParameterPath = "/test/system/integer";
127 const char *stringParameterPath = "/test/system/string";
137 <SystemClass Name='test'>\
143 SystemClassName='test' TuningAllowed='false'>\
171 WHEN ("Using test logger") {
175 // Test coverage of default logger warning
  /external/parameter-framework/upstream/utility/test/
utility.cpp 46 struct Test
54 const list<Test> tests = {{{}, nullptr, 21, 21, 0},
59 for (auto &test : tests) {
60 CAPTURE(Catch::toString(test.input));
61 const auto &first = begin(test.input);
62 const auto &last = end(test.input);
63 REQUIRE(join(first, last, test.binaryOpt, test.empty) == test.result);
64 REQUIRE(join<int>(first, last, test.binaryOpt) == test.resultNoEmpty)
    [all...]
  /external/python/cpython2/Demo/newmetaclasses/
Eiffel.py 91 class Test(Eiffel):
107 class Sub(Test):
114 t = Test()
  /external/python/cpython3/Lib/ctypes/test/
test_byteswap.py 16 class Test(unittest.TestCase):
17 @unittest.skip('test disabled')
  /external/python/cpython3/Tools/demo/
eiffel.py 111 class Test(Eiffel):
126 class Sub(Test):
134 t = Test()
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8664/
Locked.cpp 13 namespace Test {
49 AssembledTest test = assemble(); \
50 test.setDwordTo(T0, V0); \
51 test.run(); \
53 ASSERT_EQ(V0, test.Dst1()) << TestString; \
54 ASSERT_EQ(V1, test.contentsOfDword(T0)) << TestString; \
102 AssembledTest test = assemble(); \
103 test.run(); \
105 ASSERT_EQ(V0, test.Reg1()) << TestString; \
106 ASSERT_EQ(V1, test.Reg0()) << TestString;
    [all...]
LowLevel.cpp 13 namespace Test {
1109 AssembledTest test = assemble(); local
    [all...]
TestUtil.h 35 namespace Test {
37 class AssemblerX8664TestBase : public ::testing::Test {
161 // __ is a helper macro. It allows test cases to emit X8664 assembly
202 // test will emit some instructions for performing the test. The assembled
208 // test harnesses need to ensure it does not leave anything it pushed on the
216 // (i.e., IP materialization). Upon a test start up, a call(NextInstruction) is
222 // test:
224 // call test$materialize_ip
225 // test$materialize_ip: <<------- %r9 will point her
    [all...]
  /external/syzkaller/vendor/cloud.google.com/go/iam/
iam.go 34 Test(ctx context.Context, resource string, perms []string) ([]string, error)
57 func (g *grpcClient) Test(ctx context.Context, resource string, perms []string) ([]string, error) {
112 return h.c.Test(ctx, h.resource, permissions)
  /external/tensorflow/tensorflow/python/kernel_tests/
matrix_exponential_op_test.py 35 from tensorflow.python.platform import test
50 class ExponentialOpTest(test.TestCase):
163 class MatrixExponentialBenchmark(test.Benchmark):
203 if test.is_gpu_available(True):
220 def Test(self):
228 return Test
233 def Test(self):
243 return Test
265 test.main()
  /external/v8/tools/clang/pass_to_move/tests/
test-expected.cc 32 void Test() {
test-original.cc 32 void Test() {
  /external/webrtc/webrtc/tools/rtcbot/
test.js 9 // Provides a Test class that exposes api to the tests.
10 // Read test.prototype to see what methods are exposed.
15 function Test() {
17 this.fail.bind(this, "Test timeout!"),
21 Test.prototype = {
27 var error = new Error(error || "Test aborted");
39 this.assert(false, "Test failed.");
44 console.log("Test succeeded");
139 fs.exists("test/reports/", function (exists) {
143 fs.mkdir("test/reports/", 0777, writeFile.bind(this))
    [all...]
  /art/runtime/gc/accounting/
bitmap.h 169 ALWAYS_INLINE bool Test(size_t addr) const {
space_bitmap-inl.h 47 DCHECK(Test(obj));
51 DCHECK(Test(obj));
56 inline bool SpaceBitmap<kAlignment>::Test(const mirror::Object* obj) const {
75 if (Test(obj)) {
209 DCHECK_EQ(Test(obj), kSetBit);
  /dalvik/dx/tests/140-ssa-phi-overlap/
Test.java 26 public class Test {
73 private Test() {
168 Test t = new Test();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
test_runner.py 16 test = TestableTest('testNothing')
17 self.assertEqual(test._cleanups, [])
27 test.addCleanup(cleanup1, 1, 2, 3, four='hello', five='goodbye')
28 test.addCleanup(cleanup2)
30 self.assertEqual(test._cleanups,
34 result = test.doCleanups()
47 def addError(self, test, exc_info):
48 self.errors.append((test, exc_info))
51 test = TestableTest('testNothing')
52 test._resultForDoCleanups = result
    [all...]
  /external/antlr/runtime/Ruby/lib/antlr3/test/
functional.rb 5 require 'antlr3/test/core-extensions'
6 require 'antlr3/test/grammar'
7 require 'antlr3/test/call-stack'
9 require 'test/unit'
13 module Test
76 # quickly as test cases are run, instead of waiting a few minutes
88 # anonymous subclasses, of the actual test class, which messes up the
89 # assumptions made in the test code. Grammars are stored in @grammars belonging
90 # to the test class, so in 1.9, this method is called with @grammars = {}
98 # An index of grammar file objects created in the test clas
    [all...]
grammar.rb 5 require 'antlr3/test/core-extensions'
6 require 'antlr3/test/call-stack'
16 module Test
29 dependencies << path if test( ?f, path )
36 not test( ?f, target ) or
37 dependencies.any? { |dep| test( ?>, dep, target ) }
55 GLOBAL_DEPENDENCIES << path if test( ?f, path )
193 if test( ?f, target )
221 test( ?f, f ) and File.delete( f )
307 test( ?d, output_directory ) or Dir.mkdir( output_directory
    [all...]
  /external/autotest/client/site_tests/cellular_GobiRecoverFromDesync/
cellular_GobiRecoverFromDesync.py 15 from autotest_lib.client.bin import test
117 # We don't want to start the test until udevadm is running
227 """Test the special-case code path where we receive an error from
246 """Test the special-case code on errors connecting to the API. """
264 """Test that the Enable and Disable technology functions work."""
283 def Test(self):
284 """Test that the Enable and Disable technology functions work.
319 class cellular_GobiRecoverFromDesync(test.test):
322 def run_test(self, test_env, test)
    [all...]
  /external/clang/test/CXX/special/class.copy/
p12-0x.cpp 192 struct Test : HasImplicitlyDeletedCopyCtor {
193 Test(const Test&) = default;
194 Test(Test&&) = default;
197 static_assert(__has_trivial_copy(Test), "");
199 static_assert(!__is_trivially_constructible(Test, const Test &), "");
201 static_assert(!__is_trivially_constructible(Test, Test &&), "")
    [all...]
  /external/clang/test/CXX/special/class.ctor/
p6-0x.cpp 89 struct Test {
  /external/clang/test/SemaCXX/
warn-thread-safety-verbose.cpp 44 class Test {

Completed in 662 milliseconds

1 2 3 4 5 6 7 8 91011>>