Searched defs:side (Results 1 - 6 of 6) 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/android/support/transition/
H A DSidePropagation.java26 * A <code>TransitionPropagation</code> that propagates based on the distance to the side
28 * the start of the transition, then it will transition sooner when closer to the side and
30 * 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(@Slide.GravityFlag int side) { argument
50 mSide = side;
[all...]
/frameworks/base/libs/hwui/
H A DLayerBuilder.cpp86 * and clip side flags. Positive bounds delta means new bounds fit in old.
88 static inline bool checkSide(const int currentFlags, const int newFlags, const int side, argument
90 bool currentClipExists = currentFlags & side;
91 bool newClipExists = newFlags & side;
150 * Exploits the fact that if a op or batch is clipped on a side, its bounds will equal its
151 * clip for that side.
188 // 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.java1946 final String side = getNextArgRequired();
1961 final boolean horizontalGrowth = "l".equals(side) || "r".equals(side);
1964 switch (side) {
1978 err.println("Unknown growth side: " + side);
1987 pw.println("Shrinking docked stack side=" + side);
1992 setBoundsSide(bounds, side, currentPoint);
1999 pw.println("Growing docked stack side
2025 setBoundsSide(Rect bounds, String side, int value) argument
[all...]
/frameworks/rs/
H A DrsDefines.h459 RsBlasSide side; member in struct:__anon2024

Completed in 142 milliseconds