Searched defs:Test (Results 51 - 75 of 202) sorted by relevance

123456789

/external/clang/test/SemaCXX/
H A Dwarn-unused-attribute.cpp2 struct __attribute__((warn_unused)) Test { struct
3 Test();
4 ~Test();
13 Test unused; // expected-warning {{unused variable 'unused'}}
14 Test used;
H A Dtag-ambig.cpp13 class Test class
17 virtual bool testMethod (Test::Point& p) = 0;
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DTest.java9 * Test class. This file is not formally a member of the org.json library.
12 public class Test { class
/external/javassist/sample/
H A DTest.java8 This program overwrites sample/Test.class (the class file of this
10 defined in class Test, then this program adds a copy of
11 f() to the class Test with name g(). Otherwise, this program does
12 not modify sample/Test.class at all.
16 % javap sample.Test
20 public class Test { class
28 CtClass cc = pool.get("sample.Test");
31 System.out.println("g() is already defined in sample.Test.");
35 * is not defined in sample.Test.
/external/junit/src/junit/framework/
H A DTest.java4 * A <em>Test</em> can be run and collect its results.
8 public interface Test { interface
/external/vogar/src/org/junit/
H A DTest.java28 public @interface Test { interface
/external/libunwind/tests/
H A DLtest-cxx-exceptions.cxx35 struct Test struct
38 Test() { ++counter_; } function in struct:Test
39 ~Test() { -- counter_; }
40 Test(const Test&) { ++counter_; } argument
46 int Test::counter_ = 0;
51 Test t;
53 Test t;
56 Test t;
68 Test
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
H A DTestFastLexer.cs33 namespace Antlr3.Runtime.Test
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DCommonToken.pm1 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) {
H A DBitSet.pm1 package Test::ANTLR::Runtime::BitSet;
3 use Test::More;
7 BEGIN { extends 'My::Test::Class' }
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
H A DTest.pm1 package ANTLR::Runtime::Test;
6 use base 'Test::Builder::Module';
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
H A Dp4.cpp33 namespace Test { namespace
/external/clang/test/CodeGen/
H A D2002-03-12-ArrayInitialization.c15 struct Test { int X; double Y; }; struct
17 struct Test Array[10] = { { 2, 12.0 }, { 3, 24.0 } };
/external/clang/test/CoverageMapping/
H A Dnestedclass.cpp6 struct Test { // CHECK-OUTER: emitTest struct
23 Test t;
24 Test::Test2 t2;
/external/clang/test/Misc/
H A Dast-dump-color.cpp6 int Test __attribute__((unused)); variable
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/Sema/
H A Dpredefined-function.c4 enum Test {A=-1}; enum
5 char *funk(enum Test x);
/external/clang/test/SemaTemplate/
H A Drecovery-crash.cpp15 void Test() { function
/external/junit/src/org/junit/
H A DTest.java9 * <p>The <code>Test</code> annotation tells JUnit that the <code>public void</code> method
19 * <b>&#064;Test</b>
27 * <p>The <code>Test</code> annotation supports two optional parameters.
32 * &#064;Test(<b>expected=IndexOutOfBoundsException.class</b>) public void outOfBounds() {
40 * &#064;Test(<b>timeout=100</b>) public void infinity() {
47 public @interface Test { interface
/external/llvm/utils/lit/lit/
H A DLitTestCase.py4 import lit.Test namespace
31 if result.code is lit.Test.UNRESOLVED:
/external/regex-re2/re2/testing/
H A Dsimplify_test.cc5 // Test simplify.cc.
14 struct Test { struct in namespace:re2
19 static Test tests[] = {
81 // Test that operators simplify their arguments.
/external/clang/test/Index/
H A Dcomment-cplus-decls.cpp14 class Test class
20 Test () : reserved (new data()) {} function in class:Test
32 ~Test () {}
42 // CHECK: <Declaration>class Test {}</Declaration>
43 // CHECK: <Declaration>Test() : reserved(new Test::data())</Declaration>
45 // CHECK: <Declaration>~Test()</Declaration>
46 // CHECK: <Declaration>Test::data *reserved</Declaration>
53 friend class Test;
67 friend bool operator==(const Test
[all...]
/external/boringssl/src/crypto/pkcs8/
H A Dpkcs12_test.cc684 static bool Test(const char *name, const uint8_t *der, size_t der_len) { function
750 if (!Test("OpenSSL", kOpenSSL, sizeof(kOpenSSL)) ||
751 !Test("NSS", kNSS, sizeof(kNSS)) ||
752 !Test("Windows", kWindows, sizeof(kWindows)) ||
/external/clang/test/CXX/class.derived/class.member.lookup/
H A Dp8.cpp19 void Test() { function in namespace:PR5820
57 void Test(DerivedT<T> d) { function
63 template void Test(DerivedT<int>);
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
H A Dp4.cpp70 void Test () function in namespace:PR18432
/external/clang/test/CXX/special/class.copy/
H A Dp8-cxx11.cpp41 struct Test { struct

Completed in 707 milliseconds

123456789