HomeSort by relevance Sort by last modified time
    Searched full:testcase (Results 626 - 650 of 9381) sorted by null

<<21222324252627282930>>

  /external/deqp/modules/internal/
ditTestPackage.cpp 84 void init (tcu::TestCase* testCase, const std::string&)
86 testCase->init();
89 void deinit (tcu::TestCase* testCase)
91 testCase->deinit();
94 tcu::TestNode::IterateResult iterate (tcu::TestCase* testCase)
96 return testCase->iterate();
  /external/deqp/scripts/
convert_case_list_to_xml.py 25 class TestCase:
47 case = TestCase(ancestorPath, "Test Group", "TestGroup")
54 def exportCase (doc, parent, testCase):
55 #print testCase.name, testCase.caseType
56 element = doc.createElement("TestCase")
57 element.setAttribute("Name", testCase.casePath.rsplit(".", 2)[-1])
58 element.setAttribute("Description", testCase.description)
59 element.setAttribute("CaseType", testCase.caseType)
61 for child in testCase.children
    [all...]
  /external/libxml2/test/relaxng/
testsuite.xml 7 <testCase>
33 </testCase>
34 <testCase>
88 </testCase>
92 <testCase>
127 </testCase>
128 <testCase>
163 </testCase>
164 <testCase>
201 </testCase>
    [all...]
  /platform_testing/libraries/power-helper/src/com/android/helper/
PowerTestHelper.java 128 * @param testCase
132 protected void writePowerLog(String logType, String testCase, long delay)
134 writePowerLog(logType, testCase, System.currentTimeMillis(), delay);
142 * @param testCase : Test case name
147 protected void writePowerLog(String logType, String testCase, long time,
151 logType, testCase));
155 protected void writePowerLogStart(String testCase) throws IOException {
156 writePowerLog("AUTOTEST_TEST_BEGIN", testCase, 5 * 1000);
159 protected void writePowerLogEnd(String testCase) throws IOException {
160 writePowerLog("AUTOTEST_TEST_SUCCESS", testCase, 0)
    [all...]
  /system/extras/tests/sdcard/
testcase.cpp 29 #include "testcase.h"
42 TestCase::TestCase(const char *appName)
69 TestCase::~TestCase()
78 bool TestCase::runTest()
110 write(mIpc[TestCase::WRITE_TO_PARENT], buffer, str - buffer);
143 void TestCase::setIter(size_t iter)
148 void TestCase::createTimers()
171 bool TestCase::setTypeFromName(const char *test_name
    [all...]
  /external/libxml2/test/xsdtest/
xsdtest.xsl 17 <testCase>
30 </testCase>
78 <testCase>
100 </testCase>
104 <testCase>
114 </testCase>
116 <testCase>
126 </testCase>
129 <testCase>
139 </testCase>
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/story/
shared_state.py 8 It's styled on unittest.TestCase for handling test setup & teardown logic.
13 """ This method is styled on unittest.TestCase.setUpClass.
34 This method is styled on unittest.TestCase.setUp.
41 This method is styled on unittest.TestCase.tearDown.
59 This method is styled on unittest.TestCase.run.
66 This method is styled on unittest.TestCase.tearDownClass.
  /external/icu/icu4c/source/test/perf/collperf2/
collperf2.cpp     [all...]
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
ListTestCaseNames.java 20 import junit.framework.TestCase;
33 if (test instanceof TestCase) {
34 testCaseNames.add(((TestCase) test).getName());
43 * Returns a list of test class and method names for each TestCase in suite.
49 if (test instanceof TestCase) {
51 String testName = ((TestCase) test).getName();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
GenericReflectionTestsBase.java 22 import junit.framework.TestCase;
24 public class GenericReflectionTestsBase extends TestCase{
58 TestCase.assertEquals("Array does NOT contain exactly one element.", 1, array.length);
62 TestCase.assertEquals("Array has more than zero elements.", 0, array.length);
66 TestCase.assertTrue(actual.getClass().getName() + " is not instance of :" + expectedClass.getName(), expectedClass
71 TestCase.assertFalse(actual.toString() + " has not to be equal to " + expected.toString(), expected.equals(actual));
  /frameworks/compile/libbcc/tests/debuginfo/
build_test_apk.sh 17 # Creates and builds projects from a RenderScript testcase and a set of Java templates
59 sed -e "s/%ACTIVITY%/$3/g" -e "s/%PACKAGE%/$4/g" -e "s/%TESTCASE%/$5/g" -e "s/%MINSDK%/$6/g" < $src > $dest;
100 --testcase)
126 echo "Build a test project from a RS testcase and a java driver template."
131 echo " --testcase <name> The .rs testcase file with which to build the project"
148 check_required_param "$TESTCASE_PATH" "--testcase"
151 # Compute name of testcase
152 TESTCASE=`basename $TESTCASE_PATH .rs`
156 ACTIVITY="$TESTCASE";
    [all...]
  /external/deqp/executor/
xeTestCase.hpp 58 class TestCase;
101 TestCase* createCase (TestCaseType caseType, const char* name, const char* description);
110 // For adding TestCase to m_children. \todo [2012-06-15 pyry] Is the API broken perhaps?
120 class TestCase : public TestNode
123 ~TestCase (void);
127 static TestCase* createAsChild (TestGroup* parent, TestCaseType caseType, const char* name, const char* description);
130 TestCase (TestGroup* parent, TestCaseType caseType, const char* name, const char* description);
136 // Helper class for efficiently constructing TestCase hierarchy from test case list.
143 TestCase* createCase (const char* path, TestCaseType caseType);
163 void addCase (const TestCase* testCase)
    [all...]
  /external/v8/test/mjsunit/
debug-liveedit-restart-frame.js 49 function TestCase(test_scenario, expected_output) {
138 TestCase('0==', "FEDCBA=A=");
139 TestCase('1==', "FEDCBA=BA=");
140 TestCase('2==', "FEDCBA=CBA=");
141 TestCase('3==', "FEDCBA=DCBA=");
142 TestCase('4==', "FEDCBA=EDCBA=");
143 TestCase('5==', "FEDCBA=FEDCBA=");
145 TestCase('=', "FEDCBA=");
147 TestCase('C==', "FEDCBA=CBA=");
149 TestCase('B=C=A=D==', "FEDCBA=BA=CBA=A=DCBA=")
    [all...]
  /frameworks/base/core/tests/coretests/src/android/graphics/
PaintTest.java 83 HintingTestCase testCase = HINTING_TESTCASES[i];
85 paint.setTextSize(testCase.mTextSize);
87 float[] widths = new float[testCase.mText.length()];
90 paint.getTextWidths(String.valueOf(testCase.mText), widths);
91 assertEquals("Text width of '" + testCase.mText + "' without hinting is not expected.",
92 testCase.mWidthWithoutHinting, widths);
95 paint.getTextWidths(String.valueOf(testCase.mText), widths);
96 assertEquals("Text width of '" + testCase.mText + "' with hinting is not expected.",
97 testCase.mWidthWithHinting, widths);
140 for (HasGlyphTestCase testCase : HAS_GLYPH_TEST_CASES)
    [all...]
  /external/deqp/android/cts/
com.drawelements.deqp.gles2.xml 4 <TestCase name="info">
11 </TestCase>
15 <TestCase name="random">
37 </TestCase>
40 <TestCase name="unaligned_buffer">
42 </TestCase>
48 <TestCase name="fragment">
55 </TestCase>
56 <TestCase name="framebuffer">
66 </TestCase>
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
LocaleBuilderTest.java 47 String[][] TESTCASE = {
113 for (int tidx = 0; tidx < TESTCASE.length; tidx++) {
122 String method = TESTCASE[tidx][i++];
126 bld.setLanguage(TESTCASE[tidx][i++]);
128 bld.setScript(TESTCASE[tidx][i++]);
130 bld.setRegion(TESTCASE[tidx][i++]);
132 bld.setVariant(TESTCASE[tidx][i++]);
134 String key = TESTCASE[tidx][i++];
135 String type = TESTCASE[tidx][i++];
138 bld.addUnicodeLocaleAttribute(TESTCASE[tidx][i++])
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
LocaleBuilderTest.java 43 String[][] TESTCASE = {
109 for (int tidx = 0; tidx < TESTCASE.length; tidx++) {
118 String method = TESTCASE[tidx][i++];
122 bld.setLanguage(TESTCASE[tidx][i++]);
124 bld.setScript(TESTCASE[tidx][i++]);
126 bld.setRegion(TESTCASE[tidx][i++]);
128 bld.setVariant(TESTCASE[tidx][i++]);
130 String key = TESTCASE[tidx][i++];
131 String type = TESTCASE[tidx][i++];
134 bld.addUnicodeLocaleAttribute(TESTCASE[tidx][i++])
    [all...]
  /external/icu/icu4c/source/test/perf/normperf/
normperf.cpp 21 TESTCASE(0,TestICU_NFC_NFD_Text);
22 TESTCASE(1,TestICU_NFC_NFC_Text);
23 TESTCASE(2,TestICU_NFC_Orig_Text);
25 TESTCASE(3,TestICU_NFD_NFD_Text);
26 TESTCASE(4,TestICU_NFD_NFC_Text);
27 TESTCASE(5,TestICU_NFD_Orig_Text);
29 TESTCASE(6,TestICU_FCD_NFD_Text);
30 TESTCASE(7,TestICU_FCD_NFC_Text);
31 TESTCASE(8,TestICU_FCD_Orig_Text);
33 TESTCASE(9,TestWin_NFC_NFD_Text)
    [all...]
  /art/test/517-checker-builder-fallthrough/src/
Main.java 22 Class<?> c = Class.forName("TestCase");
23 Method m = c.getMethod("testCase", new Class[] { int.class });
  /build/blueprint/proptools/
typeequal_test.go 138 for _, testCase := range typeEqualTestCases {
139 testString := fmt.Sprintf("%#v, %#v -> %t", testCase.in1, testCase.in2, testCase.out)
141 got := TypeEqual(testCase.in1, testCase.in2)
143 if got != testCase.out {
146 t.Errorf(" expected: %t", testCase.out)
  /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/
CompatibilityTestTest.java 19 import junit.framework.TestCase;
21 public class CompatibilityTestTest extends TestCase {
  /cts/tests/camera/src/android/hardware/cts/
Camera_ParametersTest.java 19 import junit.framework.TestCase;
22 public class Camera_ParametersTest extends TestCase {
  /cts/tests/tests/accounts/src/android/accounts/cts/
AccountTest.java 6 import junit.framework.TestCase;
8 public class AccountTest extends TestCase {
AuthenticatorDescriptionTest.java 5 import junit.framework.TestCase;
7 public class AuthenticatorDescriptionTest extends TestCase {
ExceptionTest.java 8 import junit.framework.TestCase;
10 public class ExceptionTest extends TestCase {

Completed in 1239 milliseconds

<<21222324252627282930>>