/external/chromium-trace/catapult/third_party/flot/ |
jquery.flot.navigate.min.js | 7 (function(a){function e(h){var k,j=this,l=h.data||{};if(l.elem)j=h.dragTarget=l.elem,h.dragProxy=d.proxy||j,h.cursorOffsetX=l.pageX-l.left,h.cursorOffsetY=l.pageY-l.top,h.offsetX=h.pageX-h.cursorOffsetX,h.offsetY=h.pageY-h.cursorOffsetY;else if(d.dragging||l.which>0&&h.which!=l.which||a(h.target).is(l.not))return;switch(h.type){case"mousedown":return a.extend(l,a(j).offset(),{elem:j,target:h.target,pageX:h.pageX,pageY:h.pageY}),b.add(document,"mousemove mouseup",e,l),i(j,!1),d.dragging=null,!1;case!d.dragging&&"mousemove":if(g(h.pageX-l.pageX)+g(h.pageY-l.pageY)<l.distance)break;h.target=l.target,k=f(h,"dragstart",j),k!==!1&&(d.dragging=j,d.proxy=h.dragProxy=a(k||j)[0]);case"mousemove":if(d.dragging){if(k=f(h,"drag",j),c.drop&&(c.drop.allowed=k!==!1,c.drop.handler(h)),k!==!1)break;h.type="mouseup"}case"mouseup":b.remove(document,"mousemove mouseup",e),d.dragging&&(c.drop&&c.drop.handler(h),f(h,"dragend",j)),i(j,!0),d.dragging=d.proxy=l.elem=!1}return!0}function f(b,c,d){b.type=c;var e=a.event.dispatch.call(d,b);return e===!1?!1:e||b.result}function g(a){return Math.pow(a,2)}function h(){return d.dragging===!1}function i(a,b){a&&(a.unselectable=b?"off":"on",a.onselectstart=function(){return b},a.style&&(a.style.MozUserSelect=b?"":"none"))}a.fn.drag=function(a,b,c){return b&&this.bind("dragstart",a),c&&this.bind("dragend",c),a?this.bind("drag",b?b:a):this.trigger("drag")};var b=a.event,c=b.special,d=c.drag={not:":input",distance:0,which:1,dragging:!1,setup:function(c){c=a.extend({distance:d.distance,which:d.which,not:d.not},c||{}),c.distance=g(c.distance),b.add(this,"mousedown",e,c),this.attachEvent&&this.attachEvent("ondragstart",h)},teardown:function(){b.remove(this,"mousedown",e),this===d.dragging&&(d.dragging=d.proxy=!1),i(this,!0),this.detachEvent&&this.detachEvent("ondragstart",h)}};c.dragstart=c.dragend={setup:function(){},teardown:function(){}}})(jQuery);(function(d){function e(a){var b=a||window.event,c=[].slice.call(arguments,1),f=0,e=0,g=0,a=d.event.fix(b);a.type="mousewheel";b.wheelDelta&&(f=b.wheelDelta/120);b.detail&&(f=-b.detail/3);g=f;void 0!==b.axis&&b.axis===b.HORIZONTAL_AXIS&&(g=0,e=-1*f);void 0!==b.wheelDeltaY&&(g=b.wheelDeltaY/120);void 0!==b.wheelDeltaX&&(e=-1*b.wheelDeltaX/120);c.unshift(a,f,e,g);return(d.event.dispatch||d.event.handle).apply(this,c)}var c=["DOMMouseScroll","mousewheel"];if(d.event.fixHooks)for(var h=c.length;h;)d.event.fixHooks[c[--h]]=d.event.mouseHooks;d.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=c.length;a;)this.addEventListener(c[--a],e,!1);else this.onmousewheel=e},teardown:function(){if(this.removeEventListener)for(var a=c.length;a;)this.removeEventListener(c[--a],e,!1);else this.onmousewheel=null}};d.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery);(function($){var options={xaxis:{zoomRange:null,panRange:null},zoom:{interactive:false,trigger:"dblclick",amount:1.5},pan:{interactive:false,cursor:"move",frameRate:20}};function init(plot){function onZoomClick(e,zoomOut){var c=plot.offset();c.left=e.pageX-c.left;c.top=e.pageY-c.top;if(zoomOut)plot.zoomOut({center:c});else plot.zoom({center:c})}function onMouseWheel(e,delta){e.preventDefault();onZoomClick(e,delta<0);return false}var prevCursor="default",prevPageX=0,prevPageY=0,panTimeout=null;function onDragStart(e){if(e.which!=1)return false;var c=plot.getPlaceholder().css("cursor");if(c)prevCursor=c;plot.getPlaceholder().css("cursor",plot.getOptions().pan.cursor);prevPageX=e.pageX;prevPageY=e.pageY}function onDrag(e){var frameRate=plot.getOptions().pan.frameRate;if(panTimeout||!frameRate)return;panTimeout=setTimeout(function(){plot.pan({left:prevPageX-e.pageX,top:prevPageY-e.pageY});prevPageX=e.pageX;prevPageY=e.pageY;panTimeout=null},1/frameRate*1e3)}function onDragEnd(e){if(panTimeout){clearTimeout(panTimeout);panTimeout=null}plot.getPlaceholder().css("cursor",prevCursor);plot.pan({left:prevPageX-e.pageX,top:prevPageY-e.pageY})}function bindEvents(plot,eventHolder){var o=plot.getOptions();if(o.zoom.interactive){eventHolder[o.zoom.trigger](onZoomClick);eventHolder.mousewheel(onMouseWheel)}if(o.pan.interactive){eventHolder.bind("dragstart",{distance:10},onDragStart);eventHolder.bind("drag",onDrag);eventHolder.bind("dragend",onDragEnd)}}plot.zoomOut=function(args){if(!args)args={};if(!args.amount)args.amount=plot.getOptions().zoom.amount;args.amount=1/args.amount;plot.zoom(args)};plot.zoom=function(args){if(!args)args={};var c=args.center,amount=args.amount||plot.getOptions().zoom.amount,w=plot.width(),h=plot.height();if(!c)c={left:w/2,top:h/2};var xf=c.left/w,yf=c.top/h,minmax={x:{min:c.left-xf*w/amount,max:c.left+(1-xf)*w/amount},y:{min:c.top-yf*h/amount,max:c.top+(1-yf)*h/amount}};$.each(plot.getAxes(),function(_,axis){var opts=axis.options,min=minmax[axis.direction].min,max=minmax[axis.direction].max,zr=opts.zoomRange,pr=opts.panRange;if(zr===false)return;min=axis.c2p(min);max=axis.c2p(max);if(min>max){var tmp=min;min=max;max=tmp}if(pr){if(pr[0]!=null&&min<pr[0]){min=pr[0]}if(pr[1]!=null&&max>pr[1]){max=pr[1]}}var range=max-min;if(zr&&(zr[0]!=null&&range<zr[0]&&amount>1||zr[1]!=null&&range>zr[1]&&amount<1))return;opts.min=min;opts.max=max});plot.setupGrid();plot.draw();if(!args.preventEvent)plot.getPlaceholder().trigger("plotzoom",[plot,args])};plot.pan=function(args){var delta={x:+args.left,y:+args.top};if(isNaN(delta.x))delta.x=0;if(isNaN(delta.y))delta.y=0;$.each(plot.getAxes(),function(_,axis){var opts=axis.options,min,max,d=delta[axis.direction];min=axis.c2p(axis.p2c(axis.min)+d),max=axis.c2p(axis.p2c(axis.max)+d);var pr=opts.panRange;if(pr===false)return;if(pr){if(pr[0]!=null&&pr[0]>min){d=pr[0]-min;min+=d;max+=d}if(pr[1]!=null&&pr[1]<max){d=pr[1]-max;min+=d;max+=d}}opts.min=min;opts.max=max});plot.setupGrid();plot.draw();if(!args.preventEvent)plot.getPlaceholder().trigger("plotpan",[plot,args])};function shutdown(plot,eventHolder){eventHolder.unbind(plot.getOptions().zoom.trigger,onZoomClick);eventHolder.unbind("mousewheel",onMouseWheel);eventHolder.unbind("dragstart",onDragSt (…)
|
/frameworks/base/media/java/android/media/soundtrigger/ |
SoundTriggerDetector.java | 43 * A class that allows interaction with the actual sound trigger detection on the system. 44 * Sound trigger detection refers to a detectors that match generic sound patterns that are 89 * whether the trigger audio for hotword needs to be captured. 101 * trigger happenss, till the caller starts recognition again. 141 * This may be null if the trigger audio isn't available. 168 * for either the trigger or a streaming session." 282 * Callback that handles events from the lower sound trigger layer.
|
/external/libcxx/test/support/ |
any_helpers.h | 65 // A test type that will trigger the small object optimization within 'any'. 139 // A test type that will NOT trigger the small object optimization in any. 226 // A test type that will trigger the small object optimization within 'any'. 256 // A test type that will NOT trigger the small object optimization within 'any'. 289 // A test type that throws when it is moved. This object will NOT trigger
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/ |
sync.h | 167 XSyncCounter counter; /* counter to trigger on */ 174 XSyncTrigger trigger; /* trigger for await */ member in struct:__anon38580 180 XSyncTrigger trigger; member in struct:__anon38581 210 XSyncValue alarm_value; /* test value of trigger in alarm */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/ |
sync.h | 169 XSyncCounter counter; /* counter to trigger on */ 176 XSyncTrigger trigger; /* trigger for await */ member in struct:__anon40439 182 XSyncTrigger trigger; member in struct:__anon40440 212 XSyncValue alarm_value; /* test value of trigger in alarm */
|
/frameworks/base/docs/html/reference/android/support/wearable/view/ |
BoxInsetLayout.LayoutParams.html | 476 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-constants-android.widget.FrameLayout.LayoutParams" class="jd-expando-trigger closed" 477 ><img height="34" id="inherited-constants-android.widget.FrameLayout.LayoutParams-trigger" 479 class="jd-expando-trigger-img" /></a>From 515 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-constants-android.view.ViewGroup.MarginLayoutParams" class="jd-expando-trigger closed" 516 ><img height="34" id="inherited-constants-android.view.ViewGroup.MarginLayoutParams-trigger" 518 class="jd-expando-trigger-img" /></a>From 554 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-constants-android.view.ViewGroup.LayoutParams" class="jd-expando-trigger closed" 555 ><img height="34" id="inherited-constants-android.view.ViewGroup.LayoutParams-trigger" 557 class="jd-expando-trigger-img" /></a>From 657 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-fields-android.widget.FrameLayout.LayoutParams" class="jd-expando-trigger closed [all...] |
WearableFrameLayout.LayoutParams.html | 391 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-constants-android.widget.FrameLayout.LayoutParams" class="jd-expando-trigger closed" 392 ><img height="34" id="inherited-constants-android.widget.FrameLayout.LayoutParams-trigger" 394 class="jd-expando-trigger-img" /></a>From 430 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-constants-android.view.ViewGroup.MarginLayoutParams" class="jd-expando-trigger closed" 431 ><img height="34" id="inherited-constants-android.view.ViewGroup.MarginLayoutParams-trigger" 433 class="jd-expando-trigger-img" /></a>From 469 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-constants-android.view.ViewGroup.LayoutParams" class="jd-expando-trigger closed" 470 ><img height="34" id="inherited-constants-android.view.ViewGroup.LayoutParams-trigger" 472 class="jd-expando-trigger-img" /></a>From 669 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-fields-android.widget.FrameLayout.LayoutParams" class="jd-expando-trigger closed [all...] |
/frameworks/base/docs/html/reference/android/support/test/espresso/matcher/ |
BoundedMatcher.html | 300 <a href="#" onclick="return toggleInherited(this, null)" id="subclasses-direct" class="jd-expando-trigger closed" 301 ><img height="34" id="subclasses-direct-trigger" 303 class="jd-expando-trigger-img" /></a>Known Direct Subclasses 497 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-org.hamcrest.BaseMatcher" class="jd-expando-trigger closed" 498 ><img height="34" id="inherited-methods-org.hamcrest.BaseMatcher-trigger" 500 class="jd-expando-trigger-img" /></a>From 593 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Object" class="jd-expando-trigger closed" 594 ><img height="34" id="inherited-methods-java.lang.Object-trigger" 596 class="jd-expando-trigger-img" /></a>From 865 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-org.hamcrest.Matcher" class="jd-expando-trigger closed [all...] |
CursorMatchers.CursorMatcher.html | 456 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-android.support.test.espresso.matcher.BoundedMatcher" class="jd-expando-trigger closed" 457 ><img height="34" id="inherited-methods-android.support.test.espresso.matcher.BoundedMatcher-trigger" 459 class="jd-expando-trigger-img" /></a>From 530 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-org.hamcrest.BaseMatcher" class="jd-expando-trigger closed" 531 ><img height="34" id="inherited-methods-org.hamcrest.BaseMatcher-trigger" 533 class="jd-expando-trigger-img" /></a>From 626 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Object" class="jd-expando-trigger closed" 627 ><img height="34" id="inherited-methods-java.lang.Object-trigger" 629 class="jd-expando-trigger-img" /></a>From 898 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-org.hamcrest.Matcher" class="jd-expando-trigger closed [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
Camera2StillCaptureTest.java | 166 * then wait for AWB to converge and lock it, then trigger a precapture 186 * then wait for AWB to converge and lock it, then trigger a precapture 189 * a precapture trigger cancel will be inserted between two adjacent triggers, which 190 * should effective cancel the first trigger. 196 * @param addAeTriggerCancel If a AE precapture trigger cancel is sent after the trigger. 226 * Step 1: trigger an auto focus run, and wait for AF locked. 247 * repeating request, otherwise, the still capture itself would trigger 293 * Step 3: trigger an AE precapture metering sequence and wait for AE converged. 307 // Cancel the current precapture trigger, then send another trigger [all...] |
/system/core/rootdir/ |
init.rc | 239 # Healthd can trigger a full boot from charger mode by signaling this 243 trigger late-init 260 trigger early-fs 261 trigger fs 262 trigger post-fs 267 trigger load_system_props_action 271 trigger post-fs-data 272 trigger load_persist_props_action 275 trigger firmware_mounts_complete 277 trigger early-boo [all...] |
/external/ims/rcs/rcsservice/src/com/android/service/ims/presence/ |
PresencePublication.java | 152 // the lower layer should send trigger when enable volte 503 public int invokePublish(int trigger){ 510 switch(trigger) 550 logger.print("Unknown publish trigger from AP"); 556 logger.print("Didn't get trigger from stack yet, discard framework trigger."); 567 logger.print("invokePublish cache the trigger since the SIM is not ready"); 574 logger.print("invokePublish cache the trigger, not provision yet"); 592 // Always send the PUBLISH when we got the trigger from stack. 609 // onImsConnected could came later than this trigger [all...] |
/art/runtime/arch/x86/ |
fault_handler_x86.cc | 337 // where xxx is the offset of the suspend trigger. 339 uint32_t trigger = Thread::ThreadSuspendTriggerOffset<8>().Int32Value(); local 341 uint32_t trigger = Thread::ThreadSuspendTriggerOffset<4>().Int32Value(); 346 uint8_t checkinst1[] = {0x65, 0x48, 0x8b, 0x04, 0x25, static_cast<uint8_t>(trigger & 0xff), 347 static_cast<uint8_t>((trigger >> 8) & 0xff), 0, 0}; 349 uint8_t checkinst1[] = {0x64, 0x8b, 0x05, static_cast<uint8_t>(trigger & 0xff), 350 static_cast<uint8_t>((trigger >> 8) & 0xff), 0, 0}; 393 // Now remove the suspend trigger that caused this fault. 395 VLOG(signals) << "removed suspend trigger invoking test suspend";
|
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
AccessibilityEndToEndTest.java | 80 // trigger the event 116 // trigger the event 152 // trigger the event 190 // trigger the event 219 // trigger the event 258 // trigger the event 293 // trigger the event 354 // trigger the event 358 // trigger the event
|
/frameworks/base/docs/html/reference/android/support/test/runner/lifecycle/ |
ApplicationStage.html | 437 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Enum" class="jd-expando-trigger closed" 438 ><img height="34" id="inherited-methods-java.lang.Enum-trigger" 440 class="jd-expando-trigger-img" /></a>From 709 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Object" class="jd-expando-trigger closed" 710 ><img height="34" id="inherited-methods-java.lang.Object-trigger" 712 class="jd-expando-trigger-img" /></a>From 983 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Comparable" class="jd-expando-trigger closed" 984 ><img height="34" id="inherited-methods-java.lang.Comparable-trigger" 986 class="jd-expando-trigger-img" /></a>From
|
/frameworks/base/services/core/java/com/android/server/job/controllers/ |
ContentObserverController.java | 101 Slog.i(TAG, "Tracking content-trigger job " + taskStatus); 106 // any pending content URI trigger reports. 169 // any pending content URI trigger reports. 257 mInstance.trigger(); 317 void trigger() { method in class:ContentObserverController.JobInstance 414 JobInfo.TriggerContentUri trigger = observersOfUser.keyAt(observerIdx); local 415 pw.print(trigger.getUri()); 417 pw.print(Integer.toHexString(trigger.getFlags())); 431 pw.print(" Trigger pending: update=");
|
/packages/apps/Nfc/nci/jni/ |
RoutingManager.cpp | 619 if (action.trigger == NFC_EE_TRIG_SELECT) 620 ALOGD ("%s: NFA_EE_ACTION_EVT; h=0x%X; trigger=select (0x%X)", fn, action.ee_handle, action.trigger); 621 else if (action.trigger == NFC_EE_TRIG_APP_INIT) 624 ALOGD ("%s: NFA_EE_ACTION_EVT; h=0x%X; trigger=app-init (0x%X); aid len=%u; data len=%u", fn, 625 action.ee_handle, action.trigger, app_init.len_aid, app_init.len_data); 627 else if (action.trigger == NFC_EE_TRIG_RF_PROTOCOL) 628 ALOGD ("%s: NFA_EE_ACTION_EVT; h=0x%X; trigger=rf protocol (0x%X)", fn, action.ee_handle, action.trigger); 629 else if (action.trigger == NFC_EE_TRIG_RF_TECHNOLOGY [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarDatabaseHelperTest.java | 76 // Trigger to remove a calendar's events when we delete the calendar 77 db.execSQL("CREATE TRIGGER calendar_cleanup DELETE ON Calendars " + 133 // NOTE: we do not create a trigger to delete an event's instances upon update, 216 // Trigger to remove data tied to an event when we delete that event. 217 db.execSQL("CREATE TRIGGER events_cleanup_delete DELETE ON Events " + 229 db.execSQL("CREATE TRIGGER attendees_update UPDATE ON Attendees " + 233 db.execSQL("CREATE TRIGGER attendees_insert INSERT ON Attendees " + 237 db.execSQL("CREATE TRIGGER attendees_delete DELETE ON Attendees " + 244 db.execSQL("CREATE TRIGGER reminders_update UPDATE ON Reminders " + 248 db.execSQL("CREATE TRIGGER reminders_insert INSERT ON Reminders " [all...] |
/frameworks/base/docs/html/reference/android/support/test/uiautomator/ |
UiAutomatorInstrumentationTestRunner.html | 365 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-constants-android.test.InstrumentationTestRunner" class="jd-expando-trigger closed" 366 ><img height="34" id="inherited-constants-android.test.InstrumentationTestRunner-trigger" 368 class="jd-expando-trigger-img" /></a>From 512 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-constants-android.app.Instrumentation" class="jd-expando-trigger closed" 513 ><img height="34" id="inherited-constants-android.app.Instrumentation-trigger" 515 class="jd-expando-trigger-img" /></a>From 704 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-android.test.InstrumentationTestRunner" class="jd-expando-trigger closed" 705 ><img height="34" id="inherited-methods-android.test.InstrumentationTestRunner-trigger" 707 class="jd-expando-trigger-img" /></a>From 888 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-android.app.Instrumentation" class="jd-expando-trigger closed [all...] |
/frameworks/base/docs/html/reference/android/support/test/espresso/base/ |
RootViewPicker.html | 357 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Object" class="jd-expando-trigger closed" 358 ><img height="34" id="inherited-methods-java.lang.Object-trigger" 360 class="jd-expando-trigger-img" /></a>From 629 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-javax.inject.Provider" class="jd-expando-trigger closed" 630 ><img height="34" id="inherited-methods-javax.inject.Provider-trigger" 632 class="jd-expando-trigger-img" /></a>From
|
ViewFinderImpl.html | 359 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Object" class="jd-expando-trigger closed" 360 ><img height="34" id="inherited-methods-java.lang.Object-trigger" 362 class="jd-expando-trigger-img" /></a>From 631 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-android.support.test.espresso.ViewFinder" class="jd-expando-trigger closed" 632 ><img height="34" id="inherited-methods-android.support.test.espresso.ViewFinder-trigger" 634 class="jd-expando-trigger-img" /></a>From
|
/frameworks/base/docs/html/reference/android/support/test/runner/ |
MonitoringInstrumentation.ActivityFinisher.html | 381 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Object" class="jd-expando-trigger closed" 382 ><img height="34" id="inherited-methods-java.lang.Object-trigger" 384 class="jd-expando-trigger-img" /></a>From 653 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Runnable" class="jd-expando-trigger closed" 654 ><img height="34" id="inherited-methods-java.lang.Runnable-trigger" 656 class="jd-expando-trigger-img" /></a>From
|
/hardware/libhardware/include/hardware/ |
camera2.h | 291 * Notification callback and message definition, and trigger definitions 326 * android.control.afState. Ext2 contains the latest trigger ID passed to 328 * trigger_action(CAMERA2_TRIGGER_CANCEL_AUTOFOCUS), or 0 if trigger has not 335 * android.control.aeState. Ext2 contains the latest trigger ID value passed to 343 * android.control.awbState. Ext2 contains the latest trigger ID passed to 395 * Possible trigger ids for trigger_action() 399 * Trigger an autofocus cycle. The effect of the trigger depends on the 400 * autofocus mode in effect when the trigger is received, which is the mode 402 * mode is OFF, EDOF, or FIXED, the trigger has no effect. In AUTO, MACRO [all...] |
/external/autotest/server/cros/faft/utils/ |
mode_switcher.py | 44 """Trigger to the rec mode from the dev screen.""" 49 """Trigger to the dev mode from the rec screen.""" 54 """Trigger to the normal mode from the dev screen.""" 85 """Trigger to the rec mode from the dev screen.""" 100 """Trigger to the dev mode from the rec screen.""" 113 """Trigger to the normal mode from the dev screen.""" 131 # TODO: Confirm if it is a proper way to trigger dev boot USB. 148 """Trigger to the rec mode from the dev screen.""" 154 """Trigger to the dev mode from the rec screen.""" 161 """Trigger to the normal mode from the dev screen."" [all...] |
/developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/util/ |
SystemUiHiderHoneycomb.java | 125 // Trigger the registered listener and cache the visibility 141 // Trigger the registered listener and cache the visibility
|