| /frameworks/compile/mclinker/templates/ |
| 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...] |
| /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...] |
| /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/ |
| TestDotTreeGenerator.cs | 33 namespace Antlr3.Runtime.Test
|
| TestFastLexer.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) {
|
| ANTLRStringStream.pm | 1 package Test::ANTLR::Runtime::ANTLRStringStream; 4 use Test::More; 8 BEGIN { extends 'My::Test::Class' } 10 sub consume : Test(2) { 19 sub LA : Test(5) {
|
| Exception.pm | 1 package Test::ANTLR::Runtime::Exception; 3 use Test::More; 7 BEGIN { extends 'My::Test::Class' } 9 sub constructor : Test(1) { 15 sub constructor_message : Test(1) { 17 my $ex = $self->class->new({ message => 'test error message' }); 18 is $ex->message, 'test error message'; 21 sub throw : Test(1) { 24 $self->class->throw(message => 'test error message'); 27 is $ex->message, 'test error message' [all...] |
| /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/PCH/ |
| cxx11-inheriting-ctors.cpp | 16 struct Test : Base { 32 Test test1a(42); 33 Test test1b(nullptr);
|
| /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() {
|
| warn-new-overaligned-2.cpp | 4 // This test verifies that we don't warn when the global operator new is 5 // overridden. That's why we can't merge this with the other test file. 10 struct Test { 20 Test t; 21 new Test; 22 new Test[10];
|
| warn-unused-attribute.cpp | 2 struct __attribute__((warn_unused)) Test { 3 Test(); 4 ~Test(); 13 Test unused; // expected-warning {{unused variable 'unused'}} 14 Test used;
|
| /external/junit/src/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. 14 * 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...] |
| /external/v8/test/mjsunit/compiler/ |
| array-length.js | 32 function Test(a0, a2, a5) { 41 for (var i = 0; i < 5; i++) Test(a0, a2, a5); 43 %OptimizeFunctionOnNextCall(Test); 44 Test(a0, a2, a5); 46 for (var i = 0; i < 5; i++) Test(a0, a2, a5); 47 %OptimizeFunctionOnNextCall(Test); 48 Test(a0, a2, a5);
|
| /external/v8/test/webkit/ |
| dictionary-no-cache.js | 24 description("Test to ensure that we handle caching of prototype chains containing dictionaries."); 26 var Test = function(){}; 31 Test.prototype['myMethod' + i] = function(){}; 34 var test1 = new Test(); 38 Test.prototype.myAdditionalMethod = function(){}; 39 var test2 = new Test(); 47 var Test = function(){}; 49 Test.prototype['myMethod' + i] = function(){}; 51 var test1 = new Test(); 55 delete (Test.prototype)[k [all...] |
| /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/test/127-checker-secondarydex/src/ |
| Test.java | 17 public class Test extends Super { 18 public void test(Test t) { method in class:Test 23 System.out.println("Test"); 26 /// CHECK-START: java.lang.Integer Test.toInteger() builder (after) 34 return new String("Test");
|
| /external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/ |
| p3.cpp | 13 class Test { 16 void test() { function in class:test0::Test
|
| /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/ |
| basic.cpp | 17 void Test() {
|
| /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
| p16.cpp | 30 struct Test{ 37 void Test<T>::get<double>(double i) {} // expected-error{{cannot specialize (with 'template<>') a member of an unspecialized template}}
|
| /external/clang/test/CodeGenCXX/ |
| debug-info-dup-fwd-decl.cpp | 3 class Test 6 Test () : reserved (new data()) {} 20 Test t;
|
| /external/clang/test/Sema/ |
| predefined-function.c | 4 enum Test {A=-1}; 5 char *funk(enum Test x);
|