Home
last modified time | relevance | path

Searched refs:PARAM_START (Results 1 – 2 of 2) sorted by relevance

/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
DBusinessLogicHostTestBase.java42 private static final String PARAM_START = "["; field in BusinessLogicHostTestBase
60 if (methodName.contains(PARAM_START)) { in executeBusinessLogic()
62 methodName = methodName.substring(0, methodName.lastIndexOf(PARAM_START)); in executeBusinessLogic()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
DSubPlanHelper.java64 private static final String PARAM_START = "["; field in SubPlanHelper
283 if (test == null || !test.contains(PARAM_START)) { in addIncludeToSubPlan()
285 } else if (test.contains(PARAM_START)) { in addIncludeToSubPlan()
287 subPlan.addIncludeFilter(str.substring(0, str.lastIndexOf(PARAM_START))); in addIncludeToSubPlan()
301 if (test == null || !test.contains(PARAM_START)) { in addExcludeToSubPlan()