Searched defs:side (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/transition/
H A DSidePropagation.java25 * A <code>TransitionPropagation</code> that propagates based on the distance to the side
27 * the start of the transition, then it will transition sooner when closer to the side and
29 * it will transition later when closer to the side and sooner when farther from the edge.
39 * Sets the side that is used to calculate the transition propagation. If the transitioning
41 * closer to the side and later when farther. If the view is not visible in the start of
42 * the transition, then it will transition later when closer to the side and sooner when
45 * @param side The side that is used to calculate the transition propagation. Must be one of
49 public void setSide(@GravityFlag int side) { argument
50 mSide = side;
[all...]
/frameworks/support/transition/src/main/java/androidx/transition/
H A DSidePropagation.java27 * A <code>TransitionPropagation</code> that propagates based on the distance to the side
29 * the start of the transition, then it will transition sooner when closer to the side and
31 * it will transition later when closer to the side and sooner when farther from the edge.
40 * Sets the side that is used to calculate the transition propagation. If the transitioning
42 * closer to the side and later when farther. If the view is not visible in the start of
43 * the transition, then it will transition later when closer to the side and sooner when
46 * @param side The side that is used to calculate the transition propagation. Must be one of
50 public void setSide(@Slide.GravityFlag int side) { argument
51 mSide = side;
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DScreenDecorWindowTests.java263 * Asserts the inset at {@param side} of {@param activity} is equal to {@param expected}
266 private void assertInsetGreaterOrEqual(Activity activity, int side, int expected) argument
270 switch (side) {
280 switch (side) {
/frameworks/base/libs/hwui/
H A DLayerBuilder.cpp82 * and clip side flags. Positive bounds delta means new bounds fit in old.
84 static inline bool checkSide(const int currentFlags, const int newFlags, const int side, argument
86 bool currentClipExists = currentFlags & side;
87 bool newClipExists = newFlags & side;
145 * Exploits the fact that if a op or batch is clipped on a side, its bounds will equal its
146 * clip for that side.
186 // check, and doesn't extend past a side of the clip that's in use by the merged batch.
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/
H A DVrView.java280 public void cut(int side, float fractionx, float fractiony) { argument
282 f[side] += fractionx;
283 if (f[side] < 0) f[side] = 0;
284 if (f[side] > .8) f[side] = .8f;
285 f[side + 3] += fractiony;
286 if (f[side + 3] < 0) f[side + 3] = 0;
287 if (f[side
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerShellCommand.java2578 void setBoundsSide(Rect bounds, String side, int value) { argument
2579 switch (side) {
2593 getErrPrintWriter().println("Unknown set side: " + side);
2829 pw.println(" provider [COMP_SPEC]: provider client-side state");
2833 pw.println(" service [COMP_SPEC]: service client-side state");
/frameworks/rs/
H A DrsDefines.h459 RsBlasSide side; member in struct:__anon2016

Completed in 178 milliseconds