Searched refs:methodName (Results 1 – 6 of 6) sorted by relevance
57 String methodName = mTestCase.getMethodName(); in executeBusinessLogic() local59 + "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()
201 String methodName = ruleConditionJSONObject.getString(METHOD_NAME); in extractRuleConditionList() local203 if (methodName.startsWith("!")) { in extractRuleConditionList()204 methodName = methodName.substring(1); // remove negation from method name string in extractRuleConditionList()213 ruleConditions.add(new BusinessLogicRuleCondition(methodName, methodArgs, negated)); in extractRuleConditionList()219 ruleConditions.add(new BusinessLogicRuleCondition(methodName, methodArgs, negated)); in extractRuleConditionList()232 String methodName = ruleActionJSONObject.getString(METHOD_NAME); in extractRuleActionList() local239 ruleActions.add(new BusinessLogicRuleAction(methodName, methodArgs)); in extractRuleActionList()245 ruleActions.add(new BusinessLogicRuleAction(methodName, methodArgs)); in extractRuleActionList()
300 public BusinessLogicRuleCondition(String methodName, List<String> methodArgs, in BusinessLogicRuleCondition() argument302 mMethodName = methodName; in BusinessLogicRuleCondition()327 public BusinessLogicRuleAction(String methodName, List<String> methodArgs) { in BusinessLogicRuleAction() argument328 mMethodName = methodName; in BusinessLogicRuleAction()
184 protected abstract ResolvedMethod getResolvedMethod(Class cls, String methodName, in getResolvedMethod() argument
82 protected ResolvedMethod getResolvedMethod(Class cls, String methodName, String... args) in getResolvedMethod() argument84 List<Method> nameMatches = getMethodsWithName(cls, methodName); in getResolvedMethod()121 "BusinessLogic: Failed to invoke action method %s with args: %s", methodName, in getResolvedMethod()
META-INF/ META-INF/MANIFEST.MF com/android/compatibility/common/ ...