HomeSort by relevance Sort by last modified time
    Searched defs:TestResult (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_results_unittest.py 31 from test_results import TestResult
36 result = TestResult("foo")
42 result = TestResult(filename='foo',
46 new_result = TestResult.loads(s)
47 self.assertTrue(isinstance(new_result, TestResult))
test_results.py 34 class TestResult(object):
single_test_runner.py 36 from webkitpy.layout_tests.layout_package.test_results import TestResult
114 # Returns a dummy TestResult. We don't have to rebase for reftests.
115 return TestResult(self._filename)
138 return TestResult(self._filename, failures, driver_output.test_time)
220 return TestResult(self._filename, failures, driver_output.test_time)
226 return TestResult(self._filename, failures, driver_output.test_time)
285 return TestResult(self._filename, failures, total_test_time)
288 return TestResult(self._filename, failures, total_test_time)
295 return TestResult(self._filename, failures, total_test_time)
json_results_generator.py 65 # FIXME: We already have a TestResult class in test_results.py
66 class TestResult(object):
112 MODIFIER_TO_CHAR = {TestResult.NONE: PASS_RESULT,
113 TestResult.DISABLED: SKIP_RESULT,
114 TestResult.FAILS: FAIL_RESULT,
115 TestResult.FLAKY: FLAKY_RESULT}
158 test_results_map: A dictionary that maps test_name to TestResult.
320 if test_result.modifier == TestResult.DISABLED:
  /development/testrunner/
am_instrument_parser.py 35 test_results (list of am_output_parser.TestResult)
52 test_result = TestResult(result_block_string)
124 class TestResult(object):
  /external/chromium/chrome/browser/diagnostics/
diagnostics_model.h 20 enum TestResult {
54 virtual TestResult GetResult() = 0;
  /external/chromium/chrome/browser/remoting/
directory_add_request_unittest.cc 28 void TestResult(int response_code, const std::string& data,
50 TestResult(200, "{\"data\":{\"kind\":\"chromoting#host\","
57 TestResult(400, "{\"error\":{\"errors\":[{\"domain\":\"global\","
66 TestResult(400, "{\"error\":{\"errors\":[{\"domain\":\"global\","
74 TestResult(401, "{\"error\":{\"errors\":[{\"domain\":\"global\","
  /external/harfbuzz_ng/src/hb-icu-le/
letest.h 47 struct TestResult
56 typedef struct TestResult TestResult;
  /external/icu4c/test/letest/
letest.h 35 struct TestResult
44 typedef struct TestResult TestResult;
  /external/embunit/inc/
Test.h 38 typedef struct __TestResult TestResult;
45 typedef void(*TestRunFunction)(void*,TestResult*);
  /external/llvm/utils/lit/lit/
Test.py 5 class TestResult:
14 PASS = TestResult('PASS', False)
15 XFAIL = TestResult('XFAIL', False)
16 FAIL = TestResult('FAIL', True)
17 XPASS = TestResult('XPASS', True)
18 UNRESOLVED = TestResult('UNRESOLVED', True)
19 UNSUPPORTED = TestResult('UNSUPPORTED', False)
  /external/llvm/tools/bugpoint/
ListReducer.h 30 enum TestResult {
44 virtual TestResult doTest(std::vector<ElTy> &Prefix,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
PassFailButtons.java 316 TestResult.setPassedResult(activity, testId, testDetails);
318 TestResult.setFailedResult(activity, testId, testDetails);
TestResult.java 29 public class TestResult {
55 private static Intent createResult(Activity activity, int testResult, String testName,
59 data.putExtra(TEST_RESULT, testResult);
65 * Convert the test activity's result into a {@link TestResult}. Only meant to be used by
68 static TestResult fromActivityResult(int resultCode, Intent data) {
72 return new TestResult(name, result, details);
75 private TestResult(String name, int result, String details) {
  /external/junit/src/junit/framework/
TestResult.java 10 * A <code>TestResult</code> collects the results of executing
18 public class TestResult extends Object {
27 public TestResult() {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/intents/
CameraIntentsActivity.java 41 import com.android.cts.verifier.TestResult;
411 TestResult.setPassedResult(this, "CameraIntentsActivity",
415 TestResult.setFailedResult(this, "CameraIntentsActivity",
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
PhotoCaptureActivity.java 46 import com.android.cts.verifier.TestResult;
329 TestResult.setPassedResult(this, getClass().getName(),
332 TestResult.setFailedResult(this, getClass().getName(),
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/orientation/
CameraOrientationActivity.java 36 import com.android.cts.verifier.TestResult;
347 TestResult.setPassedResult(this, "CameraOrientationActivity",
351 TestResult.setFailedResult(this, "CameraOrientationActivity",
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTestResultParser.java 96 private TestResult mCurrentTestResult = null;
119 private static class TestResult {
146 * a current stack trace, it returns an error string. Use {@link TestResult#hasStackTrace}
158 /** Provides a more user readable string for TestResult, if possible */
234 * Returns the current TestResult for test in progress, or a new default one.
236 * @return The TestResult for the current test run
238 private TestResult getCurrentTestResult() {
240 mCurrentTestResult = new TestResult();
247 * Clears out the current TestResult.
483 TestResult testResult = getCurrentTestResult()
    [all...]
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
AutomaticActivity.java 121 private static class TestResult {
122 TestResult(String label, float error) {
141 final HashMap<String, TestResult> mModifierResults = new HashMap<String, TestResult>();
142 final HashMap<String, TestResult> mIndividualResults = new HashMap<String, TestResult>();
143 final HashMap<String, TestResult> mModifierDiffResults = new HashMap<String, TestResult>();
144 final HashMap<String, TestResult> mIndividualDiffResults = new HashMap<String, TestResult>();
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 451 // TestResult is not copyable.
452 class TestResult {
454 // Creates an empty TestResult.
455 TestResult();
457 // D'tor. Do not inherit from TestResult.
458 ~TestResult();
532 // We disallow copying TestResult.
533 GTEST_DISALLOW_COPY_AND_ASSIGN(TestResult);
534 }; // class TestResult
565 internal::TestResult* result() { return &result_;
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h 409 // TestResult is not copyable.
410 class TestResult {
412 // Creates an empty TestResult.
413 TestResult();
415 // D'tor. Do not inherit from TestResult.
416 ~TestResult();
513 // We disallow copying TestResult.
514 GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult);
515 }; // class TestResult
565 const TestResult* result() const
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.cc     [all...]
  /external/chromium/testing/gtest/src/
gtest.cc     [all...]
  /external/gtest/src/
gtest.cc     [all...]

Completed in 1929 milliseconds

1 2 3