Home
last modified time | relevance | path

Searched refs:side (Results 1 – 25 of 47) sorted by relevance

12

/frameworks/base/core/java/android/transition/
DSidePropagation.java49 public void setSide(@GravityFlag int side) { in setSide() argument
50 mSide = side; in setSide()
123 final int side; in distance() local
126 side = isRtl ? Gravity.RIGHT : Gravity.LEFT; in distance()
129 side = isRtl ? Gravity.LEFT : Gravity.RIGHT; in distance()
131 side = mSide; in distance()
134 switch (side) { in distance()
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/
DVrView.java280 public void cut(int side, float fractionx, float fractiony) { in cut() argument
282 f[side] += fractionx; in cut()
283 if (f[side] < 0) f[side] = 0; in cut()
284 if (f[side] > .8) f[side] = .8f; in cut()
285 f[side + 3] += fractiony; in cut()
286 if (f[side + 3] < 0) f[side + 3] = 0; in cut()
287 if (f[side + 3] > .8) f[side + 3] = .8f; in cut()
/frameworks/base/core/java/android/view/
DInsetsAnimationControlImpl.java423 private void updateLeashesForSide(@InternalInsetsSide int side, int offset, int inset, in updateLeashesForSide() argument
425 final ArraySet<InsetsSourceControl> controls = mSideControlsMap.get(side); in updateLeashesForSide()
437 addTranslationToMatrix(side, offset, mTmpMatrix, mTmpFrame); in updateLeashesForSide()
439 final boolean visible = mHasZeroInsetsIme && side == ISIDE_BOTTOM in updateLeashesForSide()
460 private void addTranslationToMatrix(@InternalInsetsSide int side, int offset, Matrix m, in addTranslationToMatrix() argument
464 switch (side) { in addTranslationToMatrix()
489 final int side = typeSideMap.valueAt(i); in buildSideControlsMap() local
496 sideControlsMap.add(side, control); in buildSideControlsMap()
509 @InternalInsetsSide int side = InsetsState.getInsetSide(control.getInsetsHint()); in buildSideControlsMap() local
510 if (side == ISIDE_FLOATING && control.getType() == ITYPE_IME) { in buildSideControlsMap()
[all …]
DInsetsState.java361 private boolean canControlSide(Rect frame, int side) { in canControlSide() argument
362 switch (side) { in canControlSide()
/frameworks/base/apex/jobscheduler/
DREADME_js-mainline.md5 - JS service side classes are put in `service-jobscheduler.jar`.
12 - JS framework side classes are put in `framework-jobscheduler.jar`,
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/
DAccessibilityFloatingMenuView.java518 private boolean isMovingTowardsScreenEdge(@Alignment int side, int currentRawX, int downX) { in isMovingTowardsScreenEdge() argument
519 return (side == Alignment.RIGHT && currentRawX > downX) in isMovingTowardsScreenEdge()
520 || (side == Alignment.LEFT && downX > currentRawX); in isMovingTowardsScreenEdge()
741 private void updateOffsetWith(@ShapeType int shapeType, @Alignment int side) { in updateOffsetWith() argument
744 mListView.animate().translationX(side == Alignment.RIGHT ? offset : -offset); in updateOffsetWith()
758 private void updateStrokeWith(int uiMode, @Alignment int side) { in updateStrokeWith() argument
759 updateInsetWith(uiMode, side); in updateStrokeWith()
779 private void updateInsetWith(int uiMode, @Alignment int side) { in updateInsetWith() argument
785 final int insetLeft = (side == Alignment.LEFT) ? layerInset : 0; in updateInsetWith()
786 final int insetRight = (side == Alignment.RIGHT) ? layerInset : 0; in updateInsetWith()
/frameworks/base/core/java/com/android/internal/policy/
DGestureNavigationSettingsObserver.java102 private int getSensitivity(Resources userRes, String side) { in getSensitivity() argument
114 mContext.getContentResolver(), side, 1.0f, UserHandle.USER_CURRENT); in getSensitivity()
/frameworks/compile/libbcc/tests/debuginfo/
Dlit.site.cfg19 # This file is common to both host and target side tests
74 # Tools that are specific to running host-side debugger integration tests:
81 # Tools that are specific to running target-side debugger integration tests:
DREADME19 The output is verified in the same way as host side tests, and the format
22 *** If you are running target-side tests, you must disable parallel
/frameworks/compile/libbcc/tests/debuginfo/host-tests/
Dlit.cfg19 ### Configuration file for target side debugger integration tests
60 # Apply host-side test macro substitutions
/frameworks/hardware/interfaces/sensorservice/1.0/
DREADME63 * kernel calls decStrong() on server side implementation of IDirectChannel,
120 /* Server side implementation of IEventQueue holds a strong reference to
137 * kernel calls decStrong() on server side implementation of IEventQueue,
/frameworks/compile/libbcc/tests/debuginfo/target-tests/
Dlit.cfg19 ### Configuration file for target side debugger integration tests
85 # Apply target-side test macro substitutions
/frameworks/av/media/libeffects/downmix/tests/
Ddownmix_tests.cpp107 const AUDIO_GEOMETRY_SIDE side = sideFromChannelIdx(index); in testBalance() local
143 switch (side) { in testBalance()
/frameworks/proto_logging/stats/enums/server/job/
Denums.proto22 // adding enums for app-side code, use the file in
/frameworks/proto_logging/stats/enums/app/job/
Denums.proto22 // adding enums for system-server-side code, use the file in
/frameworks/av/media/libstagefright/bqhelper/
DAndroid.bp102 // libcodec2_hidl@1.x, etc. from service side. It could
/frameworks/libs/net/common/
DAndroid.bp169 // rules on the wifi side.
183 // rules on the wifi side.
/frameworks/base/core/proto/android/internal/
Dbinder_latency.proto76 // their sizes are controlled server side with a flag.
/frameworks/rs/
DrsDefines.h459 RsBlasSide side; member
/frameworks/native/services/surfaceflinger/TimeStats/timestatsproto/
Dtimestats.proto25 // changes to these messages, and keep google3 side proto messages in sync if
/frameworks/hardware/interfaces/stats/1.0/
DIStats.hal108 * atom ID and server-side configs.
/frameworks/base/services/core/java/com/android/server/wm/
DWindowState.java1004 void setLastExclusionHeights(int side, int requested, int granted) { in setLastExclusionHeights() argument
1005 boolean changed = mLastGrantedExclusionHeight[side] != granted in setLastExclusionHeights()
1006 || mLastRequestedExclusionHeight[side] != requested; in setLastExclusionHeights()
1010 logExclusionRestrictions(side); in setLastExclusionHeights()
1013 mLastGrantedExclusionHeight[side] = granted; in setLastExclusionHeights()
1014 mLastRequestedExclusionHeight[side] = requested; in setLastExclusionHeights()
3541 private void logExclusionRestrictions(int side) { in logExclusionRestrictions() argument
3543 || SystemClock.uptimeMillis() < mLastExclusionLogUptimeMillis[side] in logExclusionRestrictions()
3551 final long duration = now - mLastExclusionLogUptimeMillis[side]; in logExclusionRestrictions()
3552 mLastExclusionLogUptimeMillis[side] = now; in logExclusionRestrictions()
[all …]
/frameworks/base/packages/SystemUI/docs/
Dphysics-animation-layout.md104 …p along the left side of the screen, and then to the top right of the screen (assume a view that i…
/frameworks/base/tools/orientationplot/
DREADME.txt87 a little to the side, or they hold the device loosely so its orientation
/frameworks/base/core/proto/android/view/inputmethod/
Dinputmethodeditortrace.proto65 /* groups together the dump from ime related client side classes */

12