Searched defs:target (Results 176 - 200 of 371) sorted by relevance

1234567891011>>

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/helper/
H A DItemTouchHelperTest.java145 final RecyclerView.ViewHolder target = mRecyclerView
147 TouchUtils.dragViewToX(getInstrumentation(), target.itemView, Gravity.CENTER, targetX);
152 return mCalback.getSwipe(target) != null;
155 final SwipeRecord swipe = mCalback.getSwipe(target);
167 assertTrue(mCalback.isCleared(target));
190 RecyclerView.ViewHolder target) {
191 mMoveRecordList.add(new MoveRecord(viewHolder, target));
189 onMove(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder, RecyclerView.ViewHolder target) argument
/frameworks/base/core/java/android/animation/
H A DAnimator.java415 * ObjectAnimator object will use the information it has about its target object
418 * information (such as a target object) to gather these values.
427 * ObjectAnimator object will use the information it has about its target object
430 * information (such as a target object) to gather these values.
436 * Sets the target object whose property will be animated by this animation. Not all subclasses
437 * operate on target objects (for example, {@link ValueAnimator}, but this method
441 * <strong>Note:</strong> The target is stored as a weak reference internally to avoid leaking
445 * @param target The object being animated
447 public void setTarget(@Nullable Object target) { argument
/frameworks/base/core/java/android/app/
H A DActivityManagerInternal.java175 public abstract void setPendingIntentWhitelistDuration(IIntentSender target, argument
/frameworks/base/core/java/android/transition/
H A DTransitionSet.java208 public TransitionSet addTarget(View target) { argument
210 mTransitions.get(i).addTarget(target);
212 return (TransitionSet) super.addTarget(target);
253 public TransitionSet removeTarget(View target) { argument
255 mTransitions.get(i).removeTarget(target);
257 return (TransitionSet) super.removeTarget(target);
261 public TransitionSet removeTarget(Class target) { argument
263 mTransitions.get(i).removeTarget(target);
265 return (TransitionSet) super.removeTarget(target);
269 public TransitionSet removeTarget(String target) { argument
277 excludeTarget(View target, boolean exclude) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewParent.java59 * The target View has been invalidated, or has had a drawing property changed that
68 * @param child Direct child of this ViewParent containing target
69 * @param target The view that needs to redraw
71 default void onDescendantInvalidated(@NonNull View child, @NonNull View target) { argument
74 getParent().onDescendantInvalidated(child, target);
512 * true, this ViewParent will become the target view's nested scrolling parent for the duration
517 * @param child Direct child of this ViewParent containing target
518 * @param target View that initiated the nested scroll
523 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); argument
534 * @param child Direct child of this ViewParent containing target
541 onNestedScrollAccepted(View child, View target, int nestedScrollAxes) argument
554 onStopNestedScroll(View target) argument
577 onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
600 onNestedPreScroll(View target, int dx, int dy, int[] consumed) argument
621 onNestedFling(View target, float velocityX, float velocityY, boolean consumed) argument
643 onNestedPreFling(View target, float velocityX, float velocityY) argument
662 onNestedPrePerformAccessibilityAction(View target, int action, Bundle arguments) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DResolverComparator.java195 // compute features for each target according to usage stats of targets.
206 for (ResolvedComponentInfo target : targets) {
208 mTargetsDict.put(target.name, resolverTarget);
209 final UsageStats pkStats = mStats.get(target.name.getPackageName());
214 if (!target.name.getPackageName().equals(mReferrerPackage)
215 && !isPersistentProcess(target)) {
252 target.name.getPackageName() + " is " +
271 for (ResolverTarget target : mTargets) {
272 final float recency = target.getRecencyScore() / mostRecencyScore;
273 setFeatures(target, recenc
560 addDefaultSelectProbability(ResolverTarget target) argument
567 setFeatures(ResolverTarget target, float recencyScore, float launchScore, float timeSpentScore, float chooserScore) argument
[all...]
/frameworks/base/core/java/com/android/internal/graphics/palette/
H A DTarget.java43 * <p>To use the target, use the {@link Palette.Builder#addTarget(Target)} API when building a
77 * A target which has the characteristics of a vibrant color which is light in luminance.
82 * A target which has the characteristics of a vibrant color which is neither light or dark.
87 * A target which has the characteristics of a vibrant color which is dark in luminance.
92 * A target which has the characteristics of a muted color which is light in luminance.
97 * A target which has the characteristics of a muted color which is neither light or dark.
102 * A target which has the characteristics of a muted color which is dark in luminance.
152 * The minimum saturation value for this target.
160 * The target saturation value for this target
274 setDefaultDarkLightnessValues(Target target) argument
279 setDefaultNormalLightnessValues(Target target) argument
285 setDefaultLightLightnessValues(Target target) argument
290 setDefaultVibrantSaturationValues(Target target) argument
295 setDefaultMutedSaturationValues(Target target) argument
316 Builder(Target target) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DGIFMovie.cpp292 // return true if area of 'target' is completely covers area of 'covered'
293 static bool checkIfCover(const SavedImage* target, const SavedImage* covered) argument
295 if (target->ImageDesc.Left <= covered->ImageDesc.Left
297 target->ImageDesc.Left + target->ImageDesc.Width
298 && target->ImageDesc.Top <= covered->ImageDesc.Top
300 target->ImageDesc.Top + target->ImageDesc.Height) {
/frameworks/base/libs/hwui/debug/
H A Dnullegl.cpp159 EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list) { argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFrameFormat.java67 public FrameFormat(int baseType, int target) { argument
69 mTarget = target;
200 // Check target
257 // Check target
358 public static String targetToString(int target) { argument
359 switch (target) {
396 throw new RuntimeException("Unknown target type '" + targetString + "'!");
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
H A DUtils.java219 float source, float target, float progress) {
220 // interpolate the angle from source to target
222 // shortest path to change source to target.
223 float diff = target - source;
232 float source, float target, float progress) {
233 return source + progress * (target - source);
218 interpolateAngle( float source, float target, float progress) argument
231 interpolateScale( float source, float target, float progress) argument
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java99 // Draws the source rectangle part of the texture to the target rectangle.
100 public abstract void drawTexture(BasicTexture texture, RectF source, RectF target); argument
114 // The region of the texture is defined by parameter "src". The target
115 // rectangle is specified by parameter "target".
117 float ratio, RectF src, RectF target);
169 * @param texture The target texture to write to.
116 drawMixed(BasicTexture from, int toColor, float ratio, RectF src, RectF target) argument
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncOperation.java66 /** Identifying info for the target for this operation. */
67 public final SyncStorageEngine.EndPoint target; field in class:SyncOperation
114 this(op.target, op.owningUid, op.owningPackage, op.reason, op.syncSource,
123 this.target = info;
143 SyncOperation op = new SyncOperation(target, owningUid, owningPackage, reason, syncSource,
150 target = other.target;
215 jobInfoExtras.putString("provider", target.provider);
216 jobInfoExtras.putString("accountName", target.account.name);
217 jobInfoExtras.putString("accountType", target
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DBoundsAnimationController.java143 // the same {@link #BoundsAnimationTarget} target.
146 // {@link #BoundsAnimationTarget} target.
151 // True if the animation target is animating from the fullscreen. Only one of
155 // True if the animation target should be moved to the fullscreen stack at the end of this
172 BoundsAnimator(BoundsAnimationTarget target, Rect from, Rect to, argument
177 mTarget = target;
213 // Ensure that we have prepared the target for animation before
233 // The target will notify us via BoundsAnimationController#resume.
273 // Whoops, the target doesn't feel like animating anymore. Let's immediately finish
349 * @return true if the animation target i
378 animateBounds(final BoundsAnimationTarget target, Rect from, Rect to, int animationDuration, @SchedulePipModeChangedState int schedulePipModeChangedState, boolean moveFromFullscreen, boolean moveToFullscreen) argument
386 animateBoundsImpl(final BoundsAnimationTarget target, Rect from, Rect to, int animationDuration, @SchedulePipModeChangedState int schedulePipModeChangedState, boolean moveFromFullscreen, boolean moveToFullscreen) argument
[all...]
/frameworks/ex/framesequence/jni/
H A DFrameSequence_gif.cpp140 // return true if area of 'target' is completely covers area of 'covered'
141 static bool checkIfCover(const GifImageDesc& target, const GifImageDesc& covered) { argument
142 return target.Left <= covered.Left
143 && covered.Left + covered.Width <= target.Left + target.Width
144 && target.Top <= covered.Top
145 && covered.Top + covered.Height <= target.Top + target.Height;
/frameworks/native/cmds/servicemanager/
H A Dbinder.c50 fprintf(stderr," target %016"PRIx64" cookie %016"PRIx64" code %08x flags %08x\n",
51 (uint64_t)txn->target.ptr, (uint64_t)txn->cookie, txn->code, txn->flags);
198 data.txn.target.ptr = 0;
306 void binder_acquire(struct binder_state *bs, uint32_t target) argument
310 cmd[1] = target;
314 void binder_release(struct binder_state *bs, uint32_t target) argument
318 cmd[1] = target;
322 void binder_link_to_death(struct binder_state *bs, uint32_t target, struct binder_death *death) argument
330 data.payload.handle = target;
337 uint32_t target, uint32_
335 binder_call(struct binder_state *bs, struct binder_io *msg, struct binder_io *reply, uint32_t target, uint32_t code) argument
[all...]
/frameworks/native/libs/binder/tests/
H A DbinderThroughputTest.cpp206 int target = cs_pair ? num % server_count : rand() % workers.size(); local
214 status_t ret = workers[target]->transact(BINDER_NOP, data, &reply);
/frameworks/native/opengl/libagl/
H A Dstate.cpp282 void glHint(GLenum target, GLenum mode) argument
285 switch (target) {
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES20RenderEngine.cpp304 GLuint target = texture.getTextureTarget(); local
305 glBindTexture(target, texture.getTextureName());
310 glTexParameteri(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
311 glTexParameteri(target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
312 glTexParameteri(target, GL_TEXTURE_MAG_FILTER, filter);
313 glTexParameteri(target, GL_TEXTURE_MIN_FILTER, filter);
/frameworks/rs/driver/
H A DrsdShader.cpp413 const GLenum target = drvTex->glTarget; local
414 if (!target) {
424 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
429 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
433 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
439 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
442 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MAG_FILTER,
444 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_WRAP_S, transNP[s->mHal.state.wrapS]);
445 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_WRAP_T, transNP[s->mHal.state.wrapT]);
448 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTE
[all...]
/frameworks/support/compat/java/android/support/v4/graphics/
H A DPathParser.java132 * @param nodesTo The target path represented in an array of PathDataNode
154 * Update the target's data to match the source.
155 * Before calling this, make sure canMorph(target, source) is true.
157 * @param target The target path represented in an array of PathDataNode
160 public static void updateNodes(PathDataNode[] target, PathDataNode[] source) { argument
162 target[i].mType = source[i].mType;
164 target[i].mParams[j] = source[i].mParams[j];
333 * @param path The target Path object.
691 * @param p The target fo
[all...]
/frameworks/support/transition/src/android/support/transition/
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/v7/palette/src/main/java/android/support/v7/graphics/
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/frameworks/support/samples/SupportLeanbackShowcase/libs/
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/libs/
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 ...

Completed in 8858 milliseconds

1234567891011>>