HomeSort by relevance Sort by last modified time
    Searched refs:BOUNDS (Results 1 - 25 of 33) sorted by null

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterCropRepresentation.java 30 public static final String[] BOUNDS = {
155 writer.name(BOUNDS[0]).value(mCrop.left);
156 writer.name(BOUNDS[1]).value(mCrop.top);
157 writer.name(BOUNDS[2]).value(mCrop.right);
158 writer.name(BOUNDS[3]).value(mCrop.bottom);
167 if (BOUNDS[0].equals(name)) {
169 } else if (BOUNDS[1].equals(name)) {
171 } else if (BOUNDS[2].equals(name)) {
173 } else if (BOUNDS[3].equals(name)) {
  /external/droiddriver/src/io/appium/droiddriver/finders/
Attribute.java 37 BOUNDS("bounds");
ByXPath.java 167 element.setAttribute(Attribute.BOUNDS.getName(), uiElement.getBounds().toShortString());
  /frameworks/support/samples/SupportTransitionDemos/src/main/java/com/example/android/support/transition/widget/
ChangeClipBoundsUsage.java 37 private static final Rect BOUNDS = new Rect(20, 20, 100, 100);
63 if (BOUNDS.equals(ViewCompat.getClipBounds(mPhoto))) {
66 ViewCompat.setClipBounds(mPhoto, BOUNDS);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
SystemBarScrimViews.java 97 .setDuration(animation.getDuration(AnimationProps.BOUNDS))
98 .setInterpolator(animation.getInterpolator(AnimationProps.BOUNDS))
121 .setDuration(AnimationProps.BOUNDS, mNavBarScrimEnterDuration)
122 .setInterpolator(AnimationProps.BOUNDS, Interpolators.DECELERATE_QUINT)
187 * @return a default animation to aniamte the bounds of the scrim.
191 .setDuration(AnimationProps.BOUNDS, duration)
192 .setInterpolator(AnimationProps.BOUNDS, Interpolators.FAST_OUT_SLOW_IN);
TaskStackAnimationHelper.java 276 taskAnimation.setInterpolator(AnimationProps.BOUNDS,
278 .setDuration(AnimationProps.BOUNDS, 150)
284 .setInterpolator(AnimationProps.BOUNDS,
287 .setDuration(AnimationProps.BOUNDS, ENTER_FROM_HOME_TRANSLATION_DURATION)
298 .setDuration(AnimationProps.BOUNDS, dockGestureAnimDuration +
300 .setInterpolator(AnimationProps.BOUNDS,
302 .setStartDelay(AnimationProps.BOUNDS, 48)
343 .setDuration(AnimationProps.BOUNDS, EXIT_TO_HOME_TRANSLATION_DURATION)
346 taskAnimation.setInterpolator(AnimationProps.BOUNDS,
349 taskAnimation.setStartDelay(AnimationProps.BOUNDS, delay
    [all...]
TaskView.java 67 * with the previous bounds if any child requests layout).
215 /** Returns the view bounds. */
307 // Both the progress and the update are a function of the bounds movement of the task
311 mTmpAnimators.add(toAnimation.apply(AnimationProps.BOUNDS, mDimAnimator));
316 mTmpAnimators.add(toAnimation.apply(AnimationProps.BOUNDS, mOutlineAnimator));
321 mTmpAnimators.add(toAnimation.apply(AnimationProps.BOUNDS, updateCallbackAnim));
689 // If we are clipping the view to the bounds, manually do the hit test.
693 // Otherwise just make sure we're within the view's bounds.
TaskViewTransform.java 182 animators.add(animation.apply(AnimationProps.BOUNDS, anim));
  /frameworks/base/core/java/android/view/
ViewOutlineProvider.java 47 * Maintains the outline of the View to match its rectangular bounds,
52 public static final ViewOutlineProvider BOUNDS = new ViewOutlineProvider() {
60 * Maintains the outline of the View to match its rectangular padded bounds,
DisplayCutout.java 21 import static android.view.DisplayCutoutProto.BOUNDS;
119 private DisplayCutout(Rect safeInsets, Region bounds, boolean copyArguments) {
122 mBounds = bounds == null ? Region.obtain() :
123 (copyArguments ? Region.obtain(bounds) : bounds);
137 * Returns true if there is no cutout, i.e. the bounds are empty.
186 * Region bounds = displayCutout.getBounds();
187 * bounds.op(0, 0, Integer.MAX_VALUE, displayCutout.getSafeInsetTop(), Region.Op.INTERSECT);
188 * Rect topDisplayCutout = bounds.getBoundingRect();
210 Region bounds = Region.obtain() local
284 Region bounds = Region.obtain(mBounds); local
350 Region bounds = new Region(); local
552 Region bounds = in.readTypedObject(Region.CREATOR); local
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewOutlineProviderTest.java 95 ViewOutlineProvider.BOUNDS.getOutline(view, outline);
101 ViewOutlineProvider.BOUNDS.getOutline(view, outline);
  /frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/utilities/
AnimationProps.java 43 @IntDef({ALL, TRANSLATION_X, TRANSLATION_Y, TRANSLATION_Z, ALPHA, SCALE, BOUNDS})
52 public static final int BOUNDS = 6;
  /external/freetype/src/truetype/
ttinterp.c 87 /* Two simple bounds-checking macros. */
89 #define BOUNDS( x, n ) ( (FT_UInt)(x) >= (FT_UInt)(n) )
5525 FT_Short contour, bounds; local
    [all...]
  /external/selinux/libselinux/src/
audit2why.c 31 #define BOUNDS 6
430 RETURN(BOUNDS)
488 PyModule_AddIntConstant(m,"BOUNDS", BOUNDS);
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
ViewElement.java 153 put(Attribute.BOUNDS, getBounds());
158 // needs to have the VISIBLE flag as well as non-empty bounds to be
227 // Bounds are relative to root view; adjust to screen coordinates.
  /external/droiddriver/src/io/appium/droiddriver/uiautomation/
UiAutomationElement.java 96 put(attribs, Attribute.BOUNDS, getBounds(node));
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_inst.h 74 #define BOUNDS(hi4, lo4, hi45, lo45, hi5, lo5, hi6, lo6, hi7, lo7, hi8, lo8) \
100 BOUNDS(hi4, lo4, hi45, lo45, hi5, lo5, hi6, lo6, hi7, lo7, hi8, lo8) \
106 BOUNDS(hi4, lo4, hi45, lo45, hi5, lo5, hi6, lo6, hi7, lo7, hi8, lo8) \
745 #undef BOUNDS
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
Illustration.java 146 setOutlineProvider(ViewOutlineProvider.BOUNDS);
170 // Scale the background bounds by the same scale to compensate for the scale done to the
  /frameworks/base/services/core/java/com/android/server/wm/
Task.java 30 import static com.android.server.wm.TaskProto.BOUNDS;
65 // Bounds used to calculate the insets.
71 // For comparison with DisplayContent bounds.
75 // For retrieving dim bounds
230 // Update task bounds if needed.
265 public int setBounds(Rect bounds, boolean forceResize) {
266 final int boundsChanged = setBounds(bounds);
276 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
278 public int setBounds(Rect bounds) {
    [all...]
TaskStack.java 42 import static com.android.server.wm.StackProto.BOUNDS;
74 /** Minimum size of an adjusted stack bounds relative to original stack bounds. Used to
88 /** For comparison with DisplayContent bounds. */
93 /** Stack bounds adjusted to screen content area (taking into account IM windows, etc.) */
97 * Fully adjusted IME bounds. These are different from {@link #mAdjustedBounds} because they
131 // If this is true, we are in the bounds animating mode. The task will be down or upscaled to
133 // would otherwise apply while resizing, while resizing in the bounds animating mode.
143 // Temporary storage for the new bounds that should be used after the configuration change.
144 // Will be cleared once the client retrieves the new bounds via getBoundsForNewConfiguration()
803 final Rect bounds = calculateBoundsForWindowModeChange(); local
827 final Rect bounds = new Rect(); local
1012 final Rect bounds = new Rect(); local
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/base/
BaseUiElement.java 148 return get(Attribute.BOUNDS);
  /frameworks/base/core/java/com/android/internal/widget/
DecorCaptionView.java 143 // By changing the outline provider to BOUNDS, the window can remove its
145 mOwner.getDecorView().setOutlineProvider(ViewOutlineProvider.BOUNDS);
  /external/selinux/python/audit2allow/
audit2allow 288 if rc == audit2why.BOUNDS:
audit2why 288 if rc == audit2why.BOUNDS:
  /frameworks/base/services/core/java/com/android/server/am/
TaskRecord.java 66 import static com.android.server.am.TaskRecordProto.BOUNDS;
303 // Last non-fullscreen bounds the task was launched in or resized to.
434 final Rect bounds = updateOverrideConfigurationFromLaunchBounds(); local
436 getStack().getWindowContainerController(), userId, bounds,
458 // Reset current bounds for task whose bounds shouldn't be persisted so it uses
487 public void requestResize(Rect bounds, int resizeMode) {
488 mService.resizeTask(taskId, bounds, resizeMode);
491 boolean resize(Rect bounds, int resizeMode, boolean preserveWindow, boolean deferResume) {
500 // If this is a forced resize, let it go through even if the bounds is not changing
716 Rect bounds = getLaunchBounds(); local
1849 final Rect bounds = getLaunchBounds(); local
2086 final Rect bounds = getOverrideBounds(); local
    [all...]

Completed in 460 milliseconds

1 2