Searched defs:with (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/libs/ui/
H A DRect.cpp5 * you may not use this file except in compliance with the License.
87 bool Rect::intersect(const Rect& with, Rect* result) const argument
89 result->left = max(left, with.left);
90 result->top = max(top, with.top);
91 result->right = min(right, with.right);
92 result->bottom = min(bottom, with.bottom);
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java5 * you may not use this file except in compliance with the License.
32 * used in conjunction with methods in the {@link AnimatorSet.Builder Builder}
36 * <p>It is possible to set up a <code>AnimatorSet</code> with circular dependencies between
45 * <p>For more information about animating with {@code AnimatorSet}, read the
90 * is replayed with no changes, it does not have to re-sort the nodes again.
134 builder.with(items[i]);
152 builder.with(anim);
249 * calling <code>play(a1).with(a2)</code> sets up the AnimatorSet to play
565 * state, with fresh, empty data structures. Then we will build up the nodes list
791 * - any nodes with n
1052 public Builder with(Animator anim) { method in class:AnimatorSet.Builder
[all...]

Completed in 35 milliseconds