HomeSort by relevance Sort by last modified time
    Searched full:testresult (Results 1 - 25 of 383) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/junit/framework/
Test.java 6 * @see TestResult
14 * Runs a test and collects its result in a TestResult instance.
16 public abstract void run(TestResult result);
Protectable.java 6 * @see TestResult
  /external/clang/test/Sema/
variadic-block.c 32 long testresult = addthem("ii", 10, 20); local
33 if (testresult != 30) {
36 testresult = addthem("idc", 30, 40.0, 'a');
37 if (testresult != (70+'a')) {
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
test_root.rs 11 typedef struct TestResult {
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
test_root.rs 11 typedef struct TestResult {
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
test_root.rs 11 typedef struct TestResult {
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
test_root.rs 11 typedef struct TestResult {
shared.rsh 10 } TestResult;
11 //TestResult *g_results;
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
test_root.rs 11 typedef struct TestResult {
shared.rsh 10 } TestResult;
11 //TestResult *g_results;
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
test_root.rs 11 typedef struct TestResult {
shared.rsh 10 } TestResult;
11 //TestResult *g_results;
  /external/compiler-rt/test/BlocksRuntime/
variadic.c 52 long testresult = addthem("ii", 10, 20); local
53 if (testresult != 30) {
54 printf("got wrong result: %ld\n", testresult);
57 testresult = addthem("idc", 30, 40.0, 'a');
58 if (testresult != (70+'a')) {
59 printf("got different wrong result: %ld\n", testresult);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestSuite.java 20 import junit.framework.TestResult;
42 public void run(TestResult testResult) {
43 mWrappedTestSuite.run(new SensorCtsTestResult(mContext, testResult));
62 public void runTest(Test test, TestResult testResult) {
63 mWrappedTestSuite.runTest(test, testResult);
  /external/icu/icu4c/source/test/letest/
letest.h 40 struct TestResult
49 typedef struct TestResult TestResult;
xmlreader.h 21 TestResult *expected);
  /external/junit/src/junit/extensions/
TestDecorator.java 5 import junit.framework.TestResult;
23 public void basicRun(TestResult result) {
31 public void run(TestResult result) {
RepeatedTest.java 4 import junit.framework.TestResult;
26 public void run(TestResult result) {
  /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/icu/icu4c/source/test/perf/leperf/
xmlreader.h 21 TestResult *expected);
  /external/junit/src/org/junit/experimental/results/
PrintableResult.java 19 * assertThat(testResult(HasExpectedException.class), isSuccessful());
26 public static PrintableResult testResult(Class<?> type) {
27 return testResult(Request.aClass(type));
33 public static PrintableResult testResult(Request request) {
  /external/jsoncpp/src/test_lib_json/
jsontest.cpp 74 // class TestResult
77 TestResult::TestResult()
90 TestResult::setTestName( const std::string &name )
95 TestResult &
96 TestResult::addFailure( const char *file, unsigned int line,
124 TestResult::addFailureInfo( const char *file, unsigned int line,
139 TestResult &
140 TestResult::popPredicateContext()
161 TestResult::failed() cons
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
BooleanTest.java 48 public String getResult(gUnitTestResult testResult) {
49 if ( testResult.isLexerTest() ) {
50 if ( testResult.isSuccess() ) return "OK";
53 return testResult.getError();
56 return (testResult.isSuccess())? "OK" : "FAIL";
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResult.java 31 public class TestResult {
71 private static Intent createResult(Activity activity, int testResult, String testName,
74 addResultData(data, testResult, testName, testDetails, reportLog);
78 public static void addResultData(Intent intent, int testResult, String testName,
81 intent.putExtra(TEST_RESULT, testResult);
87 * Convert the test activity's result into a {@link TestResult}. Only meant to be used by
90 static TestResult fromActivityResult(int resultCode, Intent data) {
95 return new TestResult(name, result, details, reportLog);
98 private TestResult(
  /external/embunit/inc/
TestResult.h 33 * $Id: TestResult.h,v 1.7 2004/02/10 16:19:29 arms22 Exp $
42 /*typedef struct __TestResult TestResult;*//* -> Test.h*/
61 void TestResult_init(TestResult* self,TestListner* listner);
62 void TestResult_startTest(TestResult* self,Test* test);
63 void TestResult_endTest(TestResult* self,Test* test);
64 void TestResult_addFailure(TestResult* self,Test* test,const char* msg,int line,const char* file);

Completed in 632 milliseconds

1 2 3 4 5 6 7 8 91011>>