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

1 2 34 5 6 7 8 91011>>

  /external/javassist/sample/hotswap/
Test.java 4 public class Test {
  /external/python/cpython2/Demo/tkinter/matt/
not-what-you-might-think-1.py 4 class Test(Frame):
23 test = Test() variable
25 test.master.title('packer demo')
26 test.master.iconname('packer')
28 test.mainloop()
not-what-you-might-think-2.py 4 class Test(Frame):
25 test = Test() variable
27 test.master.title('packer demo')
28 test.master.iconname('packer')
30 test.mainloop()
00-HELLO-WORLD.py 6 class Test(Frame):
26 test = Test() variable
27 test.mainloop()
  /frameworks/compile/mclinker/templates/
headerTest.h 18 namespace test { namespace in namespace:mcld
20 class ${class_name}Test : public ::testing::Test
23 // Constructor can do set-up work for all test here.
24 ${class_name}Test();
27 virtual ~${class_name}Test();
29 // SetUp() will be called immediately before each test.
32 // TearDown() will be called immediately after each test.
36 } // namespace of test
implTest.cpp 10 #include "${class_name}Test.h"
13 using namespace mcld::test;
16 // Constructor can do set-up work for all test here.
17 ${class_name}Test::${class_name}Test()
22 ${class_name}Test::~${class_name}Test()
26 // SetUp() will be called immediately before each test.
27 void ${class_name}Test::SetUp()
31 // TearDown() will be called immediately after each test
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testso/
cgoso.go 9 // to test correct handling of LDFLAGS.
24 func Test() {
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/multimain/
multimain_test.go 14 func Test(t *testing.T) {
  /prebuilts/go/darwin-x86/src/go/printer/
example_test.go 18 // Dummy test function so that godoc does not use the entire file as example.
19 func Test(*testing.T) {}
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug120.go 12 type Test struct {
18 var tests = []Test{
19 Test{123.5, "123.5", "123.5"},
20 Test{456.7, "456.7", "456.7"},
21 Test{1e23 + 8.5e6, "1e23+8.5e6", "1.0000000000000001e+23"},
22 Test{100000000000000008388608, "100000000000000008388608", "1.0000000000000001e+23"},
23 Test{1e23 + 8388609, "1e23+8388609", "1.0000000000000001e+23"},
36 Test{1e23 + 8.388608e6, "1e23+8.388608e6", "1.0000000000000001e+23"},
37 Test{1e23 + 1, "1e23+1", "1.0000000000000001e+23"},
  /prebuilts/go/linux-x86/misc/cgo/testso/
cgoso.go 9 // to test correct handling of LDFLAGS.
24 func Test() {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/multimain/
multimain_test.go 14 func Test(t *testing.T) {
  /prebuilts/go/linux-x86/src/go/printer/
example_test.go 18 // Dummy test function so that godoc does not use the entire file as example.
19 func Test(*testing.T) {}
  /prebuilts/go/linux-x86/test/fixedbugs/
bug120.go 12 type Test struct {
18 var tests = []Test{
19 Test{123.5, "123.5", "123.5"},
20 Test{456.7, "456.7", "456.7"},
21 Test{1e23 + 8.5e6, "1e23+8.5e6", "1.0000000000000001e+23"},
22 Test{100000000000000008388608, "100000000000000008388608", "1.0000000000000001e+23"},
23 Test{1e23 + 8388609, "1e23+8388609", "1.0000000000000001e+23"},
36 Test{1e23 + 8.388608e6, "1e23+8.388608e6", "1.0000000000000001e+23"},
37 Test{1e23 + 1, "1e23+1", "1.0000000000000001e+23"},
  /external/libunwind/tests/
Ltest-cxx-exceptions.cxx 35 struct Test
38 Test() { ++counter_; }
39 ~Test() { -- counter_; }
40 Test(const Test&) { ++counter_; }
46 int Test::counter_ = 0;
51 Test t;
53 Test t;
56 Test t;
68 Test t
    [all...]
  /dalvik/dx/tests/140-ssa-phi-overlap/
Test$X.class 
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestDotTreeGenerator.cs 33 namespace Antlr3.Runtime.Test
  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
Lexer.pm 1 package Test::ANTLR::Runtime::Lexer;
3 use Test::More;
10 BEGIN { extends 'My::Test::Class' }
12 sub constructor : Test(1) {
  /external/antlr/antlr-3.4/runtime/Perl5/t/lib/My/Test/Class/
Load.pm 1 package My::Test::Class::Load;
6 use base 'Test::Class::Load';
  /external/antlr/antlr-3.4/runtime/Perl5/t/lib/My/Test/
Class.pm 1 package My::Test::Class;
3 use Test::More;
7 BEGIN { extends 'Test::Class' }
23 my ($test) = @_;
24 (my $class = ref $test) =~ s/^Test:://xms;
26 $test->class($class);
  /external/clang/test/SemaCXX/
conversion-incomplete-type.cpp 8 struct Test {
11 void test(const string& s) { function in struct:Test
19 static void test(const string& s) { function in struct:TestStatic
thread-safety-reference-handling.cpp 15 void Test() {
  /external/flatbuffers/tests/FlatBuffers.Test/
TestTable.cs 17 namespace FlatBuffers.Test
20 /// A test Table object that gives easy access to the slot data
  /external/junit/src/main/java/junit/framework/
Test.java 4 * A <em>Test</em> can be run and collect its results.
8 public interface Test {
10 * Counts the number of test cases that will be run by this test.
15 * Runs a test and collects its result in a TestResult instance.
  /external/llvm/unittests/Support/
raw_pwrite_stream_test.cpp 19 TEST(raw_pwrite_ostreamTest, TestSVector) {
23 StringRef Test = "test";
24 OS.pwrite(Test.data(), Test.size(), 0);
25 EXPECT_EQ(Test, OS.str());
35 TEST(raw_pwrite_ostreamTest, TestFD) {
41 StringRef Test = "test";
42 OS.pwrite(Test.data(), Test.size(), 0)
    [all...]

Completed in 464 milliseconds

1 2 34 5 6 7 8 91011>>