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/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.
H A DDeferredDisplayList.cpp156 * and clip side flags. Positive bounds delta means new bounds fit in old.
158 static inline bool checkSide(const int currentFlags, const int newFlags, const int side, argument
160 bool currentClipExists = currentFlags & side;
161 bool newClipExists = newFlags & side;
203 * Exploits the fact that if a op or batch is clipped on a side, its bounds will equal its
204 * clip for that side.
283 * it will shrink if an op must be clipped on a certain side. The clipped sides are reflected in
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/
H A DVrView.java281 public void cut(int side, float fractionx, float fractiony) { argument
283 f[side] += fractionx;
284 if (f[side] < 0) f[side] = 0;
285 if (f[side] > .8) f[side] = .8f;
286 f[side + 3] += fractiony;
287 if (f[side + 3] < 0) f[side + 3] = 0;
288 if (f[side
[all...]
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java318 " <STEP_SIZE> increments from the side <l>eft, <t>op, <r>ight, or <b>ottom\n" +
1947 final String side = nextArgRequired();
1968 final boolean horizontalGrowth = "l".equals(side) || "r".equals(side);
1971 switch (side) {
1985 showError("Unknown growth side: " + side);
1994 System.out.println("Shrinking docked stack side=" + side);
1998 setBoundsSide(bounds, side, currentPoin
2019 setBoundsSide(Rect bounds, String side, int value) argument
[all...]
/frameworks/rs/
H A DrsDefines.h459 RsBlasSide side; member in struct:__anon1679

Completed in 87 milliseconds