Searched defs:target (Results 1 - 25 of 371) sorted by last modified time

1234567891011>>

/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... java.util.Collection) char character int i String target java.lang.reflect.Type fieldType java. ...
H A Dpicasso-2.5.2.jar ... Request request final java.lang.ref.WeakReference target final boolean noFade final int memoryPolicy final int networkPolicy final ...
/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... java.util.Collection) char character int i String target java.lang.reflect.Type fieldType java. ...
H A Dpicasso-2.5.2.jar ... Request request final java.lang.ref.WeakReference target final boolean noFade final int memoryPolicy final int networkPolicy final ...
/frameworks/support/transition/api14/android/support/transition/
H A DObjectAnimatorUtilsApi14.java29 public <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path) { argument
30 return ObjectAnimator.ofFloat(target, new PathProperty<>(property, path), 0f, 1f);
H A DPathProperty.java57 public void set(T target, Float fraction) { argument
62 mProperty.set(target, mPointF);
/frameworks/support/transition/api21/android/support/transition/
H A DObjectAnimatorUtilsApi21.java29 public <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path) { argument
30 return ObjectAnimator.ofObject(target, property, null, path);
/frameworks/support/transition/base/android/support/transition/
H A DObjectAnimatorUtilsImpl.java26 <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path); argument
/frameworks/support/transition/src/android/support/transition/
H A DObjectAnimatorUtils.java37 static <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path) { argument
38 return IMPL.ofPointF(target, property, path);
H A DTransition.java101 * &lt;target android:targetId="@id/grayscaleContainer"/&gt;
112 * takes a set of {code target} tags, each of which lists a specific <code>targetId</code> which
221 // Number of per-target instances of this Transition currently running. This count is
255 * Constructs a Transition object with no target objects. A transition with
256 * no targets defaults to running on all target objects in the scene hierarchy
257 * (if the transition is not contained in a TransitionSet), or all target
445 * values that the transition may need to set up initial target values
449 * want to set initial values on target views prior to the overall
456 * on all target views, so a Transition that wants to animate from a
460 * the transition needs to run on the given target an
811 isValidTarget(View target) argument
995 addTarget(@onNull View target) argument
1093 removeTarget(@onNull View target) argument
1145 removeTarget(@onNull Class target) argument
1156 excludeObject(ArrayList<T> list, T target, boolean exclude) argument
1188 excludeTarget(@onNull View target, boolean exclude) argument
1266 excludeChildren(@onNull View target, boolean exclude) argument
1320 excludeView(ArrayList<View> list, View target, boolean exclude) argument
[all...]
H A DTransitionSet.java218 public TransitionSet addTarget(@NonNull View target) { argument
220 mTransitions.get(i).addTarget(target);
222 return (TransitionSet) super.addTarget(target);
269 public TransitionSet removeTarget(@NonNull View target) { argument
271 mTransitions.get(i).removeTarget(target);
273 return (TransitionSet) super.removeTarget(target);
278 public TransitionSet removeTarget(@NonNull Class target) { argument
280 mTransitions.get(i).removeTarget(target);
282 return (TransitionSet) super.removeTarget(target);
287 public TransitionSet removeTarget(@NonNull String target) { argument
296 excludeTarget(@onNull View target, boolean exclude) argument
[all...]
/frameworks/support/transition/tests/src/android/support/transition/
H A DFadeTest.java214 private void changeVisibility(final Fade fade, final ViewGroup container, final View target, argument
222 target.setVisibility(visibility);
229 * target starts fading in or out.
/frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/
H A DTransitionHelper.java144 void excludeChildren(Object transition, View target, boolean exclude); argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DParallaxEffect.java132 * @param target ParallaxTarget to add.
134 public final void addTarget(ParallaxTarget target) { argument
135 mTargets.add(target);
141 * @param target ParallaxTarget to add.
144 public final ParallaxEffect target(ParallaxTarget target) { argument
145 mTargets.add(target);
157 public final ParallaxEffect target(Object targetObject, PropertyValuesHolder values) { method in class:ParallaxEffect
163 * Creates a {@link ParallaxTarget} using direct mapping from source property into target
167 * @param targetProperty The target propert
173 public final <T, V extends Number> ParallaxEffect target(T targetObject, method in class:ParallaxEffect
192 removeTarget(ParallaxTarget target) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java467 public boolean onStartNestedScroll(View child, View target, int axes) { argument
475 public void onNestedScrollAccepted(View child, View target, int axes) { argument
476 mParentHelper.onNestedScrollAccepted(child, target, axes);
485 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, argument
492 public void onStopNestedScroll(View target) { argument
506 public boolean onNestedFling(View target, float velocityX, float velocityY, boolean consumed) { argument
520 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) { argument
525 public boolean onNestedPreFling(View target, float velocityX, float velocityY) { argument
/frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
H A DPalette.java306 * Returns the selected swatch for the given target from the palette, or {@code null} if one
310 public Swatch getSwatchForTarget(@NonNull final Target target) { argument
311 return mSelectedSwatches.get(target);
315 * Returns the selected color for the given target from the palette as an RGB packed int.
320 public int getColorForTarget(@NonNull final Target target, @ColorInt final int defaultColor) { argument
321 Swatch swatch = getSwatchForTarget(target);
351 final Target target = mTargets.get(i);
352 target.normalizeWeights();
353 mSelectedSwatches.put(target, generateScoredTarget(target));
359 generateScoredTarget(final Target target) argument
368 getMaxScoredSwatchForTarget(final Target target) argument
384 shouldBeScoredForTarget(final Swatch swatch, final Target target) argument
393 generateScore(Swatch swatch, Target target) argument
760 addTarget(@onNull final Target target) argument
[all...]
H A DTarget.java25 * <p>To use the target, use the {@link Palette.Builder#addTarget(Target)} API when building a
59 * A target which has the characteristics of a vibrant color which is light in luminance.
64 * A target which has the characteristics of a vibrant color which is neither light or dark.
69 * A target which has the characteristics of a vibrant color which is dark in luminance.
74 * A target which has the characteristics of a muted color which is light in luminance.
79 * A target which has the characteristics of a muted color which is neither light or dark.
84 * A target which has the characteristics of a muted color which is dark in luminance.
134 * The minimum saturation value for this target.
142 * The target saturation value for this target
256 setDefaultDarkLightnessValues(Target target) argument
261 setDefaultNormalLightnessValues(Target target) argument
267 setDefaultLightLightnessValues(Target target) argument
272 setDefaultVibrantSaturationValues(Target target) argument
277 setDefaultMutedSaturationValues(Target target) argument
298 Builder(Target target) argument
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java423 * target is approaching, so it can decelerate early and smoothly and 2) while motion is
506 // LLM may decide to layout items for "extra" pixels to account for scrolling target,
987 * target position visible. If you are looking for a similar behavior to
2074 public void prepareForDrop(View view, View target, int x, int y) { argument
2079 final int targetPos = getPosition(target);
2086 - (mOrientationHelper.getDecoratedStart(target)
2091 - mOrientationHelper.getDecoratedEnd(target));
2095 scrollToPositionWithOffset(targetPos, mOrientationHelper.getDecoratedStart(target));
2098 mOrientationHelper.getDecoratedEnd(target)
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
H A DItemTouchHelper.java265 //re-used list for selecting a swap target
836 ViewHolder target = mCallback.chooseDropTarget(viewHolder, swapTargets, x, y);
837 if (target == null) {
842 final int toPosition = target.getAdapterPosition();
844 if (mCallback.onMove(mRecyclerView, viewHolder, target)) {
845 // keep target visible
847 target, toPosition, x, y);
969 // swipe target is chose w/o applying flags so it does not really check if swiping in that
1118 View target = findChildView(event);
1121 if (anim.mViewHolder.itemView == target) {
1309 prepareForDrop(View view, View target, int x, int y) argument
1584 canDropOver(RecyclerView recyclerView, ViewHolder current, ViewHolder target) argument
1608 onMove(RecyclerView recyclerView, ViewHolder viewHolder, ViewHolder target) argument
1895 onMoved(final RecyclerView recyclerView, final ViewHolder viewHolder, int fromPos, final ViewHolder target, int toPos, int x, int y) argument
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseWrapContentTest.java407 LongSparseArray<String> target,
411 assertNull(target.get(id));
412 target.put(id, log(base));
406 collectInto( LongSparseArray<String> target, List<? extends BaseRecyclerViewAnimationsTest.AnimateLogBase> list) argument
H A DRecyclerViewAnimationsTest.java221 final TestViewHolder target) throws Throwable {
238 .getViewForPosition(target.getAdapterPosition());
239 assertSame(targetView, target.itemView);
249 + "layout", target.itemView.getParent());
257 assertFalse(itemAnimator.contains(target, itemAnimator.mAnimatePersistenceList));
258 assertFalse(itemAnimator.contains(target, itemAnimator.mAnimateChangeList));
259 assertFalse(itemAnimator.contains(target, itemAnimator.mAnimateAppearanceList));
262 assertTrue(itemAnimator.contains(target, itemAnimator.mAnimateDisappearanceList));
264 assertTrue(recycledVHs.contains(target));
274 final TestViewHolder target) throw
492 postSetup(List<TestViewHolder> recycledList, TestViewHolder target) argument
[all...]
H A DRecyclerViewLayoutTest.java2480 Log.d(TAG, "scrolling to target position " + targetPosition);
2504 assertTrue("target position should be checked on time ",
2509 assertNotNull("should scroll to new target " + newTarget
4543 public boolean onStartNestedScroll(@NonNull View child, @NonNull View target, argument
4550 public void onNestedPreScroll(@NonNull View target, int dx, int dy, argument
4563 public void onStopNestedScroll(View target) { argument
4564 super.onStopNestedScroll(target);
4568 public void onStopNestedScroll(@NonNull View target, argument
4570 super.onStopNestedScroll(target, type);
H A DTestedFrameLayout.java134 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
135 return onStartNestedScroll(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
139 public void onNestedScrollAccepted(View child, View target, int axes) { argument
140 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH);
144 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) { argument
145 onNestedPreScroll(target, dx, dy, consumed, ViewCompat.TYPE_TOUCH);
149 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, argument
151 onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
156 public void onStopNestedScroll(View target) { argument
157 onStopNestedScroll(target, ViewCompa
168 onStartNestedScroll(@onNull View child, @NonNull View target, @ViewCompat.ScrollAxis int axes, @ViewCompat.NestedScrollType int type) argument
175 onNestedScrollAccepted(@onNull View child, @NonNull View target, @ViewCompat.ScrollAxis int axes, @ViewCompat.NestedScrollType int type) argument
183 onNestedPreFling(View target, float velocityX, float velocityY) argument
189 onNestedFling(View target, float velocityX, float velocityY, boolean consumed) argument
195 onNestedScroll(@onNull View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, @ViewCompat.NestedScrollType int type) argument
204 onNestedPreScroll(@onNull View target, int dx, int dy, @Nullable int[] consumed, @ViewCompat.NestedScrollType int type) argument
212 onStopNestedScroll(@onNull View target, @ViewCompat.NestedScrollType int type) argument
[all...]

Completed in 3696 milliseconds

1234567891011>>