HomeSort by relevance Sort by last modified time
    Searched defs:timeInterval (Results 1 - 3 of 3) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Duration.java 29 public int timeInterval;
49 * @param timeInterval Between 1 and 255 inclusive.
51 public Duration(int timeInterval, TimeUnit timeUnit) {
52 this.timeInterval = timeInterval;
57 timeInterval = in.readInt();
63 dest.writeInt(timeInterval);
ValueParser.java 88 int timeInterval = 0;
96 timeInterval = rawValue[valueIndex + 1] & 0xff;
100 return new Duration(timeInterval, timeUnit);
  /packages/apps/Camera/src/com/android/camera/
VideoController.java 168 TimeIntervalPopup timeInterval = (TimeIntervalPopup) inflater.inflate(
170 timeInterval.initialize((IconListPreference) pref);
171 timeInterval.setSettingChangedListener(this);
173 mPopup = timeInterval;

Completed in 140 milliseconds