Searched refs:side (Results 1 - 12 of 12) sorted by relevance
/frameworks/base/core/java/android/transition/ |
H A D | SidePropagation.java | 25 * 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 D | SidePropagation.java | 27 * 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/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/ |
H A D | VrView.java | 280 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/libs/hwui/ |
H A D | LayerBuilder.cpp | 82 * 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/base/services/tests/servicestests/src/com/android/server/wm/ |
H A D | ScreenDecorWindowTests.java | 263 * 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/rs/ |
H A D | rsDefines.h | 459 RsBlasSide side; member in struct:__anon2016
|
/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | DockedStackDividerController.java | 195 * Get the current docked side. Determined by its location of {@param bounds} within 196 * {@param displayRect} but if both are the same, it will try to dock to each side and determine 199 * @param bounds bounds of the docked task to get which side is docked 202 * @return current docked side 239 // In landscape also inset the left/right side with the statusbar height to match the 423 int side = stack.getDockSide(); 424 switch (side) { 459 * Checks if the primary stack is allowed to dock to a specific side based on its original dock 460 * side. 462 * @param dockSide the side t [all...] |
/frameworks/base/rs/jni/ |
H A D | android_renderscript_RenderScript.cpp | 629 call.side = (RsBlasSide)Side; 662 call.side = (RsBlasSide)Side; 695 call.side = (RsBlasSide)Side; 730 call.side = (RsBlasSide)Side;
|
/frameworks/rs/support/jni/ |
H A D | android_renderscript_RenderScript.cpp | 594 call.side = (RsBlasSide)Side; 634 call.side = (RsBlasSide)Side; 674 call.side = (RsBlasSide)Side; 717 call.side = (RsBlasSide)Side;
|
/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ActivityManagerShellCommand.java | 2578 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/cpu_ref/ |
H A D | rsCpuIntrinsicBLAS.cpp | 249 enum CBLAS_SIDE Side = (enum CBLAS_SIDE)call->side;
|
/frameworks/rs/cpp/ |
H A D | ScriptIntrinsicBLAS.cpp | 62 call.side = (RsBlasSide)Side;
|
Completed in 124 milliseconds