Lines Matching defs:method

154         for (HashMap<String, InverseDescription> method : mStore.inverseMethods.values()) {
155 for (InverseDescription inverseDescription : method.values()) {
178 public void addRenamedMethod(String attribute, String declaringClass, String method,
187 declaredOn.getQualifiedName().toString(), method);
193 String method, TypeElement declaredOn) {
202 declaredOn.getQualifiedName().toString(), method, event);
512 for (MethodDescription method : methods.values()) {
513 if (!method.isStatic) {
514 adapters.add(method.type);
518 for (MethodDescription method : mStore.multiValueAdapters.values()) {
519 if (!method.isStatic) {
520 adapters.add(method.type);
524 for (InverseDescription method : methods.values()) {
525 if (!method.isStatic) {
526 adapters.add(method.type);
590 final MethodDescription method = mStore.multiValueAdapters.get(adapter);
591 final MultiAttributeSetter setter = createMultiAttributeSetter(method, attributes,
600 private MultiAttributeSetter createMultiAttributeSetter(MethodDescription method,
643 return new MultiAttributeSetter(adapter, supplied, method, conversions, casts);
675 adapters.get(key).method, adapterValueType.toJavaCode(),
736 adapters.get(key).method, adapterValueType.toJavaCode(),
799 setterCandidates.add(renamed.get(className).method);
817 for (ModelMethod method : methods) {
818 ModelClass[] parameterTypes = method.getParameterTypes();
820 if (method.isVoid() &&
823 bestMethod = method;
852 final String name = inverseDescription.method.isEmpty() ?
853 trimAttributeNamespace(attribute) : inverseDescription.method;
854 ModelMethod method = methodViewType.findInstanceGetter(name);
855 ModelClass returnType = method.getReturnType(null); // no parameters
862 bestMethod = method;
1041 sb.append('.').append(adapter.method).append('(');
1070 ExecutableElement method, String[] attributes, boolean takesComponent,
1074 List<? extends VariableElement> parameters = method.getParameters();
1126 public final String method;
1134 public MethodDescription(String type, String method) {
1136 this.method = method;
1140 L.d("BINARY created method desc 1 %s %s", type, method );
1143 public MethodDescription(ExecutableElement method, int numAttributes,
1145 TypeElement enclosingClass = (TypeElement) method.getEnclosingElement();
1147 this.method = method.getSimpleName().toString();
1149 this.requiresOldValue = method.getParameters().size() - argStart == numAttributes * 2;
1150 this.isStatic = method.getModifiers().contains(Modifier.STATIC);
1152 ? getQualifiedName(method.getParameters().get(0).asType())
1155 L.d("BINARY created method desc 2 %s %s, %s", type, this.method, method);
1162 return that.type.equals(this.type) && that.method.equals(this.method);
1170 return mergedHashCode(type, method);
1175 return type + "." + method + "()";
1184 public InverseDescription(String type, String method, String event) {
1185 super(type, method);
1189 public InverseDescription(ExecutableElement method, String event, boolean takesComponent) {
1190 super(method, 1, takesComponent);
1204 return mergedHashCode(type, method, event);
1459 mConverter.type + "." + mConverter.method + "(" + valueExpression + ")";
1540 .append(converter.method)
1645 void setBindingAdapterCall(String method);
1687 public void setBindingAdapterCall(String method) {
1706 public ViewGetterCall(InverseDescription inverseDescription, ModelMethod method,
1710 mMethod = method;
1744 public void setBindingAdapterCall(String method) {
1775 sb.append('.').append(mInverseDescription.method).append('(');
1797 public void setBindingAdapterCall(String method) {
1798 mBindingAdapterCall = method;