Home | History | Annotate | Download | only in widget

Lines Matching full:methodname

640         String methodName;
644 ReflectionActionWithoutParams(int viewId, String methodName) {
646 this.methodName = methodName;
651 this.methodName = in.readString();
657 out.writeString(this.methodName);
668 method = klass.getMethod(this.methodName);
671 + this.methodName + "()");
677 + this.methodName + "()");
684 + this.methodName + "()");
760 String methodName;
762 BitmapReflectionAction(int viewId, String methodName, Bitmap bitmap) {
765 this.methodName = methodName;
771 methodName = in.readString();
780 dest.writeString(methodName);
787 ReflectionAction ra = new ReflectionAction(viewId, methodName, ReflectionAction.BITMAP,
822 String methodName;
826 ReflectionAction(int viewId, String methodName, int type, Object value) {
828 this.methodName = methodName;
835 this.methodName = in.readString();
840 + " methodName=" + this.methodName + " type=" + this.type);
902 out.writeString(this.methodName);
907 + " methodName=" + this.methodName + " type=" + this.type);
1017 method = klass.getMethod(this.methodName, getParameterType());
1021 + this.methodName + "(" + param.getName() + ")");
1027 + this.methodName + "(" + param.getName() + ")");
1034 + this.methodName + "(" + param.getName() + ") with "
1923 * @param methodName The name of the method to call.
1926 public void setBoolean(int viewId, String methodName, boolean value) {
1927 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.BOOLEAN, value));
1934 * @param methodName The name of the method to call.
1937 public void setByte(int viewId, String methodName, byte value) {
1938 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.BYTE, value));
1945 * @param methodName The name of the method to call.
1948 public void setShort(int viewId, String methodName, short value) {
1949 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.SHORT, value));
1956 * @param methodName The name of the method to call.
1959 public void setInt(int viewId, String methodName, int value) {
1960 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.INT, value));
1967 * @param methodName The name of the method to call.
1970 public void setLong(int viewId, String methodName, long value) {
1971 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.LONG, value));
1978 * @param methodName The name of the method to call.
1981 public void setFloat(int viewId, String methodName, float value) {
1982 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.FLOAT, value));
1989 * @param methodName The name of the method to call.
1992 public void setDouble(int viewId, String methodName, double value) {
1993 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.DOUBLE, value));
2000 * @param methodName The name of the method to call.
2003 public void setChar(int viewId, String methodName, char value) {
2004 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.CHAR, value));
2011 * @param methodName The name of the method to call.
2014 public void setString(int viewId, String methodName, String value) {
2015 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.STRING, value));
2022 * @param methodName The name of the method to call.
2025 public void setCharSequence(int viewId, String methodName, CharSequence value) {
2026 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.CHAR_SEQUENCE, value));
2033 * @param methodName The name of the method to call.
2036 public void setUri(int viewId, String methodName, Uri value) {
2037 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.URI, value));
2047 * @param methodName The name of the method to call.
2050 public void setBitmap(int viewId, String methodName, Bitmap value) {
2051 addAction(new BitmapReflectionAction(viewId, methodName, value));
2058 * @param methodName The name of the method to call.
2061 public void setBundle(int viewId, String methodName, Bundle value) {
2062 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.BUNDLE, value));
2069 * @param methodName The name of the method to call.
2072 public void setIntent(int viewId, String methodName, Intent value) {
2073 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.INTENT, value));