Searched defs:with (Results 1 - 3 of 3) sorted by path

/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.
130 * This is equivalent to calling {@link #play(Animator)} with the first animator in the
131 * set and then {@link Builder#with(Animator)} with each of the other animators. Note that
132 * an Animator with a {@link Animator#setStartDelay(long) startDelay} will not actually
144 builder.with(item
1176 public Builder with(Animator anim) { method in class:AnimatorSet.Builder
[all...]
/frameworks/native/libs/gui/
H A DStreamSplitter.cpp5 * you may not use this file except in compliance with the License.
280 void StreamSplitter::BufferTracker::mergeFence(const sp<Fence>& with) { argument
281 mMergedFence = Fence::merge(String8("StreamSplitter"), mMergedFence, with);
/frameworks/native/libs/ui/
H A DRect.cpp5 * you may not use this file except in compliance with the License.
82 bool Rect::intersect(const Rect& with, Rect* result) const { argument
83 result->left = max(left, with.left);
84 result->top = max(top, with.top);
85 result->right = min(right, with.right);
86 result->bottom = min(bottom, with.bottom);

Completed in 564 milliseconds