HomeSort by relevance Sort by last modified time
    Searched refs:Test (Results 1 - 25 of 4149) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nanopb-c/tests/no_messages/
no_messages.proto 0 /* Test that a file without any messages works. */
3 enum Test {
  /external/clang/test/Misc/
ast-dump-arm-attr.c 1 // RUN: %clang_cc1 -triple arm-apple-darwin -ast-dump -ast-dump-filter Test %s | FileCheck --strict-whitespace %s
3 __attribute__((interrupt)) void Test(void);
4 // CHECK: FunctionDecl{{.*}}Test
ast-dump-msp430-attr.c 1 // RUN: %clang_cc1 -triple msp430-unknown-unknown -ast-dump -ast-dump-filter Test %s | FileCheck --strict-whitespace %s
3 __attribute__((interrupt(12))) void Test(void);
4 // CHECK: FunctionDecl{{.*}}Test
  /external/clang/test/Parser/
cxx-member-init-missing-paren-crash.cpp 3 class Test {
5 Test() : ab_(false {};
  /external/clang/test/SemaCXX/
pragma-weak.cpp 10 extern "C" int Test;
11 #pragma weak test = Test macro
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-new-overaligned.cpp 4 struct Test {
14 Test t;
15 new Test; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
16 new Test[10]; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
21 class Test {
27 Test t;
28 new Test; // expected-warning {{type 'test2::Test' requires 256 bytes of alignment and the default allocator only guarantees}
    [all...]
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/clang/test/CodeGenCXX/
block.cpp 3 // Just test that this doesn't crash the compiler...
7 struct Test
10 Test(Test&c) { func((void*)this); }
11 Test() { func((void*)this); }
17 __block Test t;
debug-info-dup-fwd-decl.cpp 3 class Test
6 Test () : reserved (new data()) {}
20 Test t;
  /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...]
  /art/test/097-duplicate-method/src/
Test.java 20 public class Test {
  /external/antlr/antlr-3.4/runtime/Perl5/t/
classes.t 7 use My::Test::Class::Load 't/classes';
9 Test::Class->runtests();
  /external/apache-harmony/support/src/test/resources/tests/resources/
Inserted_Entry_Manifest.jar 
Inserted_Entry_Manifest_with_DigestCode.jar 
Integrate.jar 
Modified_Class.jar 
Modified_Manifest_EntryAttributes.jar 
Modified_Manifest_MainAttributes.jar 
Modified_SF_EntryAttributes.jar 
TestCodeSigners.jar 
  /external/chromium_org/remoting/client/plugin/
chromoting_plugin_unittest.cc 13 class ChromotingPluginTest : public testing::Test {
  /external/junit/src/junit/framework/
TestListener.java 4 * A Listener for test progress
10 public void addError(Test test, Throwable t);
14 public void addFailure(Test test, AssertionFailedError t);
16 * A test ended.
18 public void endTest(Test test);
20 * A test started.
22 public void startTest(Test test)
    [all...]
  /art/test/122-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");
  /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 } };

Completed in 505 milliseconds

1 2 3 4 5 6 7 8 91011>>