Home
last modified time | relevance | path

Searched refs:up (Results 1 – 25 of 142) sorted by relevance

123456

/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
DTypeClassifier.java54 boolean up = isUp(); in calculateFalsingResult()
63 wrongDirection = !vertical || up; in calculateFalsingResult()
75 wrongDirection = !vertical || !up; in calculateFalsingResult()
78 wrongDirection = !right || !up; in calculateFalsingResult()
81 wrongDirection = right || !up; in calculateFalsingResult()
87 wrongDirection = !vertical || !up; in calculateFalsingResult()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/
DFalsingCollectorImplTest.java171 MotionEvent up = MotionEvent.obtain(0, 0, MotionEvent.ACTION_UP, 0, 0, 0); in testPassThroughGesture() local
178 mFalsingCollector.onTouchEvent(up); in testPassThroughGesture()
183 orderedCalls.verify(mFalsingDataProvider).onMotionEvent(up); in testPassThroughGesture()
189 MotionEvent up = MotionEvent.obtain(0, 0, MotionEvent.ACTION_DOWN, 0, 0, 0); in testAvoidGesture() local
197 mFalsingCollector.onTouchEvent(up); in testAvoidGesture()
204 MotionEvent up = MotionEvent.obtain(0, 0, MotionEvent.ACTION_UP, 0, 0, 0); in testAvoidUnlocked() local
213 mFalsingCollector.onTouchEvent(up); in testAvoidUnlocked()
220 MotionEvent up = MotionEvent.obtain(0, 0, MotionEvent.ACTION_UP, 0, 0, 0); in testAvoidDozingNotPulsing() local
229 mFalsingCollector.onTouchEvent(up); in testAvoidDozingNotPulsing()
236 MotionEvent up = MotionEvent.obtain(0, 0, MotionEvent.ACTION_UP, 0, 0, 0); in testAvoidDozingButPulsing() local
[all …]
/frameworks/rs/tests/java_api/RsNbody/src/com/example/android/rs/nbody_gl/
Dnbody.rscript76 float4 up = {0, 0, 1, 0};
80 right = normalize(cross(normv, up));
81 up = normalize(cross(normv, right));
83 up *= TSIZE * 0.5f;
92 float4 p2 = p - normv + right + up;
94 float4 p3 = p - normv - right + up;
96 float4 p4 = p - normv - up * 2;
/frameworks/base/core/proto/android/app/
Dalarmmanager.proto32 // will wake up the device when it goes off.
35 // alarm does not wake the device up; if it goes off while the device is
36 // asleep, it will not be delivered until the next time the device wakes up.
39 // sleep), which will wake up the device when it goes off.
42 // sleep). This alarm does not wake the device up; if it goes off while the
44 // wakes up.
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
DViewMatrix.java212 double[] up = {0, 0, 1}; in main() local
218 v.setUpVector(up); in main()
280 double[] up = new double[3]; in look() local
284 VectorUtil.cross(zv, rv, up); in look()
285 VectorUtil.cross(zv, up, rv); in look()
286 VectorUtil.cross(zv, rv, up); in look()
287 mUpVector = up; in look()
300 double[] up = new double[3]; in lookAt() local
304 VectorUtil.cross(zv, rv, up); in lookAt()
305 VectorUtil.cross(zv, up, rv); in lookAt()
[all …]
/frameworks/base/core/jni/android/opengl/
Dpoly_clip.cpp61 float *up, *vp, *wp; in poly_clip_to_halfspace() local
79 up = (float *)u; in poly_clip_to_halfspace()
82 for(int i = 0; i < 4; i++, wp++, up++, vp++) { in poly_clip_to_halfspace()
83 *wp = *up+t*(*vp-*up); in poly_clip_to_halfspace()
/frameworks/native/cmds/ip-up-vpn/
DAndroid.mk20 LOCAL_SRC_FILES := ip-up-vpn.c
23 LOCAL_MODULE := ip-up-vpn
/frameworks/base/core/java/android/net/
DINetworkManagementEventObserver.aidl34 void interfaceStatusChanged(String iface, boolean up); in interfaceStatusChanged() argument
43 void interfaceLinkStateChanged(String iface, boolean up); in interfaceLinkStateChanged() argument
/frameworks/native/services/sensorservice/
DFusion.cpp294 vec3_t up(mData[0]); in checkInitComplete() local
298 east = normalize(cross_product(mData[1], up)); in checkInitComplete()
300 east = getOrthogonal(up); in checkInitComplete()
303 vec3_t north(cross_product(up, east)); in checkInitComplete()
304 R << east << north << up; in checkInitComplete()
370 const vec3_t up( getRotationMatrix() * Ba ); in handleMag() local
371 const vec3_t east( cross_product(m, up) ); in handleMag()
383 vec3_t north( cross_product(up, east) ); in handleMag()
/frameworks/base/core/java/com/android/server/net/
DBaseNetworkObserver.java37 public void interfaceStatusChanged(String iface, boolean up) { in interfaceStatusChanged() argument
57 public void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged() argument
/frameworks/base/tests/Input/src/com/android/test/input/
DInputEventAssignerTest.kt121 val up = createKeyEvent(KeyEvent.ACTION_UP, 21) in testKeyEvent() constant
122 eventId = assigner.processEvent(up) in testKeyEvent()
124 assertEquals(up.id, eventId) in testKeyEvent()
/frameworks/libs/net/client-libs/netd/com/android/net/module/util/
DBaseNetdUnsolicitedEventListener.java54 public void onInterfaceChanged(@NonNull String ifName, boolean up) { } in onInterfaceChanged() argument
57 public void onInterfaceLinkStateChanged(@NonNull String ifName, boolean up) { } in onInterfaceLinkStateChanged() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DEventLogTags.logtags17 ## secure: 1: The user has set up a secure unlock method (PIN, password, etc.)
18 ## currentlyInsecure: 1: No secure unlock method set up (!secure), or trusted environment (TrustMan…
30 ## type: 1: SWIPE_UP_UNLOCK Swiped up to dismiss the lockscreen.
/frameworks/proto_logging/stats/enums/stats/wm/
Denums.proto23 UNKNOWN = 0; // undefined during start up
24 ROTATION_0 = 1; // portrait up
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
DEthernetNetworkFactory.java191 boolean updateInterfaceLinkState(String ifaceName, boolean up) { in updateInterfaceLinkState() argument
197 Log.d(TAG, "updateInterfaceLinkState, iface: " + ifaceName + ", up: " + up); in updateInterfaceLinkState()
201 return iface.updateLinkState(up); in updateInterfaceLinkState()
512 boolean updateLinkState(boolean up) { in updateLinkState() argument
513 if (mLinkUp == up) return false; in updateLinkState()
514 mLinkUp = up; in updateLinkState()
517 if (up) { in updateLinkState()
DEthernetTracker.java337 private void updateInterfaceState(String iface, boolean up) { in updateInterfaceState() argument
340 && mFactory.updateInterfaceLinkState(iface, up); in updateInterfaceState()
353 mListeners.getBroadcastItem(i).onAvailabilityChanged(iface, up); in updateInterfaceState()
422 public void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged() argument
424 Log.i(TAG, "interfaceLinkStateChanged, iface: " + iface + ", up: " + up); in interfaceLinkStateChanged()
426 mHandler.post(() -> updateInterfaceState(iface, up)); in interfaceLinkStateChanged()
/frameworks/proto_logging/stats/enums/stats/sysui/
Dnotification_enums.proto27 IMPORTANCE_DEFAULT = 3; // Shows everywhere, makes noise, no heads-up.
28 IMPORTANCE_HIGH = 4; // Shows everywhere, makes noise, heads-up, may full-screen.
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/notification/
DZenDurationDialog.java297 protected void onClickTimeButton(View row, ConditionTag tag, boolean up, int rowId) { in onClickTimeButton() argument
304 int j = up ? i : N - 1 - i; in onClickTimeButton()
306 if (up && bucketMinutes > time || !up && bucketMinutes < time) { in onClickTimeButton()
318 mBucketIndex = Math.max(0, Math.min(N - 1, mBucketIndex + (up ? 1 : -1))); in onClickTimeButton()
/frameworks/base/core/tests/coretests/src/android/widget/listview/
DListScrollListenerTest.java85 KeyEvent up = new KeyEvent(0, 0, KeyEvent.ACTION_UP, in testKeyScrolling() local
88 inst.sendKeySync(up); in testKeyScrolling()
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
DGridScrollListenerTest.java87 KeyEvent up = new KeyEvent(0, 0, KeyEvent.ACTION_UP, in testKeyScrolling() local
90 inst.sendKeySync(up); in testKeyScrolling()
/frameworks/compile/libbcc/tests/debuginfo/target-tests/
Dlit.cfg42 # Set up the suite name, extensions that are recognized as testcases, and
57 ## Set up SDK path and version
69 ## Set up environment variables
/frameworks/base/core/java/android/bluetooth/
DBluetoothProfileConnector.java51 public void onBluetoothStateChange(boolean up) {
52 if (up) {
/frameworks/base/packages/SystemUI/docs/
Dmedia-controls.md28 * Keeps the carousel view up to date and handles state changes (e.g. expansion)
54 * Has the most up to date state for any location
56 * Controls a single instance of a media player, keeps the media view states up to date
78 …* Saves up to 5 valid `MediaBrowserService` components found this way, and queries them for recent…
/frameworks/native/opengl/libs/EGL/
DGLES_layers.md14 …r the layer to use (layer_id) and an entrypoint that can be called to look up functions below the …
29up functions independently (i.e. not wait for calls to `AndroidGLESLayer_GetProcAddress`). Layers…
106up front, or layers that needs to look up extensions not known to the EGL loader, active layer ini…
142 // look up any entrypoints
/frameworks/compile/slang/tests/P_extern_const/
Drs_core.rsh3 // We use -I . to pick up this header file implicitly, instead of the proper

123456