Home | History | Annotate | Download | only in widget

Lines Matching refs:SHORT

916         static final int SHORT = 3;
961 case SHORT:
962 this.value = (short)in.readInt();
1028 case SHORT:
1029 out.writeInt((Short) this.value);
1084 case SHORT:
1085 return short.class;
2064 * Call a method taking one short on a view in the layout for this RemoteViews.
2070 public void setShort(int viewId, String methodName, short value) {
2071 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.SHORT, value));