/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeyEventQueue.java | 32 public MonkeyEventQueue(Random random, long throttle, boolean randomizeThrottle) { 35 mThrottle = throttle; 43 long throttle = mThrottle; local 45 throttle = mRandom.nextLong(); 46 if (throttle < 0) { 47 throttle = -throttle; 49 throttle %= mThrottle; 50 ++throttle; 52 super.add(new MonkeyThrottleEvent(throttle)); [all...] |
/external/chromium_org/chrome/browser/extensions/ |
user_script_listener_unittest.cc | 40 ThrottleController(net::URLRequest* request, ResourceThrottle* throttle) 42 throttle_(throttle) { 166 ResourceThrottle* throttle = local 170 if (throttle) { 171 request->SetUserData(NULL, new ThrottleController(request, throttle)); 173 throttle->WillStartRequest(&defer); 320 // Test when the script updated notification occurs before the throttle's 332 ResourceThrottle* throttle = local 334 ASSERT_TRUE(throttle); 335 request->SetUserData(NULL, new ThrottleController(request.get(), throttle)); [all...] |
/external/chromium_org/android_webview/browser/renderer_host/ |
aw_resource_dispatcher_host_delegate.cc | 350 IoThreadClientThrottle* throttle) { 353 ChildRouteIDPair(throttle->get_child_id(), throttle->get_route_id())); 402 IoThreadClientThrottle* throttle = it->second; local 403 throttle->OnIoThreadClientReady(new_child_id, new_route_id);
|
/external/chromium_org/chrome/browser/renderer_host/ |
chrome_resource_dispatcher_host_delegate.cc | 180 // We got a component we need to install, so throttle the resource 351 // If it's from the web, we don't trust it, so we push the throttle on. 428 // Android use a resource throttle to handle external as well as internal 465 content::ResourceThrottle* throttle = local 469 if (throttle) 470 throttles->push_back(throttle); 481 content::ResourceThrottle* throttle = local 484 if (throttle) 485 throttles->push_back(throttle);
|
/external/chromium_org/content/browser/worker_host/ |
worker_service_impl.cc | 141 bool throttle = true; local 161 throttle = false; 166 if (!throttle ) { 171 iter->SetBackgrounded(throttle);
|
/external/linux-tools-perf/util/ |
session.h | 86 throttle, member in struct:perf_event_ops
|
/external/chromium_org/chrome/browser/extensions/api/web_navigation/ |
web_navigation_apitest.cc | 116 Throttle* throttle = new Throttle(); 117 throttles_.push_back(throttle->AsWeakPtr()); 118 return throttle; 126 // Stores a throttle per URL request that we have delayed. 127 class Throttle : public content::ResourceThrottle, 128 public base::SupportsWeakPtr<Throttle> { 140 return "TestNavigationListener::Throttle"; 143 typedef base::WeakPtr<Throttle> WeakThrottle 263 content::ResourceThrottle* throttle = variable [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/post/ |
HDRRenderer.java | 89 private float throttle = -1;
field in class:HDRRenderer 138 public void setThrottle(float throttle){
139 this.throttle = throttle;
339 blendFactor = (time / throttle);
366 if (throttle == -1){
383 }else if (time > throttle){
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
dri2_glx.c | 89 const __DRI2throttleExtension *throttle; member in struct:dri2_screen 481 * This function uses the DRI2 throttle extension to give the 482 * driver the opportunity to throttle on flush front, copysubbuffer 490 if (psc->throttle) { 496 psc->throttle->throttle(ctx, draw->driDrawable, reason); 1002 psc->throttle = (__DRI2throttleExtension *) extensions[i]; [all...] |
/external/mesa3d/src/glx/ |
dri2_glx.c | 89 const __DRI2throttleExtension *throttle; member in struct:dri2_screen 481 * This function uses the DRI2 throttle extension to give the 482 * driver the opportunity to throttle on flush front, copysubbuffer 490 if (psc->throttle) { 496 psc->throttle->throttle(ctx, draw->driDrawable, reason); 1002 psc->throttle = (__DRI2throttleExtension *) extensions[i]; [all...] |
/external/chromium_org/content/browser/loader/ |
resource_dispatcher_host_unittest.cc | 400 // Throttle that tracks the current throttle blocking a request. Only one 401 // can throttle any request at a time. 404 // The value is used to indicate that the throttle should not provide 462 // The currently active throttle, if any. 1176 GenericResourceThrottle* throttle = local [all...] |
/external/chromium_org/third_party/mesa/src/include/GL/internal/ |
dri_interface.h | 289 * throttle callbacks. 303 void (*throttle)(__DRIcontext *ctx, member in struct:__DRI2throttleExtensionRec [all...] |
/external/mesa3d/include/GL/internal/ |
dri_interface.h | 289 * throttle callbacks. 303 void (*throttle)(__DRIcontext *ctx, member in struct:__DRI2throttleExtensionRec [all...] |
/external/robolectric/lib/main/ |
h2-1.2.147.jar | |