HomeSort by relevance Sort by last modified time
    Searched defs:Test (Results 126 - 150 of 173) sorted by null

1 2 3 4 56 7

  /external/llvm/utils/lit/lit/
main.py 17 import Test
19 # Configuration files to look for when discovering test suites. These can be
37 def update(self, test):
39 if self.opts.quiet and not test.result.isFailure:
46 self.handleUpdate(test)
58 def handleUpdate(self, test):
62 test.getFullName())
64 if self.opts.succinct and not test.result.isFailure:
70 print '%s: %s (%d of %d)' % (test.result.name, test.getFullName()
    [all...]
  /external/webkit/Tools/CSSTestSuiteHarness/harness/
harness.js 194 function Test(testInfoLine)
219 this.completedHTML = false; // true if this test has a result (pass, fail or skip)
220 this.completedXHTML = false; // true if this test has a result (pass, fail or skip)
229 Test.prototype.runForFormat = function(format)
240 Test.prototype.completedForFormat = function(format)
251 Test.prototype.statusForFormat = function(format)
355 this.tests = {}; // map of test id to test info
361 this.currChapterTestIndex = -1; // index of test in the current chapter
407 var test = new Test(lines[i])
    [all...]
  /packages/apps/KeyChain/tests/src/com/android/keychain/tests/
KeyChainServiceTest.java 108 new Thread(new Test(), TAG).start();
117 private final class Test extends Assert implements Runnable {
  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 125 // FIXME: How to test the union thing?
211 struct Test {
  /external/clang/test/CodeGenCXX/
debug-info-use-after-free.cpp 277 Test {
286 n1::Test {
const-init-cxx11.cpp 73 struct Test : Ts... { constexpr Test() : Ts()..., n(5) {} int n; };
75 using Test1 = Test<N, C, Cs<1,2>, D, X<C,1>>;
362 void test() { static long b = (long)&&lbl - a(false); lbl: return; } function
422 void test() {
439 // this test.
  /external/clang/test/SemaCXX/
nested-name-spec.cpp 201 class Test {
typo-correction.cpp 44 // Test the improvement from passing a callback object to CorrectTypo in
69 // Test the improvement from passing a callback object to CorrectTypo in
79 // Test the improvement from passing a callback object to CorrectTypo in
86 // Test the typo-correction callback in Sema::DiagnoseUnknownTypeName.
108 // Test the typo-correction callback in Sema::DiagnoseInvalidRedeclaration.
117 // Test the improved typo correction for the Parser::ParseCastExpr =>
129 // Test the typo-correction callback in BuildRecoveryCallExpr.
133 void Test() {
181 void test() { function in class:ClashTool
234 void test() { function in namespace:bogus_keyword_suggestion
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.h 32 // The Google C++ Testing Framework (Google Test)
34 // This header file defines the public API for Google Test. It should be
35 // included by any test program that uses Google Test.
47 // Acknowledgment: Google Test borrowed the idea of automatic test
54 // The following platform macros are used throughout Google Test:
67 #include <gtest/gtest-death-test.h>
100 // This flag controls whether Google Test includes Google Test interna
    [all...]
gtest.cc 32 // The Google C++ Testing Framework (Google Test)
101 // Indicates that this translation unit is part of Google Test's
120 // A test that matches this pattern is disabled and not run.
123 // A test filter that matches everything.
138 " should catch exceptions and treat them as test failures.");
154 "exclude). A test is run if it matches one of the positive "
168 "within that directory, with file-names based on the test "
175 "How many times to repeat each test. Specify a negative number "
187 "printing test failure stack traces.");
192 // Google Test. Useful for catching the user mistake of not initializin
1974 Test* test = NULL; local
1993 Test* test = (*maker_)(); local
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h 32 // The Google C++ Testing Framework (Google Test)
34 // This header file defines the public API for Google Test. It should be
35 // included by any test program that uses Google Test.
47 // Acknowledgment: Google Test borrowed the idea of automatic test
57 #include <gtest/gtest-death-test.h>
59 #include <gtest/gtest-param-test.h>
61 #include <gtest/gtest-test-part.h>
62 #include <gtest/gtest-typed-test.h
    [all...]
  /external/protobuf/python/google/protobuf/internal/
reflection_test.py 44 # TODO(robinson): When we split this test in two, only some of these imports
45 # will be necessary in each test.
204 # Test a scalar.
219 # Helper used to test foreign messages and groups.
299 # Test simple, single-level nesting when we set a scalar.
323 # Test nesting when we add an element to a repeated field in a submessage.
330 # Do the same test, but with a repeated composite field within the
338 # Test nesting many levels deep.
542 # TODO(robinson): Test all other scalar field types.
553 # TODO(robinson): Test all other scalar field types
    [all...]
  /external/valgrind/unittest/
bigtest.cc 60 class Test{
71 Test() : Run_v_(0), Run_b_(0) {}
72 Test(int id, void_func_void_t _Run) : Run_v_(_Run), Run_b_(0) {
75 Test(int id, bool_func_void_t _Run) : Run_v_(0), Run_b_(_Run) {
89 typedef std::map<int, Test> MapOfTests;
211 the_map_of_tests[id] = Test(id, _Run);
222 std::map<int, double> map_of_counts; // test -> average run count
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectInputStreamTest.java 63 fail("Test 1: IOException expected.");
88 // Test for method int java.io.ObjectInputStream.available()
94 assertEquals("Test 1: Incorrect number of bytes;", testLength, ois.available());
107 fail("Test 1: IOException expected.");
116 // Test for method void java.io.ObjectInputStream.close()
125 fail("Test 1: IOException expected.");
136 assertFalse("Test 1: Object resolving must be disabled by default.",
139 assertTrue("Test 2: enableResolveObject did not return the previous value.",
152 fail("Test 1: IOException expected.");
161 // Test for method int java.io.ObjectInputStream.read(byte [], int, int
    [all...]
  /external/chromium/testing/gtest/src/
gtest.cc 32 // The Google C++ Testing Framework (Google Test)
126 // Indicates that this translation unit is part of Google Test's
148 // A test whose test case name or test name matches this filter is
152 // A test case whose name matches this filter is considered a death
153 // test case and will be run before test cases whose name doesn't
157 // A test filter that matches everything.
163 // The environment variable name for the test shard index
2329 Test* const test = internal::HandleExceptionsInMethodIfSupported( local
    [all...]
  /external/gtest/src/
gtest.cc 32 // The Google C++ Testing Framework (Google Test)
126 // Indicates that this translation unit is part of Google Test's
148 // A test whose test case name or test name matches this filter is
152 // A test case whose name matches this filter is considered a death
153 // test case and will be run before test cases whose name doesn't
157 // A test filter that matches everything.
163 // The environment variable name for the test shard index
2329 Test* const test = internal::HandleExceptionsInMethodIfSupported( local
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest.cc 32 // The Google C++ Testing Framework (Google Test)
126 // Indicates that this translation unit is part of Google Test's
148 // A test whose test case name or test name matches this filter is
152 // A test case whose name matches this filter is considered a death
153 // test case and will be run before test cases whose name doesn't
157 // A test filter that matches everything.
163 // The environment variable name for the test shard index
2300 Test* const test = internal::HandleExceptionsInMethodIfSupported( local
    [all...]
  /external/protobuf/gtest/src/
gtest.cc 32 // The Google C++ Testing Framework (Google Test)
119 // Indicates that this translation unit is part of Google Test's
136 // A test whose test case name or test name matches this filter is
140 // A test case whose name matches this filter is considered a death
141 // test case and will be run before test cases whose name doesn't
145 // A test filter that matches everything.
151 // The environment variable name for the test shard index
2263 Test* test = NULL; local
2282 Test* test = factory_->CreateTest(); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 626 // Regression Test for JIRA 2192
628 File file = new File("test.ser");
630 Test test = new Test(); local
633 out.writeObject(test);
637 Test another = (Test) in.readObject();
639 assertEquals(test, another);
642 //Regression Test for JIRA-224
    [all...]
  /external/chromium/testing/gtest/include/gtest/
gtest.h 32 // The Google C++ Testing Framework (Google Test)
34 // This header file defines the public API for Google Test. It should be
35 // included by any test program that uses Google Test.
47 // Acknowledgment: Google Test borrowed the idea of automatic test
59 #include "gtest/gtest-death-test.h"
61 #include "gtest/gtest-param-test.h"
64 #include "gtest/gtest-test-part.h"
65 #include "gtest/gtest-typed-test.h
    [all...]
  /external/gtest/include/gtest/
gtest.h 32 // The Google C++ Testing Framework (Google Test)
34 // This header file defines the public API for Google Test. It should be
35 // included by any test program that uses Google Test.
47 // Acknowledgment: Google Test borrowed the idea of automatic test
59 #include "gtest/gtest-death-test.h"
61 #include "gtest/gtest-param-test.h"
64 #include "gtest/gtest-test-part.h"
65 #include "gtest/gtest-typed-test.h
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest.h 32 // The Google C++ Testing Framework (Google Test)
34 // This header file defines the public API for Google Test. It should be
35 // included by any test program that uses Google Test.
47 // Acknowledgment: Google Test borrowed the idea of automatic test
59 #include "gtest/gtest-death-test.h"
61 #include "gtest/gtest-param-test.h"
64 #include "gtest/gtest-test-part.h"
65 #include "gtest/gtest-typed-test.h
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 625 // Regression Test for JIRA 2192
627 File file = new File("test.ser");
629 Test test = new Test(); local
632 out.writeObject(test);
636 Test another = (Test) in.readObject();
638 assertEquals(test, another);
641 //Regression Test for JIRA-224
    [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc 32 // Tests for Google Test itself. This verifies that the basic constructs of
33 // Google Test work.
40 TEST(CommandLineFlagsTest, CanBeAccessedInCodeOnceGTestHIsIncluded) {
60 // Indicates that this translation unit is part of Google Test's
89 // that are needed to test it.
143 using testing::Test;
199 TEST(GetRandomSeedFromFlagTest, HandlesZero) {
205 TEST(GetRandomSeedFromFlagTest, PreservesValidSeed) {
213 TEST(GetRandomSeedFromFlagTest, NormalizesInvalidSeed) {
223 TEST(GetNextRandomSeedTest, WorksForValidInput)
    [all...]
  /external/valgrind/tsan/
thread_sanitizer.cc 32 // http://code.google.com/p/data-race-test
    [all...]

Completed in 7316 milliseconds

1 2 3 4 56 7