Home | History | Annotate | Download | only in widget

Lines Matching refs:SHORT

277         static final int SHORT = 3;
317 case SHORT:
318 this.value = (short)in.readInt();
372 case SHORT:
373 out.writeInt((Short) this.value);
416 case SHORT:
417 return short.class;
794 * Call a method taking one short on a view in the layout for this RemoteViews.
800 public void setShort(int viewId, String methodName, short value) {
801 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.SHORT, value));