Home
last modified time | relevance | path

Searched defs:testId (Results 1 – 25 of 28) 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()
DAllocationResize.java31 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach()
DInitTest.java29 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/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
DCtsXmlResultReporterTest.java142 final TestIdentifier testId = new TestIdentifier("com.foo.FooTest", "testFoo"); in testSinglePass() local
170 final TestIdentifier testId = new TestIdentifier("FooTest", "testFoo"); in testSingleFail() local
202 final TestIdentifier testId = new TestIdentifier("FooTest", "testFoo"); in testIncludeTestLogTags() local
228 … final TestIdentifier testId = new TestIdentifier("android.tests.devicesetup", "TestDeviceSetup"); in testDeviceSetup() local
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
DGoNegRequesterTestActivity.java30 protected ReqTestCase getTestCase(Context context, String testId) { in getTestCase()
DServiceRequesterTestActivity.java30 protected ReqTestCase getTestCase(Context context, String testId) { in getTestCase()
DP2pClientTestActivity.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/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()
320 public void setTestInstances(TestIdentifier testId, Set<BatchRunConfiguration> configs) { in setTestInstances()
335 public boolean isPendingTestInstance(TestIdentifier testId, in isPendingTestInstance()
357 public void skipTest(TestIdentifier testId) { in skipTest()
372 public void abortTest(TestIdentifier testId, String errorMessage) { in abortTest()
1044 private Set<BatchRunConfiguration> getTestRunConfigs (TestIdentifier testId) { in getTestRunConfigs()
1240 private int getTestInstabilityRating(TestIdentifier testId) { in getTestInstabilityRating()
1248 private void recordTestInstability(TestIdentifier testId) { in recordTestInstability()
1252 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.java125 final TestIdentifier testId = new TestIdentifier("dEQP-GLES" in testGlesVersion() local
284 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.info", "version"); in testResultCode() local
677 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.orientation", "test"); in testRun_queryPmListFailure() local
733 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.orientation", "test"); in testRun_queryRenderabilityFailure() local
794 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.orientation", "test"); in testOrientation() local
1079 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.pixelformat", "test"); in testRun_unsupportedPixelFormat() local
1627 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.loss", "instance"); in testMultipleInstancesLossOfDeviceMidInstance() local
2152 final TestIdentifier testId = new TestIdentifier("dEQP-GLES3.interrupt", "test"); in testInterrupt_killBeforeBatch() local
2213 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.java222 public DialogTestListItem(Context context, int nameResId, String testId) { in DialogTestListItem()
223 super(context.getString(nameResId), testId, null, null, null, null); in DialogTestListItem() local
226 public DialogTestListItem(Context context, int nameResId, String testId, in DialogTestListItem()
228 super(context.getString(nameResId), testId, testIntent, null, null, null); in DialogTestListItem() local
259 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/p2p/testcase/
DServReqTestSuite.java33 String testId) { in getTestCase()
DGoNegReqTestSuite.java47 String testId) { in getTestCase()
DP2pClientTestSuite.java47 String testId) { in getTestCase()
/cts/libs/commonutil/src/com/android/cts/util/
DReportLog.java54 public void printArray(String testId, String message, in printArray()
71 public void printValue(String testId, String message, in printValue()
81 private void doPrintArray(String testId, String message, in doPrintArray()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DTestPackageResult.java126 public Test insertTest(TestIdentifier testId) { in insertTest()
130 private Test findTest(TestIdentifier testId, boolean insertIfMissing) { in findTest()
149 public Test findTest(TestIdentifier testId) { in findTest()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/deskclock/
DDeskClockTestsActivity.java177 public Intent[] createIntents(String testId, int buttonText) { in createIntents()

12