HomeSort by relevance Sort by last modified time
    Searched refs:interval (Results 151 - 175 of 964) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/ui/gl/
gl_context_wgl.h 31 virtual void SetSwapInterval(int interval);
gl_context_glx.h 34 virtual void SetSwapInterval(int interval) OVERRIDE;
gl_context_osmesa.h 32 virtual void SetSwapInterval(int interval) OVERRIDE;
gl_context_stub.cc 36 void GLContextStub::SetSwapInterval(int interval) {
  /external/libnl/include/linux/
gen_stats.h 50 * @interval: sampling period
55 signed char interval; member in struct:gnet_estimator
  /external/skia/samplecode/
SampleDash.cpp 67 SkScalar interval[12]; local
68 size_t len = SkMin32(strlen(gStr[i]), SK_ARRAY_COUNT(interval));
70 interval[j] = SkIntToScalar(gStr[i][j] - '0');
73 SkDashPathEffect dash(interval, len, 0);
  /external/chromium_org/chrome/browser/ui/app_list/search/common/
webservice_search_provider.cc 36 base::TimeDelta interval = local
38 if (!use_throttling_ || base::Time::Now() - last_keytyped_ > interval) {
42 query_throttler_.Start(FROM_HERE, interval, start_query);
  /external/chromium_org/chrome/test/remoting/
waiter.cc 41 base::TimeDelta interval,
44 interval_(interval),
47 DCHECK(timeout > interval);
  /external/chromium_org/third_party/WebKit/Source/platform/
ThreadTimers.cpp 130 double interval = timer.repeatInterval(); local
131 timer.setNextFireTime(interval ? fireTime + interval : 0);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11gl_c.h 74 int (*glXSwapIntervalSGI) ( int interval );
75 GLint (*glXSwapIntervalMESA) ( unsigned interval );
76 int (*glXSwapIntervalEXT)( Display *dpy, GLXDrawable drw, int interval);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMTimer.cpp 41 // Chromium uses a minimum timer interval of 4ms. We'd like to go
45 // the smallest possible interval timer.
50 static inline bool shouldForwardUserGesture(int interval, int nestingLevel)
53 && interval <= maxIntervalForUserGestureForwarding
89 DOMTimer::DOMTimer(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot, int timeoutID)
96 if (shouldForwardUserGesture(interval, m_nestingLevel))
99 double intervalMilliseconds = std::max(oneMillisecond, interval * oneMillisecond);
182 // background page alignment interval, because it's impossible
  /external/chromium_org/third_party/mesa/src/docs/
MESA_swap_control.spec 46 int glXSwapIntervalMESA(unsigned int interval)
82 of zero indicates success; otherwise an error occurred. The interval
91 If <interval> is set to a value of 0, buffer swaps are not synchro-
92 nized to a video frame. The <interval> value is silently clamped to
96 The swap interval is not part of the render context state. It cannot
97 be pushed or popped. The current swap interval for the window
99 glXGetSwapIntervalMESA. The default swap interval is 0.
102 the swap interval to 1.
117 [swap interval] GetSwapInterval Z+ 0
127 Changed the default swap interval to 0
    [all...]
  /external/mesa3d/docs/
MESA_swap_control.spec 46 int glXSwapIntervalMESA(unsigned int interval)
82 of zero indicates success; otherwise an error occurred. The interval
91 If <interval> is set to a value of 0, buffer swaps are not synchro-
92 nized to a video frame. The <interval> value is silently clamped to
96 The swap interval is not part of the render context state. It cannot
97 be pushed or popped. The current swap interval for the window
99 glXGetSwapIntervalMESA. The default swap interval is 0.
102 the swap interval to 1.
117 [swap interval] GetSwapInterval Z+ 0
127 Changed the default swap interval to 0
    [all...]
  /frameworks/base/libs/common_time/
common_time_server_api.cpp 167 status_t CommonTimeServer::getMasterAnnounceInterval(int *interval) {
169 *interval = mMasterAnnounceIntervalMs;
173 status_t CommonTimeServer::setMasterAnnounceInterval(int interval) {
176 if (interval > (6 *3600000)) // Max interval is once every 6 hrs
179 if (interval < 500) // Min interval is once per 0.5 seconds
182 mMasterAnnounceIntervalMs = interval;
186 (pendingTimeout > interval)) {
195 status_t CommonTimeServer::getClientSyncInterval(int *interval) {
    [all...]
  /frameworks/av/media/common_time/
ICommonTimeConfig.cpp 186 virtual status_t getMasterAnnounceInterval(int *interval) {
195 *interval = reply.readInt32();
202 virtual status_t setMasterAnnounceInterval(int interval) {
205 data.writeInt32(interval);
216 virtual status_t getClientSyncInterval(int *interval) {
225 *interval = reply.readInt32();
232 virtual status_t setClientSyncInterval(int interval) {
235 data.writeInt32(interval);
424 int interval; local
425 status_t status = getMasterAnnounceInterval(&interval);
435 int interval = data.readInt32(); local
443 int interval; local
454 int interval = data.readInt32(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
tab_utils.cc 21 // Interval between frame updates of the tab indicator animations. This is not
45 const base::TimeDelta interval)
46 : MultiAnimation(parts, interval) {}
69 const base::TimeDelta interval = local
72 new TabRecordingIndicatorAnimation(parts, interval));
169 // gfx::Animation implementation that lets us control the frame interval.
175 const base::TimeDelta interval = local
178 new gfx::MultiAnimation(parts, interval));
  /external/chromium_org/tools/memory_inspector/memory_inspector/frontends/
background_tasks.py 31 def StartTracer(process, storage_path, interval, count, trace_native_heap):
39 interval=interval,
58 def TracerMain_(log, storage_path, backend_name, device_id, pid, interval,
77 count, interval, device.name, process.name)))
103 time.sleep(interval)
  /external/deqp/framework/common/
tcuInterval.cpp 21 * \brief Interval arithmetic.
35 Interval applyMonotone (DoubleFunc1& func, const Interval& arg0)
37 Interval ret;
43 Interval applyMonotone (DoubleIntervalFunc1& func, const Interval& arg0)
45 return Interval(func(arg0.lo()), func(arg0.hi()));
48 Interval applyMonotone (DoubleFunc2& func, const Interval& arg0, const Interval& arg1
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceMotionData.h 98 double interval);
107 double interval() const { return m_interval; } function in class:WebCore::DeviceMotionData
113 DeviceMotionData(PassRefPtrWillBeRawPtr<Acceleration>, PassRefPtrWillBeRawPtr<Acceleration> accelerationIncludingGravity, PassRefPtrWillBeRawPtr<RotationRate>, bool canProvideInterval, double interval);
  /external/tcpdump/
print-babel.c 347 u_short nonce, interval; local
354 interval = EXTRACT_16BITS(message + 6);
355 printf("%04x %s", nonce, format_interval(interval));
374 u_short seqno, interval; local
381 interval = EXTRACT_16BITS(message + 6);
382 printf("seqno %u interval %s", seqno, format_interval(interval));
388 unsigned short txcost, interval; local
397 interval = EXTRACT_16BITS(message + 6);
400 printf("%s txcost %u interval %s"
443 u_short interval, seqno, metric; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
gen_stats.h 65 signed char interval; member in struct:gnet_estimator
  /development/ndk/platforms/android-L/include/linux/
gen_stats.h 59 signed char interval; member in struct:gnet_estimator
  /external/chromium_org/cc/output/
output_surface_client.h 34 base::TimeDelta interval) = 0;
  /external/chromium_org/content/browser/compositor/
browser_compositor_output_surface_proxy.h 41 base::TimeDelta interval);
  /external/chromium_org/content/browser/geolocation/
wifi_data_provider_common.h 60 void ScheduleNextScan(int interval);
70 // Controls the polling update interval.

Completed in 3968 milliseconds

1 2 3 4 5 67 8 91011>>