Searched refs:methodName (Results 1 – 7 of 7) 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()
187 String methodName = ruleConditionJSONObject.getString(METHOD_NAME); in extractRuleConditionList() local189 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() local225 ruleActions.add(new BusinessLogicRuleAction(methodName, methodArgs)); in extractRuleActionList()231 ruleActions.add(new BusinessLogicRuleAction(methodName, methodArgs)); in extractRuleActionList()
292 public BusinessLogicRuleCondition(String methodName, List<String> methodArgs, in BusinessLogicRuleCondition() argument294 mMethodName = methodName; in BusinessLogicRuleCondition()319 public BusinessLogicRuleAction(String methodName, List<String> methodArgs) { in BusinessLogicRuleAction() argument320 mMethodName = methodName; in BusinessLogicRuleAction()
158 protected abstract ResolvedMethod getResolvedMethod(Class cls, String methodName, in getResolvedMethod() argument
129 protected DexMethod getMethod(DexClass clazz, String methodName, String... typeNames) { in getMethod() argument131 assertNotNull(methodName); in getMethod()135 if(methodName.equals(method.getName()) && paramTypeNames.equals(methodsParamTypeNames)){ in getMethod()139 fail("Method: " + methodName +" not present in class: " + clazz.getName()); in getMethod()140 …throw new IllegalArgumentException("Method: " + methodName +" not present in class: " + clazz.getN… in getMethod()
80 protected ResolvedMethod getResolvedMethod(Class cls, String methodName, String... args) in getResolvedMethod() argument82 List<Method> nameMatches = getMethodsWithName(cls, methodName); in getResolvedMethod()119 "BusinessLogic: Failed to invoke action method %s with args: %s", methodName, in getResolvedMethod()
META-INF/ META-INF/MANIFEST.MF com/android/compatibility/common/ ...