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

1 2 3 4 5 6 78 91011>>

  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
CommonToken.pm 1 package Test::ANTLR::Runtime::CommonToken;
3 use Test::More;
9 BEGIN { extends 'My::Test::Class' }
11 sub constructor : Test(1) {
22 sub same : Test(2) {
27 sub not_same : Test(2) {
32 sub bool_eof : Test(1) {
  /external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
Test.pm 1 package ANTLR::Runtime::Test;
6 use base 'Test::Builder::Module';
71 # write test program file
72 my $test_program_file = File::Spec->catfile($tmpdir, 'test.pl');
94 # run test program
  /external/chromium-trace/catapult/common/py_utils/py_utils/
retry_util_unittest.py 21 def Test(retries=None):
27 self.assertEqual(Test(), 'OK!')
32 def Test(retries=None):
39 Test()
49 def Test(retries=None):
56 Test()
61 def Test(retries=None):
67 Test(retries=10)
73 def Test(retries=None):
82 self.assertEqual(Test(), 'OK!'
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
p4.cpp 38 namespace Test {
39 void test() { function in namespace:Test
65 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/CoverageMapping/
nestedclass.cpp 6 struct Test { // CHECK-OUTER: emitTest
23 Test t;
24 Test::Test2 t2;
  /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/compiler-rt/test/tsan/
atomic_norace.cc 2 #include "test.h"
8 void Test(int test, T *p, bool main_thread) {
10 if (test == 0) {
15 } else if (test == 1) {
20 } else if (test == 2) {
25 } else if (test == 3) {
35 Test(i, &atomics[i], false);
40 fprintf(stderr, "Test %d reverse\n", i);
41 Test(i, &atomics[kTestCount + i], false)
    [all...]
atomic_race.cc 2 #include "test.h"
8 void Test(int test, T *p, bool main_thread) {
10 if (test == 0) {
15 } else if (test == 1) {
20 } else if (test == 2) {
25 } else if (test == 3) {
35 Test(i, &atomics[i], false);
40 fprintf(stderr, "Test %d reverse\n", i);
41 Test(i, &atomics[kTestCount + i], false)
    [all...]
unaligned_norace.cc 45 void Test(bool main) {
71 Test(false);
78 Test(true);
  /external/flatbuffers/tests/FlatBuffers.Test/
FlatBuffersExampleTests.cs 21 namespace FlatBuffers.Test
36 // Second, let's create a FlatBuffer from scratch in C#, and test it also.
75 MyGame.Example.Test.CreateTest(fbb, (short)10, (sbyte)20);
76 MyGame.Example.Test.CreateTest(fbb, (short)30, (sbyte)40);
182 var t = (MyGame.Example.Test)pos.Test3;
188 var monster2 = monster.Test<Monster>().Value;
272 // Now test the data extracted from the nested buffer
  /external/flatbuffers/tests/MyGame/Example/
Test.go 9 type Test struct {
13 func (rcv *Test) Init(buf []byte, i flatbuffers.UOffsetT) {
18 func (rcv *Test) Table() flatbuffers.Table {
22 func (rcv *Test) A() int16 {
25 func (rcv *Test) MutateA(n int16) bool {
29 func (rcv *Test) B() int8 {
32 func (rcv *Test) MutateB(n int8) bool {
Test.java 11 public final class Test extends Struct {
13 public Test __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
  /external/junit/src/main/java/org/junit/
Test.java 9 * 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 * A simple test looks like this:
19 * <b>&#064;Test</b>
26 * The <code>Test</code> annotation supports two optional parameters.
27 * The first, <code>expected</code>, declares that a test method should throw
29 * than the one declared, the test fails. For example, the following test succeeds
    [all...]
  /external/python/cpython2/Demo/tkinter/matt/
canvas-moving-or-creating.py 6 class Test(Frame):
61 test = Test() variable
62 test.mainloop()
canvas-moving-w-mouse.py 5 class Test(Frame):
54 test = Test() variable
55 test.mainloop()
canvas-mult-item-sel.py 8 class Test(Frame):
77 test = Test() variable
78 test.mainloop()
printing-coords-of-items.py 5 class Test(Frame):
60 test = Test() variable
61 test.mainloop()
rubber-band-box-demo-1.py 3 class Test(Frame):
56 test = Test() variable
58 test.mainloop()
  /external/python/cpython2/Lib/ctypes/test/
test_frombuffer.py 12 class Test(unittest.TestCase):
  /external/python/cpython3/Lib/ctypes/test/
test_simplesubclasses.py 10 class Test(unittest.TestCase):
17 # Test if the return value of a callback is ignored
  /external/python/cpython3/Lib/test/
test_syslog.py 2 from test import support
6 # XXX(nnorwitz): This test sucks. I don't know of a platform independent way
8 # The only purpose of this test is to verify the code doesn't crash or leak.
10 class Test(unittest.TestCase):
19 syslog.syslog('test message from python test_syslog')
20 syslog.syslog(syslog.LOG_ERR, 'test error from python test_syslog')
37 syslog.syslog('test message from python test_syslog')
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8632/
ControlFlow.cpp 14 namespace Test {
30 AssembledTest test = assemble(); \
31 test.run(); \
32 EXPECT_EQ(Value0, test.Src0()) << "Br_" #C ", " #Near; \
33 EXPECT_EQ(Value1, test.Src1()) << "Br_" #C ", " #Near; \
34 EXPECT_EQ(0xBEEFul, test.Dest()) << "Br_" #C ", " #Near; \
91 AssembledTest test = assemble(); local
93 test.run();
95 EXPECT_EQ(0xF00Fu, test.eax());
115 AssembledTest test = assemble() local
139 AssembledTest test = assemble(); local
    [all...]
Other.cpp 13 namespace Test {
82 } // end of namespace Test

Completed in 335 milliseconds

1 2 3 4 5 6 78 91011>>