/frameworks/base/test-runner/src/android/test/ |
D | TouchUtils.java | 52 public static void dragQuarterScreenDown(ActivityInstrumentationTestCase test) { in dragQuarterScreenDown() 61 public static void dragQuarterScreenDown(InstrumentationTestCase test, Activity activity) { in dragQuarterScreenDown() 82 public static void dragQuarterScreenUp(ActivityInstrumentationTestCase test) { in dragQuarterScreenUp() 91 public static void dragQuarterScreenUp(InstrumentationTestCase test, Activity activity) { in dragQuarterScreenUp() 115 public static void scrollToBottom(ActivityInstrumentationTestCase test, ViewGroup v) { in scrollToBottom() 127 public static void scrollToBottom(InstrumentationTestCase test, Activity activity, in scrollToBottom() 150 public static void scrollToTop(ActivityInstrumentationTestCase test, ViewGroup v) { in scrollToTop() 162 public static void scrollToTop(InstrumentationTestCase test, Activity activity, ViewGroup v) { in scrollToTop() 183 public static void dragViewToBottom(ActivityInstrumentationTestCase test, View v) { in dragViewToBottom() 194 public static void dragViewToBottom(InstrumentationTestCase test, Activity activity, View v) { in dragViewToBottom() [all …]
|
D | TestCaseUtil.java | 45 public static List<String> getTestCaseNames(Test test, boolean flatten) { in getTestCaseNames() 54 public static List<? extends Test> getTests(Test test, boolean flatten) { in getTests() 58 private static List<? extends Test> getTests(Test test, boolean flatten, in getTests() 124 public static String getTestName(Test test) { in getTestName() 147 Test test = (Test) enumeration.nextElement(); in getTestAtIndex() local 159 Test test = invokeSuiteMethodIfPossible(testClass, in createTestSuite() local
|
D | TestPrinter.java | 89 private void failed(Test test, Throwable t) { in failed() 94 public void addError(Test test, Throwable t) { in addError() 98 public void addFailure(Test test, junit.framework.AssertionFailedError t) { in addFailure() 102 public void endTest(Test test) { in endTest() 110 public void startTest(Test test) { in startTest()
|
D | AndroidTestRunner.java | 68 public void setTest(Test test) { in setTest() 72 private void setTest(Test test, Class<? extends Test> testClass) { in setTest() 202 private void setContextIfAndroidTestCase(Test test, Context context, Context testContext) { in setContextIfAndroidTestCase() 214 Test test, Instrumentation instrumentation) { in setInstrumentationIfInstrumentationTestCase() 221 Test test, PerformanceResultsWriter writer) { in setPerformanceWriterIfPerformanceCollectorTestCase() 258 public void testFailed(int status, Test test, Throwable t) { in testFailed()
|
D | TestRunner.java | 101 public void startTest(Test test) { in startTest() 111 public void endTest(Test test) { in endTest() 124 public void addError(Test test, Throwable t) { in addError() 129 public void addFailure(Test test, junit.framework.AssertionFailedError t) { in addFailure() 290 Runnable test = (Runnable) clazz.newInstance(); in run() local 335 junit.framework.TestCase test = (junit.framework.TestCase) clazz.newInstance(); in run() local 353 Test test = suite.testAt(j); in run() local 448 Runnable test = (Runnable) testCase; in runInPerformanceMode() local 495 junit.framework.TestCase test = (junit.framework.TestCase) clazz.newInstance(); in runSingleJunitTest() local
|
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/ |
D | TestResultInstrumentation.java | 52 public void addError(Test test, Throwable t) { in addError() 58 public void addFailure(Test test, AssertionFailedError t) { in addFailure() 64 public void endTest(Test test) { in endTest() 71 public void startTest(Test test) { in startTest() 79 private void show(String tag, Test test, Throwable t) { in show()
|
/frameworks/support/tests/java/android/support/v4/provider/ |
D | DocumentFileTest.java | 114 final DocumentTest test = new DocumentTest() { in testSimple() local 131 final DocumentTest test = new DocumentTest() { in testTraverse() local 163 final DocumentTest test = new DocumentTest() { in testReadAndWrite() local 194 final DocumentTest test = new DocumentTest() { in testMimes() local 219 final DocumentTest test = new DocumentTest() { in testCreate() local 263 final DocumentTest test = new DocumentTest() { in testDelete() local 293 final DocumentTest test = new DocumentTest() { in testRename() local
|
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/androidTest/debug/com/android/layoutlib/test/myapplication/test/ |
D | BuildConfig.class | ... BuildConfig.java
package com.android.layoutlib.test.myapplication.test
public final com.android. ... |
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/ |
D | UnitTestSuiteBuilderTest.java | 73 public void addError(Test test, Throwable t) { in addError() 77 public void addFailure(Test test, AssertionFailedError t) { in addFailure() 81 public void endTest(Test test) { in endTest() 84 public void startTest(Test test) { in startTest() 104 private String testName(Test test) { in testName()
|
D | InstrumentationTestSuiteBuilderTest.java | 80 public void addError(Test test, Throwable t) { in addError() 84 public void addFailure(Test test, AssertionFailedError t) { in addFailure() 88 public void endTest(Test test) { in endTest() 91 public void startTest(Test test) { in startTest() 111 private String testName(Test test) { in testName()
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | KeyUtils.java | 45 public static void tapMenuKey(ActivityInstrumentationTestCase test) { in tapMenuKey() 58 public static void chordMenuKey(ActivityInstrumentationTestCase test, char shortcutKey) { in chordMenuKey() 77 public static void longClick(ActivityInstrumentationTestCase test) { in longClick()
|
D | TouchModeFlexibleAsserts.java | 36 public static void assertInTouchModeAfterClick(InstrumentationTestCase test, View viewToTouch) { in assertInTouchModeAfterClick() 48 public static void assertInTouchModeAfterTap(InstrumentationTestCase test, View viewToTouch) { in assertInTouchModeAfterTap() 60 …public static void assertNotInTouchModeAfterKey(InstrumentationTestCase test, int keyCode, View ch… in assertNotInTouchModeAfterKey()
|
/frameworks/base/test-runner/tests/src/android/test/ |
D | TestCaseUtilTest.java | 47 Test test = TestCaseUtil.createTestSuite(OneTestTestCase.class); in testCreateTestForTestCase() local 52 Test test = TestCaseUtil.createTestSuite(TwoTestsInTestSuite.class); in testCreateTestForTestSuiteWithSuiteMethod() local 57 Test test = TestCaseUtil.createTestSuite(OneTestTestCaseWithSuite.class); in testCreateTestForTestCaseWithSuiteMethod() local
|
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/ |
D | R.class | ... R.java
package com.android.layoutlib.test.myapplication
public final com.android.layoutlib. ... |
D | R$attr.class | ... R.java
package com.android.layoutlib.test.myapplication
public final com.android.layoutlib. ... |
D | R$drawable.class | ... R.java
package com.android.layoutlib.test.myapplication
public final com.android.layoutlib. ... |
D | R$menu.class | ... R.java
package com.android.layoutlib.test.myapplication
public final com.android.layoutlib. ... |
D | R$style.class | ... R.java
package com.android.layoutlib.test.myapplication
public final com.android.layoutlib. ... |
D | R$dimen.class | ... R.java
package com.android.layoutlib.test.myapplication
public final com.android.layoutlib. ... |
D | R$integer.class | ... R.java
package com.android.layoutlib.test.myapplication
public final com.android.layoutlib. ... |
D | R$array.class | ... R.java
package com.android.layoutlib.test.myapplication
public final com.android.layoutlib. ... |
D | R$string.class | ... R.java
package com.android.layoutlib.test.myapplication
public final com.android.layoutlib. ... |
D | BuildConfig.class | ... BuildConfig.java
package com.android.layoutlib.test.myapplication
public final com.android.layoutlib. ... |
/frameworks/compile/mclinker/unittests/ |
D | SectionDataTest.cpp | 39 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0); in TEST_F() local 49 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0); in TEST_F() local
|
D | FragmentTest.cpp | 38 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0); in TEST_F() local 53 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0); in TEST_F() local
|