Searched defs:bounds (Results 126 - 142 of 142) sorted by relevance

123456

/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp486 void OpenGLRenderer::calculateLayerBoundsAndClip(Rect& bounds, Rect& clip, bool fboLayer) { argument
487 const Rect untransformedBounds(bounds);
489 currentTransform()->mapRect(bounds);
491 // Layers only make sense if they are in the framebuffer's bounds
492 bounds.doIntersect(mState.currentRenderTargetClip());
493 if (!bounds.isEmpty()) {
495 bounds.snapToPixelBoundaries();
498 // need to make sure the layer does not extend outside the bounds
503 bounds.doIntersect(previousViewport);
504 if (!bounds
519 updateSnapshotIgnoreForLayer(const Rect& bounds, const Rect& clip, bool fboLayer, int alpha) argument
675 createFboLayer(Layer* layer, Rect& bounds, Rect& clip) argument
1039 dirtyLayerUnchecked(Rect& bounds, Region* region) argument
1069 const Rect& bounds = mLayers[i]; local
1247 Rect bounds = tr.getBounds(); local
1460 drawBitmaps(const SkBitmap* bitmap, AssetAtlas::Entry* entry, int bitmapCount, TextureVertex* vertices, bool pureTranslate, const Rect& bounds, const SkPaint* paint) argument
1743 const Rect& bounds = buffer.getBounds(); local
1761 const Rect& bounds = buffer.getBounds(); local
2095 drawText(const glyph_t* glyphs, int bytesCount, int count, float x, float y, const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds, DrawOpMode drawOpMode) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dcontext.h192 GLsizei bounds; member in struct:android::gl::array_t
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java520 public void setBoundsInParent(Object info, Rect bounds); argument
522 public void setBoundsInScreen(Object info, Rect bounds); argument
835 public void setBoundsInParent(Object info, Rect bounds) { argument
840 public void setBoundsInScreen(Object info, Rect bounds) { argument
1396 public void setBoundsInParent(Object info, Rect bounds) { argument
1397 AccessibilityNodeInfoCompatIcs.setBoundsInParent(info, bounds);
1401 public void setBoundsInScreen(Object info, Rect bounds) { argument
1402 AccessibilityNodeInfoCompatIcs.setBoundsInScreen(info, bounds);
2738 * Gets the node bounds in parent coordinates.
2740 * @param outBounds The output node bounds
2757 setBoundsInParent(Rect bounds) argument
2781 setBoundsInScreen(Rect bounds) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManager.java550 /** Returns true if the task bounds should persist across power cycles. */
600 * are laid out differently as they are allowed to extend past the display bounds
646 * Returns true if the stack should be resized to match the bounds specified by
733 * that the resize doesn't need to preserve the window, and can be skipped if bounds
748 * that the resize should be performed even if the bounds appears unchanged.
770 * even if the bounds is unchanged. Usually used to force a resizing when a drag action
1333 * The bounds of the task.
1336 public Rect bounds; field in class:ActivityManager.RecentTaskInfo
1387 if (bounds != null) {
1389 bounds
2372 public Rect bounds = new Rect(); field in class:ActivityManager.StackInfo
[all...]
H A DIActivityManager.java151 public boolean moveTopActivityToPinnedStack(int stackId, Rect bounds) throws RemoteException; argument
154 * Resizes the input stack id to the given bounds.
157 * @param bounds Bounds to resize the stack to or {@code null} for fullscreen.
167 public void resizeStack(int stackId, Rect bounds, boolean allowResizeInDockedMode, argument
177 * Resizes the docked stack, and all other stacks as the result of the dock stack bounds change.
179 * @param dockedBounds The bounds for the docked stack.
180 * @param tempDockedTaskBounds The temporary bounds for the tasks in the docked stack, which
181 * might be different from the stack bounds to allow more
183 * same as the stack bounds.
184 * @param tempDockedTaskInsetBounds The temporary bounds fo
579 resizeTask(int taskId, Rect bounds, int resizeMode) argument
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java1481 * Gets the node bounds in parent coordinates.
1483 * @param outBounds The output node bounds.
1491 * Sets the node bounds in parent coordinates.
1498 * @param bounds The node bounds.
1502 public void setBoundsInParent(Rect bounds) { argument
1504 mBoundsInParent.set(bounds.left, bounds.top, bounds.right, bounds
1538 setBoundsInScreen(Rect bounds) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStack.java311 // Current bounds of the stack or null if fullscreen.
490 * Defers updating the bounds of the stack. If the stack was resized/repositioned while
491 * deferring, the bounds will update in {@link #continueUpdateBounds()}.
501 * Continues updating bounds after updates have been deferred. If there was a resize attempt
503 * be resized to that bounds.
516 boolean updateBoundsAllowed(Rect bounds, Rect tempTaskBounds, argument
521 if (bounds != null) {
522 mDeferredBounds.set(bounds);
540 void setBounds(Rect bounds) { argument
541 mBounds = mFullscreen ? null : new Rect(bounds);
[all...]
H A DActivityStackSupervisor.java268 // The height/width divide used when fitting a task within a bounds with method
270 // We always want the task to to be visible in the bounds without affecting its size when
272 // the input bounds right or bottom side minus the width or height divided by this value.
1860 final Rect bounds = TaskRecord.validateBounds(options.getLaunchBounds());
1861 task.updateOverrideConfiguration(bounds);
1873 resizeStackLocked(stackId, bounds,
1878 // because Task's setBounds() also updates dim layer's bounds, but that has
1898 // We use the launch bounds in the activity options is the device supports freeform
2001 void resizeStackLocked(int stackId, Rect bounds, Rect tempTaskBounds, Rect tempTaskInsetBounds, argument
2004 resizeDockedStackLocked(bounds, tempTaskBound
2059 resizeStackUncheckedLocked(ActivityStack stack, Rect bounds, Rect tempTaskBounds, Rect tempTaskInsetBounds) argument
2236 resizeTaskLocked(TaskRecord task, Rect bounds, int resizeMode, boolean preserveWindow, boolean deferResume) argument
2520 moveTopStackActivityToPinnedStackLocked(int stackId, Rect bounds) argument
2545 moveActivityToPinnedStackLocked(ActivityRecord r, String reason, Rect bounds) argument
4327 fitWithinBounds(Rect bounds, Rect stackBounds) argument
[all...]
H A DActivityManagerService.java7530 // Use the default launch bounds for pinned stack if it doesn't exist yet or use the
7531 // current bounds.
7533 final Rect bounds = (pinnedStack != null)
7537 r, "enterPictureInPictureMode", bounds);
9025 rti.bounds = new Rect(tr.mBounds);
9344 public void resizeTask(int taskId, Rect bounds, int resizeMode) { argument
9358 if (bounds != null && task.inCropWindowsResizeMode()
9360 mWindowManager.scrollTask(task.taskId, bounds);
9365 // the requested bounds.
9367 // - a null bounds o
9936 moveTopActivityToPinnedStack(int stackId, Rect bounds) argument
9954 resizeStack(int stackId, Rect bounds, boolean allowResizeInDockedMode, boolean preserveWindows, boolean animate, int animationDuration) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java129 // The thickness of a window resize handle outside the window bounds on the free form workspace
691 // If the task has temp inset bounds set, we have to make sure all its windows uses
722 // If the bounds are frozen, we still want to translate the window freely and only
737 // and behave as if the task were given smaller bounds
1098 * Retrieves the visible bounds of the window.
1099 * @param bounds The rect which gets the bounds.
1101 void getVisibleBounds(Rect bounds) { argument
1104 bounds.setEmpty();
1115 bounds
[all...]
H A DWindowManagerService.java3404 Rect bounds, Configuration config) {
3406 + " atoken=" + atoken + " bounds=" + bounds);
3412 Task task = new Task(taskId, stack, userId, this, bounds, config);
4969 public void setDockedStackCreateState(int mode, Rect bounds) { argument
4971 setDockedStackCreateStateLocked(mode, bounds);
4975 void setDockedStackCreateStateLocked(int mode, Rect bounds) { argument
4977 mDockedStackCreateBounds = bounds;
4986 * @return The initial bounds the stack was created with. null means fullscreen.
5009 Rect bounds
3403 createTaskLocked(int taskId, int stackId, int userId, AppWindowToken atoken, Rect bounds, Configuration config) argument
5120 getStackDockedModeBounds(int stackId, Rect bounds, boolean ignoreVisibility) argument
5132 getStackBounds(int stackId, Rect bounds) argument
5151 resizeStack(int stackId, Rect bounds, SparseArray<Configuration> configs, SparseArray<Rect> taskBounds, SparseArray<Rect> taskTempInsetBounds) argument
5180 positionTaskInStack(int taskId, int stackId, int position, Rect bounds, Configuration config) argument
5209 resizeTask(int taskId, Rect bounds, Configuration configuration, boolean relayout, boolean forced) argument
5242 scrollTask(int taskId, Rect bounds) argument
5277 getTaskBounds(int taskId, Rect bounds) argument
10935 animateResizePinnedStack(final Rect bounds, final int animationDuration) argument
11056 getSmallestWidthForTaskBounds(Rect bounds) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java172 * Indicates the view is being flung outside of normal content bounds
786 * itself to modify the bounds of the selection shown for that item.
790 * Called to allow the list item to adjust the bounds shown for
793 * @param bounds On call, this contains the bounds the list has
794 * selected for the item (that is the bounds of the entire view). The
797 public void adjustListItemSelectionBounds(Rect bounds); argument
2563 final Rect bounds = mSelectorRect;
2564 final float x = bounds.exactCenterX();
2565 final float y = bounds
[all...]
H A DTextView.java2292 * The Drawables' bounds will be set to their intrinsic bounds.
2320 * Drawable there. The Drawables' bounds will be set to their intrinsic
2321 * bounds.
2496 * Drawables' bounds will be set to their intrinsic bounds.
2525 * there. The Drawables' bounds will be set to their intrinsic bounds.
3084 * metrics, and also increases top and bottom bounds to provide more space.
5267 Rect bounds
5943 getLineBounds(int line, Rect bounds) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java3722 public void setBounds(Rect bounds) { argument
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java1113 // Intersect with the bounds of the window to skip
1684 // If the activity was just relaunched, it might have unfrozen the task bounds (while
1686 // bounds.
2747 final Rect bounds = mAttachInfo.mTmpInvalRect;
2748 final boolean hasFocus = getAccessibilityFocusedRect(bounds);
2750 bounds.setEmpty();
2752 if (!bounds.equals(drawable.getBounds())) {
2946 final Rect bounds = mAttachInfo.mTmpInvalRect;
2947 if (getAccessibilityFocusedRect(bounds)) {
2950 drawable.setBounds(bounds);
2958 getAccessibilityFocusedRect(Rect bounds) argument
[all...]
H A DView.java459 * its current bounds.
491 * <li>If in the course of processing the event, the view's bounds may need
1730 * lie outside of this view's bounds.
3313 * Current clip bounds. to which all drawing of this view are constrained.
3394 * visible edges of this view its bounds.
5184 final Rect bounds = mScrollCache.mScrollBarBounds;
5185 getVerticalScrollBarBounds(bounds);
5186 if (bounds.contains((int)x, (int)y)) {
5191 final Rect bounds = mScrollCache.mScrollBarBounds;
5192 getHorizontalScrollBarBounds(bounds);
14700 getHorizontalScrollBarBounds(Rect bounds) argument
14715 getVerticalScrollBarBounds(Rect bounds) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 2552 milliseconds

123456