Home
last modified time | relevance | path

Searched defs:testId (Results 1 – 25 of 29) sorted by relevance

12

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DRsPackColorTo8888Test.java35 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach()
68 private void float3input(long seed, int testId) { in float3input()
95 private void float4input(long seed, int testId) { in float4input()
DInitTest.java29 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach()
DAllocationResize.java31 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach()
DRsUnpackColor8888Test.java29 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach()
DGetElementAt.java36 public void forEach(int testId, Allocation mOut) throws RSRuntimeException { in forEach()
DClearObjectTest.java42 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
DGoNegRequesterTestActivity.java30 protected ReqTestCase getTestCase(Context context, String testId) { in getTestCase()
DP2pClientTestActivity.java30 protected ReqTestCase getTestCase(Context context, String testId) { in getTestCase()
DServiceRequesterTestActivity.java30 protected ReqTestCase getTestCase(Context context, String testId) { in getTestCase()
DRequesterTestActivity.java102 protected abstract ReqTestCase getTestCase(Context context, String testId); in getTestCase()
115 String testId = (String) getIntent().getSerializableExtra( in onCreate() local
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
DCtsXmlResultReporterTest.java142 final TestIdentifier testId = new TestIdentifier("com.foo.FooTest", "testFoo"); in testSinglePass() local
175 final TestIdentifier testId = new TestIdentifier("FooTest", "testFoo"); in testSingleFail() local
207 final TestIdentifier testId = new TestIdentifier("FooTest", "testFoo"); in testIncludeTestLogTags() local
233 … final TestIdentifier testId = new TestIdentifier("android.tests.devicesetup", "TestDeviceSetup"); in testDeviceSetup() local
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DSingleJUnitTestResultParser.java39 …public SingleJUnitTestResultParser(TestIdentifier testId, Collection<ITestRunListener> listeners) { in SingleJUnitTestResultParser()
44 public SingleJUnitTestResultParser(TestIdentifier testId, ITestRunListener listener) { in SingleJUnitTestResultParser()
DGeeTestResultParser.java415 String[] testId = identifier.split("\\."); in parseTestIdentifier() local
488 TestIdentifier testId = new TestIdentifier(mFakePackagePrefix + testResult.mTestClass, in processTestStartedTag() local
508 TestIdentifier testId = new TestIdentifier(mFakePackagePrefix + testResult.mTestClass, in doTestEnded() local
621 TestIdentifier testId = new TestIdentifier(mCurrentTestResult.mTestClass, in handleTestRunFailed() local
DDeqpTestRunner.java271 private void forwardFinalizedPendingResult(TestIdentifier testId) { in forwardFinalizedPendingResult()
322 public void setTestInstances(TestIdentifier testId, Set<BatchRunConfiguration> configs) { in setTestInstances()
337 public boolean isPendingTestInstance(TestIdentifier testId, in isPendingTestInstance()
359 public void skipTest(TestIdentifier testId) { in skipTest()
374 public void abortTest(TestIdentifier testId, String errorMessage) { in abortTest()
1106 private Set<BatchRunConfiguration> getTestRunConfigs (TestIdentifier testId) { in getTestRunConfigs()
1302 private int getTestInstabilityRating(TestIdentifier testId) { in getTestInstabilityRating()
1310 private void recordTestInstability(TestIdentifier testId) { in recordTestInstability()
1314 private void clearTestInstability(TestIdentifier testId) { in clearTestInstability()
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
DTestPackageXmlParserTest.java197 final TestIdentifier testId = in testParse_instancedMultiple() local
221 final TestIdentifier testId = in testParse_instancedSingle() local
242 final TestIdentifier testId = in testParse_instancedEmptys() local
265 final TestIdentifier testId = in testParse_instancedNoInstances() local
DDeqpTestRunnerTest.java122 final TestIdentifier testId = new TestIdentifier("dEQP-GLES" in testGlesVersion() local
281 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.info", "version"); in testResultCode() local
674 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.orientation", "test"); in testRun_queryPmListFailure() local
730 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.orientation", "test"); in testRun_queryRenderabilityFailure() local
791 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.orientation", "test"); in testOrientation() local
1076 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.pixelformat", "test"); in testRun_unsupportedPixelFormat() local
2353 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.loss", "instance"); in testMultipleInstancesLossOfDeviceMidInstance() local
2878 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.interrupt", "test"); in testInterrupt_killBeforeBatch() local
2939 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.interrupt", "test"); in testInterrupt_killReportTestFailed() local
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DTestResult.java48 public static void setPassedResult(Activity activity, String testId, String testDetails) { in setPassedResult()
53 public static void setPassedResult(Activity activity, String testId, String testDetails, in setPassedResult()
60 public static void setFailedResult(Activity activity, String testId, String testDetails) { in setFailedResult()
65 public static void setFailedResult(Activity activity, String testId, String testDetails, in setFailedResult()
DDialogTestListActivity.java226 public DialogTestListItem(Context context, int nameResId, String testId) { in DialogTestListItem()
227 super(context.getString(nameResId), testId, null, null, null, null); in DialogTestListItem() local
230 public DialogTestListItem(Context context, int nameResId, String testId, in DialogTestListItem()
232 super(context.getString(nameResId), testId, testIntent, null, null, null); in DialogTestListItem() local
263 public DialogTestListItemWithIcon(Context context, int nameResId, String testId, in DialogTestListItemWithIcon()
DIntentDrivenTestActivity.java121 public TestInfo(String testId, int title, int infoText, ButtonInfo... buttons) { in TestInfo()
221 Intent[] createIntents(String testId, int buttonText); in createIntents()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
DPolicyTransparencyTestListActivity.java128 String testId = (mIsDeviceOwner ? "DO_" : "PO_") + title; in addTestsToAdapter() local
140 String testId = (mIsDeviceOwner ? "DO_" : "PO_") + title; in addTestsToAdapter() local
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
DServReqTestSuite.java33 String testId) { in getTestCase()
DGoNegReqTestSuite.java47 String testId) { in getTestCase()
DP2pClientTestSuite.java47 String testId) { in getTestCase()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DTestPackageResult.java123 public Test insertTest(TestIdentifier testId) { in insertTest()
127 private Test findTest(TestIdentifier testId, boolean insertIfMissing) { in findTest()
146 public Test findTest(TestIdentifier testId) { in findTest()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/deskclock/
DDeskClockTestsActivity.java170 public Intent[] createIntents(String testId, int buttonText) { in createIntents()

12