Searched defs:test (Results 176 - 200 of 297) sorted by relevance

1234567891011>>

/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
H A DUT_primitives.java17 package com.android.rs.test;
H A DUT_refcount.java17 package com.android.rs.test;
H A DUT_unsigned.java17 package com.android.rs.test;
H A DUT_vector.java17 package com.android.rs.test;
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DRunData.java17 package com.test.tilebenchmark;
/frameworks/compile/libbcc/tests/data/src/
H A Dfilm.c3 int test(int x, int y) { function
36 int a = test(x,y);
/frameworks/native/opengl/tests/testPauseResume/src/com/android/test/
H A DTestActivity.java17 package com.android.test;
H A DTestView.java17 package com.android.test;
/frameworks/testing/androidtestlib/src/com/android/test/runner/
H A DAndroidRunnerBuilder.java16 package com.android.test.runner;
20 import com.android.test.runner.junit3.AndroidJUnit3Builder;
21 import com.android.test.runner.junit4.AndroidJUnit4Builder;
H A DTestRequest.java16 package com.android.test.runner;
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/
H A DAndroidJUnit3Builder.java16 package com.android.test.runner.junit3;
56 return android.test.AndroidTestCase.class.isAssignableFrom(testClass);
60 return android.test.InstrumentationTestCase.class.isAssignableFrom(testClass);
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit4/
H A DAndroidJUnit4Builder.java16 package com.android.test.runner.junit4;
20 import com.android.test.InjectContext;
21 import com.android.test.InjectInstrumentation;
/frameworks/testing/androidtestlib/tests/src/com/android/test/runner/
H A DAndroidJUnitRunnerTest.java16 package com.android.test.runner;
H A DClassPathScannerTest.java16 package com.android.test.runner;
20 import com.android.test.InjectContext;
21 import com.android.test.runner.ClassPathScanner.ExcludePackageNameFilter;
22 import com.android.test.runner.ClassPathScanner.ExternalClassNameFilter;
23 import com.android.test.runner.ClassPathScanner.InclusivePackageNameFilter;
H A DTestRequestBuilderTest.java16 package com.android.test.runner;
19 import android.test.suitebuilder.annotation.SmallTest;
21 import com.android.test.InjectInstrumentation;
/frameworks/base/test-runner/src/android/test/
H A DTouchUtils.java17 package android.test;
39 * @param test The test case that is being run
41 * @deprecated {@link android.test.ActivityInstrumentationTestCase} is deprecated in favor of
42 * {@link android.test.ActivityInstrumentationTestCase2}, which provides more options for
43 * configuring the Activity under test
46 public static void dragQuarterScreenDown(ActivityInstrumentationTestCase test) { argument
47 dragQuarterScreenDown(test, test.getActivity());
52 * @param test Th
55 dragQuarterScreenDown(InstrumentationTestCase test, Activity activity) argument
76 dragQuarterScreenUp(ActivityInstrumentationTestCase test) argument
85 dragQuarterScreenUp(InstrumentationTestCase test, Activity activity) argument
109 scrollToBottom(ActivityInstrumentationTestCase test, ViewGroup v) argument
121 scrollToBottom(InstrumentationTestCase test, Activity activity, ViewGroup v) argument
150 scrollToTop(ActivityInstrumentationTestCase test, ViewGroup v) argument
162 scrollToTop(InstrumentationTestCase test, Activity activity, ViewGroup v) argument
189 dragViewToBottom(ActivityInstrumentationTestCase test, View v) argument
200 dragViewToBottom(InstrumentationTestCase test, Activity activity, View v) argument
216 dragViewToBottom(ActivityInstrumentationTestCase test, View v, int stepCount) argument
229 dragViewToBottom(InstrumentationTestCase test, Activity activity, View v, int stepCount) argument
252 tapView(InstrumentationTestCase test, View v) argument
292 touchAndCancelView(InstrumentationTestCase test, View v) argument
327 clickView(InstrumentationTestCase test, View v) argument
378 longClickView(ActivityInstrumentationTestCase test, View v) argument
388 longClickView(InstrumentationTestCase test, View v) argument
438 dragViewToTop(ActivityInstrumentationTestCase test, View v) argument
454 dragViewToTop(ActivityInstrumentationTestCase test, View v, int stepCount) argument
464 dragViewToTop(InstrumentationTestCase test, View v) argument
475 dragViewToTop(InstrumentationTestCase test, View v, int stepCount) argument
548 dragViewBy(ActivityInstrumentationTestCase test, View v, int gravity, int deltaX, int deltaY) argument
570 dragViewBy(InstrumentationTestCase test, View v, int gravity, int deltaX, int deltaY) argument
603 dragViewTo(ActivityInstrumentationTestCase test, View v, int gravity, int toX, int toY) argument
620 dragViewTo(InstrumentationTestCase test, View v, int gravity, int toX, int toY) argument
654 dragViewToX(ActivityInstrumentationTestCase test, View v, int gravity, int toX) argument
670 dragViewToX(InstrumentationTestCase test, View v, int gravity, int toX) argument
701 dragViewToY(ActivityInstrumentationTestCase test, View v, int gravity, int toY) argument
717 dragViewToY(InstrumentationTestCase test, View v, int gravity, int toY) argument
748 drag(ActivityInstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
763 drag(InstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
[all...]
H A DApplicationTestCase.java17 package android.test;
26 * This test case provides a framework in which you can test Application classes in
34 * In order to support the lifecycle of a Application, this test case will make the
37 * <ul><li>The test case will not call onCreate() until your test calls
39 * to set up or adjust any additional framework or test logic before
41 * <li>After your test completes, the test case {@link #tearDown} method is
50 * dependencies, and thus perform a true unit test
[all...]
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DTestSuiteBuilderTest.java17 package android.test.suitebuilder;
20 import static android.test.suitebuilder.ListTestCaseNames.getTestCaseNames;
21 import android.test.suitebuilder.examples.OuterTest;
22 import android.test.suitebuilder.examples.suppress.SuppressedTest;
23 import android.test.suitebuilder.examples.error.ErrorTest;
24 import android.test.suitebuilder.examples.error.FailingTest;
25 import android.test.suitebuilder.examples.nested.Level1Test;
26 import android.test.suitebuilder.examples.nested.nested.Level2Test;
27 import android.test.suitebuilder.examples.simple.SimpleTest;
28 import android.test
182 addError(Test test, Throwable t) argument
186 addFailure(Test test, AssertionFailedError t) argument
190 endTest(Test test) argument
193 startTest(Test test) argument
213 testName(Test test) argument
[all...]
H A DAssignableFromTest.java17 package android.test.suitebuilder;
H A DListTestCaseNames.java17 package android.test.suitebuilder;
32 for (Test test : tests) {
33 if (test instanceof TestCase) {
34 testCaseNames.add(((TestCase) test).getName());
35 } else if (test instanceof TestSuite) {
36 testCaseNames.addAll(getTestCaseNames((TestSuite) test));
43 * Returns a list of test class and method names for each TestCase in suite.
48 for (Test test : tests) {
49 if (test instanceof TestCase) {
50 String className = test
[all...]
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAbstractLayoutTest.java17 package com.android.test.layout;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DAdvancedGradientsActivity.java17 package com.android.test.hwui;
H A DAlphaLayersActivity.java17 package com.android.test.hwui;
H A DBitmapsRectActivity.java17 package com.android.test.hwui;
H A DColoredRectsActivity.java17 package com.android.test.hwui;

Completed in 595 milliseconds

1234567891011>>