/external/chromium_org/content/browser/aura/ |
browser_compositor_output_surface_proxy.cc | 53 base::TimeDelta interval) { 56 surface->OnUpdateVSyncParameters(timebase, interval);
|
/frameworks/base/core/java/android/app/ |
IAlarmManager.aidl | 30 long interval, in PendingIntent operation, in WorkSource workSource);
|
/external/chromium/chrome/browser/metrics/ |
metrics_response.h | 45 // Returns the size of the time interval that the server wants us to include 47 int interval() { return interval_; } function in class:MetricsResponse
|
metrics_response_unittest.cc | 29 "<limit events=\"500\"/><upload interval=\"600\"/>" 39 "<limit events=\"250\"/><upload interval=\"900\"/>" 47 int interval; member in struct:ResponseCase 86 EXPECT_EQ(rcase.interval, response.interval()) << "Mismatch in case " << i;
|
metrics_response.cc | 13 int interval; member in struct:SAXState 31 if (strcmp(Char(attrs[i]), "interval") == 0) { 32 state->interval = atoi(Char(attrs[i + 1])); 80 interval_ = state.interval;
|
/external/chromium_org/cc/scheduler/ |
time_source.h | 33 base::TimeDelta interval) = 0;
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebDeviceMotionData.h | 57 double interval; member in class:WebKit::WebDeviceMotionData
|
/external/chromium_org/ui/compositor/ |
compositor_observer.h | 44 base::TimeDelta interval) = 0;
|
/external/chromium_org/ui/gl/ |
gl_context_stub.h | 25 virtual void SetSwapInterval(int interval) OVERRIDE;
|
gl_context_wgl.h | 31 virtual void SetSwapInterval(int interval);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
gen_stats.h | 57 * @interval: sampling period 62 signed char interval; member in struct:gnet_estimator
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
gen_stats.h | 57 * @interval: sampling period 62 signed char interval; member in struct:gnet_estimator
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
gen_stats.h | 57 * @interval: sampling period 62 signed char interval; member in struct:gnet_estimator
|
/external/chromium_org/chrome/test/pyautolib/ |
timer_queue.py | 10 """Executes timers at a given interval. 12 This class provides the ability to run methods at a given interval. All 37 def AddTimer(self, method, interval, args=()): 41 method: the method to be called at the given interval 42 interval: delay between method runs, in seconds 46 next_time = time.time() + interval 47 self.timers.append({'method': method, 'interval': interval, 81 timer['next time'] += timer['interval']
|
/external/chromium_org/third_party/WebKit/Source/core/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/page/ |
DOMTimer.cpp | 42 // Chromium uses a minimum timer interval of 4ms. We'd like to go 46 // the smallest possible interval timer. 51 static inline bool shouldForwardUserGesture(int interval, int nestingLevel) 54 && interval <= maxIntervalForUserGestureForwarding 84 DOMTimer::DOMTimer(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot, int timeoutID) 91 if (shouldForwardUserGesture(interval, m_nestingLevel)) 94 double intervalMilliseconds = max(oneMillisecond, interval * oneMillisecond); 174 // background page alignment interval, because it's impossible
|
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/ |
DeviceMotionData.cpp | 73 PassRefPtr<RotationRate> rotationRate, bool canProvideInterval, double interval) 75 return adoptRef(new DeviceMotionData(acceleration, accelerationIncludingGravity, rotationRate, canProvideInterval, interval)); 93 true, data.interval); 103 PassRefPtr<RotationRate> rotationRate, bool canProvideInterval, double interval) 108 , m_interval(interval)
|
DeviceMotionData.h | 91 PassRefPtr<RotationRate> rotationRate, bool canProvideInterval, double interval); 99 double interval() const { return m_interval; } function in class:WebCore::DeviceMotionData 106 PassRefPtr<RotationRate> rotationRate, bool canProvideInterval, double interval);
|
/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/services/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/content/browser/device_orientation/ |
data_fetcher_impl_android_unittest.cc | 67 ASSERT_EQ(kPeriodInMilliseconds, buffer_->data.interval); 86 ASSERT_EQ(kPeriodInMilliseconds, buffer_->data.interval); 99 ASSERT_EQ(kPeriodInMilliseconds, buffer_->data.interval);
|
/external/chromium_org/chrome/browser/metrics/ |
perf_provider_chromeos.h | 42 // trigger |interval| after this function call. 43 void ScheduleCollection(const base::TimeDelta& interval);
|