Searched refs:staticOnly (Results 1 – 1 of 1) sorted by relevance
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/ |
D | ModelClass.java | 252 public ModelMethod[] getMethods(String name, List<ModelClass> args, boolean staticOnly, in getMethods() argument 258 (!staticOnly || method.isStatic()) && in getMethods() 297 public ModelMethod getMethod(String name, List<ModelClass> args, boolean staticOnly, in getMethod() argument 299 ModelMethod[] methods = getMethods(name, args, staticOnly, allowProtected); in getMethod() 300 L.d("looking methods for %s. static only ? %s . method count: %d", name, staticOnly, in getMethod() 394 public Callable findGetterOrField(String name, boolean staticOnly) { in findGetterOrField() argument 407 getMethods(methodName, new ArrayList<ModelClass>(), staticOnly, false); in findGetterOrField() 409 if (method.isPublic() && (!staticOnly || method.isStatic()) && in findGetterOrField() 438 if (staticOnly) { in findGetterOrField() 530 public List<ModelMethod> findMethods(String name, boolean staticOnly) { in findMethods() argument [all …]
|