Searched refs:methodName (Results 1 – 5 of 5) sorted by relevance
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/ |
D | BusinessLogicHostTestBase.java | 57 String methodName = mTestCase.getMethodName(); in executeBusinessLogic() local 59 + "remote configuration.", methodName), mCanReadBusinessLogic); in executeBusinessLogic() 60 if (methodName.contains(PARAM_START)) { in executeBusinessLogic() 62 methodName = methodName.substring(0, methodName.lastIndexOf(PARAM_START)); in executeBusinessLogic() 64 String testName = String.format("%s#%s", this.getClass().getName(), methodName); in executeBusinessLogic()
|
/test/suite_harness/common/util/src/com/android/compatibility/common/util/ |
D | BusinessLogicFactory.java | 187 String methodName = ruleConditionJSONObject.getString(METHOD_NAME); in extractRuleConditionList() local 189 if (methodName.startsWith("!")) { in extractRuleConditionList() 190 methodName = methodName.substring(1); // remove negation from method name string in extractRuleConditionList() 199 ruleConditions.add(new BusinessLogicRuleCondition(methodName, methodArgs, negated)); in extractRuleConditionList() 205 ruleConditions.add(new BusinessLogicRuleCondition(methodName, methodArgs, negated)); in extractRuleConditionList() 218 String methodName = ruleActionJSONObject.getString(METHOD_NAME); in extractRuleActionList() local 225 ruleActions.add(new BusinessLogicRuleAction(methodName, methodArgs)); in extractRuleActionList() 231 ruleActions.add(new BusinessLogicRuleAction(methodName, methodArgs)); in extractRuleActionList()
|
D | BusinessLogic.java | 292 public BusinessLogicRuleCondition(String methodName, List<String> methodArgs, in BusinessLogicRuleCondition() argument 294 mMethodName = methodName; in BusinessLogicRuleCondition() 319 public BusinessLogicRuleAction(String methodName, List<String> methodArgs) { in BusinessLogicRuleAction() argument 320 mMethodName = methodName; in BusinessLogicRuleAction()
|
D | BusinessLogicExecutor.java | 180 protected abstract ResolvedMethod getResolvedMethod(Class cls, String methodName, in getResolvedMethod() argument
|
/test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/ |
D | BusinessLogicHostExecutor.java | 80 protected ResolvedMethod getResolvedMethod(Class cls, String methodName, String... args) in getResolvedMethod() argument 82 List<Method> nameMatches = getMethodsWithName(cls, methodName); in getResolvedMethod() 119 "BusinessLogic: Failed to invoke action method %s with args: %s", methodName, in getResolvedMethod()
|