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

1 2 34 5 6 7 8 91011>>

  /external/vogar/src/org/junit/
Test.java 28 public @interface Test {
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/src/com/android/multidexlegacyandexception/
Test.java 20 com.android.multidexlegacyandexception/android.test.InstrumentationTestRunner
24 public class Test extends android.test.ActivityInstrumentationTestCase2<MainActivity> {
25 public Test() {
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_checkretval.py 11 class Test(unittest.TestCase):
test_array_in_pointer.py 19 class Test(unittest.TestCase):
20 def test(self): member in class:Test
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_checkretval.py 11 class Test(unittest.TestCase):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_checkretval.py 11 class Test(unittest.TestCase):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_checkretval.py 11 class Test(unittest.TestCase):
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
Test.java 19 public class Test implements Comparable<Test> {
23 public Test(String name, int timeout) {
37 public int compareTo(Test another) {
  /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/boringssl/src/crypto/pkcs8/
pkcs12_test.cc 26 #include "../test/scoped_types.h"
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/mturk/
create_hit_external.py 9 class Test(unittest.TestCase):
16 keywords=['boto', 'test', 'doctest']
17 create_hit_rs = conn.create_hit(question=q, lifetime=60*65, max_assignments=2, title="Boto External Question Test", keywords=keywords, reward = 0.05, duration=60*6, approval_delay=60*60, annotation='An annotation from boto external question test', response_groups=['Minimal', 'HITDetail', 'HITQuestion', 'HITAssignmentSummary',])
  /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/junit/src/org/junit/
Test.java 9 * <p>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 * <p>A simple test looks like this:
19 * <b>&#064;Test</b>
27 * <p>The <code>Test</code> annotation supports two optional parameters.
28 * The first, <code>expected</code>, declares that a test method should throw
30 * than the one declared, the test fails. For example, the following test succeeds
    [all...]
  /external/llvm/utils/lit/lit/
LitTestCase.py 4 import lit.Test
14 def __init__(self, test, run):
16 self._test = test
26 # Run the test.
31 if result.code is lit.Test.UNRESOLVED:
  /external/regex-re2/re2/testing/
simplify_test.cc 5 // Test simplify.cc.
9 #include "util/test.h"
14 struct Test {
19 static Test tests[] = {
81 // Test that operators simplify their arguments.
141 TEST(TestSimplify, SimpleRegexps) {
  /external/regex-re2/util/
test.cc 7 #include "util/test.h"
11 struct Test {
16 static Test tests[10000];
  /external/webrtc/tools/python_charts/webrtc/
data_helper_test.py 13 class Test(unittest.TestCase):
16 # Simulate frame data from two different test runs, with 2 frames each.
23 # Test with frame_number column in a non-first position sice we need to
30 self.names = ["Test 0", "Test 1"]
32 [{'name': 'name', 'value': 'Test 0'},
36 [{'name': 'name', 'value': 'Test 1'},
51 self.assertTrue('Test 0' in description['ssim_0'][1])
54 self.assertTrue('Test 1' in description['ssim_1'][1])
109 self.assertEquals('Test 0', data[0]['name']
    [all...]

Completed in 2305 milliseconds

1 2 34 5 6 7 8 91011>>