HomeSort by relevance Sort by last modified time
    Searched refs:interval (Results 226 - 250 of 777) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastSettings.java 87 // Alert reminder interval ("once" = single 2 minute reminder).
134 // alert reminder interval
135 ListPreference interval = (ListPreference) findPreference(KEY_ALERT_REMINDER_INTERVAL); local
136 interval.setSummary(interval.getEntry());
137 interval.setOnPreferenceChangeListener(new Preference.OnPreferenceChangeListener() {
  /external/v8/src/
platform-solaris.cc 723 explicit SignalSender(int interval)
725 interval_(interval) {}
749 instance_ = new SignalSender(sampler->interval());
752 ASSERT(instance_->interval_ == sampler->interval());
832 useconds_t interval = interval_ * 1000 - 100; local
833 if (full_or_half == HALF_INTERVAL) interval /= 2;
834 int result = usleep(interval);
838 "SignalSender usleep error; interval = %u, errno = %d\n",
839 interval,
866 Sampler::Sampler(Isolate* isolate, int interval)
    [all...]
  /external/chromium_org/cc/output/
output_surface.cc 141 base::TimeDelta interval) {
145 DelayBasedTimeSource::Create(interval, task_runner)));
169 base::TimeDelta interval) {
172 "interval", interval.InSecondsF());
174 frame_rate_controller_->SetTimebaseAndInterval(timebase, interval);
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
EventRecurrence.java 54 public int interval; field in class:EventRecurrence
85 sParsePartMap.put("INTERVAL", new ParseInterval());
361 if (this.interval != 0) {
362 s.append(";INTERVAL=");
363 s.append(this.interval);
483 interval == er.interval &&
515 freq = count = interval = bysecondCount = byminuteCount = byhourCount =
540 * ( ";" "INTERVAL" "=" 1*DIGIT ) /
557 * FREQ=MONTHLY;INTERVAL=2;COUNT=10;BYDAY=1SU,-1S
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_optimize.c 839 /** A live register interval */
840 struct interval struct
851 struct interval Intervals[REG_ALLOCATE_MAX_PROGRAM_TEMPS];
856 append_interval(struct interval_list *list, const struct interval *inv)
862 /** Insert interval inv into list, sorted by interval end */
864 insert_interval_by_end(struct interval_list *list, const struct interval *inv)
886 /** Remove the given interval from the interval list */
888 remove_interval(struct interval_list *list, const struct interval *inv
    [all...]
  /external/mesa3d/src/mesa/program/
prog_optimize.c 839 /** A live register interval */
840 struct interval struct
851 struct interval Intervals[REG_ALLOCATE_MAX_PROGRAM_TEMPS];
856 append_interval(struct interval_list *list, const struct interval *inv)
862 /** Insert interval inv into list, sorted by interval end */
864 insert_interval_by_end(struct interval_list *list, const struct interval *inv)
886 /** Remove the given interval from the interval list */
888 remove_interval(struct interval_list *list, const struct interval *inv
    [all...]
  /external/iproute2/misc/
rtacct.c 302 void update_db(int interval)
320 sample = (double)(incr*1000)/interval;
321 if (interval >= scan_interval) {
323 } else if (interval >= 1000) {
324 if (interval >= time_constant) {
327 double w = W*(double)interval/scan_interval;
  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_xmpp_listener.cc 84 void CloudPrintXmppListener::set_standard_ping_interval(int interval) {
85 standard_ping_interval_ = interval;
  /external/chromium_org/content/renderer/gpu/
compositor_output_surface.cc 140 base::TimeTicks timebase, base::TimeDelta interval) {
142 OnVSyncParametersChanged(timebase, interval);
  /external/chromium_org/content/renderer/media/
rtc_video_capturer.cc 93 best_format->interval = desired.interval;
video_destination_handler.cc 77 best_format->interval = desired.interval;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8DeviceMotionEventCustom.cpp 114 double interval = args[6]->NumberValue(); local
115 RefPtr<DeviceMotionData> deviceMotionData = DeviceMotionData::create(acceleration, accelerationIncludingGravity, rotationRate, intervalProvided, interval);
  /frameworks/base/services/java/com/android/server/usb/
UsbHostManager.java 103 and interval for each endpoint */
134 int interval = endpointValues[eval++]; local
136 maxPacketSize, interval);
  /frameworks/native/include/gui/
Surface.h 98 static int hook_setSwapInterval(ANativeWindow* window, int interval);
131 virtual int setSwapInterval(int interval);
238 // achieve an asynchronous swap interval
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
locale.py 126 for interval in grouping:
128 if interval == CHAR_MAX:
131 if interval == 0:
136 yield interval
137 last_interval = interval
154 for interval in _grouping_intervals(grouping):
160 groups.append(s[-interval:])
161 s = s[:-interval]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
locale.py 126 for interval in grouping:
128 if interval == CHAR_MAX:
131 if interval == 0:
136 yield interval
137 last_interval = interval
154 for interval in _grouping_intervals(grouping):
160 groups.append(s[-interval:])
161 s = s[:-interval]
    [all...]
  /external/bluetooth/bluedroid/stack/include/
gap_api.h 116 /* slave preferred parameter, minimum connection interval */
120 /* slave preferred parameter, maximum connection interval */
256 UINT16 interval);
269 GAP_API extern UINT16 GAP_ReadDiscoverableMode (UINT16 *duration, UINT16 *interval);
279 ** GAP_ERR_ILL_INQ_TIME if a bad interval or duration was passed
299 ** GAP_ERR_ILL_INQ_TIME if a bad interval or duration was passed
393 UINT16 interval);
405 GAP_API extern UINT16 GAP_ReadConnectableMode (UINT16 *duration, UINT16 *interval);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/tests/
PODIntervalTreeTest.cpp 26 // Tests for the interval tree class.
181 // These operators should not be called by the interval tree.
231 PODInterval<int> interval(left, left + length);
232 tree.add(interval);
234 LOG_ERROR("*** Adding element %s", ValueToString<PODInterval<int> >::string(interval).ascii().data());
236 addedElements.append(interval);
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
Surface.h 57 void setSwapInterval(EGLint interval);
58 bool checkForOutOfDateSwapChain(); // Returns true if swapchain changed due to resize or interval update
  /external/chromium_org/third_party/libjingle/source/talk/base/
cpumonitor_unittest.cc 50 static const int kLongInterval = 2000; // Interval longer than busy times
54 BusyThread(double load, double duration, double interval) :
55 load_(load), duration_(duration), interval_(interval) {
138 int priority, double interval, int affinity) {
142 threads.push_back(new BusyThread(cpuload, duration, interval));
358 // Tests a query less than the interval produces the same value.
363 // Test1: Set interval to large value so sampler will not update.
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
capturemanager.cc 130 if (iter->video_format.interval < highest_format.interval) {
131 highest_format.interval = iter->video_format.interval;
mutedvideocapturer.cc 47 // Called every |interval| ms. From |format|.interval given in the
64 interval_(static_cast<int>(format.interval /
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturer.cc 93 format->interval = VideoFormat::FpsToInterval(cap.maxFPS);
112 cap->maxFPS = VideoFormat::IntervalToFps(format.interval);
236 best_format->interval = desired.interval;
  /external/chromium_org/third_party/mesa/src/src/glx/
dri2.h 104 DRI2SwapInterval(Display *dpy, XID drawable, int interval);
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayApply.h 81 SkMSec interval; member in class:SkApply

Completed in 523 milliseconds

1 2 3 4 5 6 7 8 91011>>