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

/frameworks/native/libs/ui/
H A DRect.cpp5 * you may not use this file except in compliance with the License.
84 bool Rect::intersect(const Rect& with, Rect* result) const { argument
85 result->left = max(left, with.left);
86 result->top = max(top, with.top);
87 result->right = min(right, with.right);
88 result->bottom = min(bottom, with.bottom);
/frameworks/native/libs/gui/
H A DStreamSplitter.cpp5 * you may not use this file except in compliance with the License.
282 void StreamSplitter::BufferTracker::mergeFence(const sp<Fence>& with) { argument
283 mMergedFence = Fence::merge(String8("StreamSplitter"), mMergedFence, with);
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java5 * you may not use this file except in compliance with the License.
33 * used in conjunction with methods in the {@link AnimatorSet.Builder Builder}
37 * <p>It is possible to set up a <code>AnimatorSet</code> with circular dependencies between
46 * <p>For more information about animating with {@code AnimatorSet}, read the
91 * is replayed with no changes, it does not have to re-sort the nodes again.
131 * This is equivalent to calling {@link #play(Animator)} with the first animator in the
132 * set and then {@link Builder#with(Animator)} with each of the other animators. Note that
133 * an Animator with a {@link Animator#setStartDelay(long) startDelay} will not actually
145 builder.with(item
1190 public Builder with(Animator anim) { method in class:AnimatorSet.Builder
[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 977 milliseconds