Searched defs:target (Results 126 - 150 of 242) sorted by relevance

12345678910

/frameworks/base/core/java/android/app/
H A DPendingIntent.java40 * A description of an Intent and target action to perform with it. Instances
291 IIntentSender target =
297 return target != null ? new PendingIntent(target) : null;
316 IIntentSender target =
322 return target != null ? new PendingIntent(target) : null;
433 IIntentSender target =
438 return target != null ? new PendingIntent(target)
989 PendingIntent(IIntentSender target) argument
993 PendingIntent(IBinder target) argument
[all...]
/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.java423 * true, this ViewParent will become the target view's nested scrolling parent for the duration
428 * @param child Direct child of this ViewParent containing target
429 * @param target View that initiated the nested scroll
434 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); argument
445 * @param child Direct child of this ViewParent containing target
446 * @param target View that initiated the nested scroll
452 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); argument
463 * @param target View that initiated the nested scroll
465 public void onStopNestedScroll(View target); argument
482 * @param target Th
488 onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
511 onNestedPreScroll(View target, int dx, int dy, int[] consumed) argument
532 onNestedFling(View target, float velocityX, float velocityY, boolean consumed) argument
554 onNestedPreFling(View target, float velocityX, float velocityY) argument
573 onNestedPrePerformAccessibilityAction(View target, int action, Bundle arguments) argument
[all...]
/frameworks/base/libs/hwui/
H A DAnimator.h63 void attach(RenderNode* target);
81 virtual float getValue(RenderNode* target) const = 0;
82 virtual void setValue(RenderNode* target, float value) = 0;
83 RenderNode* target() { return mTarget; } function in class:android::uirenderer::BaseRenderNodeAnimator
140 virtual float getValue(RenderNode* target) const;
141 virtual void setValue(RenderNode* target, float value);
163 virtual float getValue(RenderNode* target) const;
164 virtual void setValue(RenderNode* target, float value);
182 virtual float getValue(RenderNode* target) const;
183 virtual void setValue(RenderNode* target, floa
[all...]
H A DCaches.cpp545 void Caches::bindTexture(GLenum target, GLuint texture) { argument
546 if (target == GL_TEXTURE_2D) {
550 // target=GL_TEXTURE_EXTERNAL_OES, don't cache this target
552 glBindTexture(target, texture);
/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/SystemUI/src/com/android/systemui/statusbar/phone/
H A DScrimController.java257 private void startScrimAnimation(final ScrimView scrim, float target) { argument
259 ValueAnimator anim = ValueAnimator.ofFloat(current, target);
/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.java63 /** Identifying info for the target for this operation. */
64 public final SyncStorageEngine.EndPoint target; field in class:SyncOperation
111 this.target = info;
142 this(other.target, other.reason, other.syncSource, new Bundle(other.extras),
151 return this.target.matchesSpec(other.target);
183 final SyncStorageEngine.EndPoint other = toRun.target;
184 if (target.target_provider) {
185 return target.account.type.equals(other.account.type)
186 && target
[all...]
/frameworks/ex/framesequence/jni/
H A DFrameSequence_gif.cpp149 // return true if area of 'target' is completely covers area of 'covered'
150 static bool checkIfCover(const GifImageDesc& target, const GifImageDesc& covered) { argument
151 return target.Left <= covered.Left
152 && covered.Left + covered.Width <= target.Left + target.Width
153 && target.Top <= covered.Top
154 && covered.Top + covered.Height <= target.Top + target.Height;
H A DFrameSequence_webp.cpp139 // return true if area of 'target' completely covers area of 'covered'
140 static bool checkIfCover(const WebPIterator& target, const WebPIterator& covered) { argument
142 const int target_x_max = target.x_offset + target.width;
144 const int target_y_max = target.y_offset + target.height;
145 return target.x_offset <= covered.x_offset
147 && target.y_offset <= covered.y_offset
/frameworks/native/cmds/servicemanager/
H A Dbinder.c48 fprintf(stderr," target %016"PRIx64" cookie %016"PRIx64" code %08x flags %08x\n",
49 (uint64_t)txn->target.ptr, (uint64_t)txn->cookie, txn->code, txn->flags);
182 data.txn.target.ptr = 0;
286 void binder_acquire(struct binder_state *bs, uint32_t target) argument
290 cmd[1] = target;
294 void binder_release(struct binder_state *bs, uint32_t target) argument
298 cmd[1] = target;
302 void binder_link_to_death(struct binder_state *bs, uint32_t target, struct binder_death *death) argument
310 data.payload.handle = target;
317 uint32_t target, uint32_
315 binder_call(struct binder_state *bs, struct binder_io *msg, struct binder_io *reply, uint32_t target, uint32_t code) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dstate.cpp282 void glHint(GLenum target, GLenum mode) argument
285 switch (target) {
/frameworks/rs/driver/
H A DrsdShader.cpp407 const GLenum target = drvTex->glTarget; local
408 if (!target) {
418 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
423 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
427 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
433 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
436 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MAG_FILTER,
438 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_WRAP_S, transNP[s->mHal.state.wrapS]);
439 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_WRAP_T, transNP[s->mHal.state.wrapT]);
442 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTE
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/
H A DTransitionHelper.java116 public void excludeChildren(Object transition, View target, boolean exclude); argument
/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java408 * <code>TypeConverter</code> to convert from <code>PointF</code> to the target
481 * <code>TypeConverter</code> to convert from <code>PointF</code> to the target
661 * target object.
715 " not found on target class " + targetClass);
779 * object, it will be derived automatically given the property name, target object, and
783 * on the target object.
784 * @param target The object on which the setter (and possibly getter) exist.
786 void setupSetterAndGetter(Object target) { argument
789 // check to make sure that mProperty is on the class of target
798 testValue = convertBack(mProperty.get(target));
862 setupValue(Object target, Keyframe kf) argument
893 setupStartValue(Object target) argument
908 setupEndValue(Object target) argument
937 setAnimatedValue(Object target) argument
1150 setAnimatedValue(Object target) argument
1288 setAnimatedValue(Object target) argument
1385 setAnimatedValue(Object target) argument
1415 setupSetterAndGetter(Object target) argument
1492 setAnimatedValue(Object target) argument
1522 setupSetterAndGetter(Object target) argument
1611 nCallIntMethod(Object target, long methodID, int arg) argument
1612 nCallFloatMethod(Object target, long methodID, float arg) argument
1613 nCallTwoIntMethod(Object target, long methodID, int arg1, int arg2) argument
1614 nCallFourIntMethod(Object target, long methodID, int arg1, int arg2, int arg3, int arg4) argument
1616 nCallMultipleIntMethod(Object target, long methodID, int[] args) argument
1617 nCallTwoFloatMethod(Object target, long methodID, float arg1, float arg2) argument
1619 nCallFourFloatMethod(Object target, long methodID, float arg1, float arg2, float arg3, float arg4) argument
1621 nCallMultipleFloatMethod(Object target, long methodID, float[] args) argument
[all...]
/frameworks/base/core/java/android/net/
H A DLinkProperties.java713 * Compares this {@code LinkProperties} interface name against the target
715 * @param target LinkProperties to compare.
719 public boolean isIdenticalInterfaceName(LinkProperties target) { argument
720 return TextUtils.equals(getInterfaceName(), target.getInterfaceName());
724 * Compares this {@code LinkProperties} interface addresses against the target
726 * @param target LinkProperties to compare.
730 public boolean isIdenticalAddresses(LinkProperties target) { argument
731 Collection<InetAddress> targetAddresses = target.getAddresses();
738 * Compares this {@code LinkProperties} DNS addresses against the target
740 * @param target LinkPropertie
744 isIdenticalDnses(LinkProperties target) argument
763 isIdenticalRoutes(LinkProperties target) argument
776 isIdenticalHttpProxy(LinkProperties target) argument
788 isIdenticalStackedLinks(LinkProperties target) argument
809 isIdenticalMtu(LinkProperties target) argument
820 isIdenticalTcpBufferSizes(LinkProperties target) argument
868 compareAddresses(LinkProperties target) argument
897 compareDnses(LinkProperties target) argument
927 compareAllRoutes(LinkProperties target) argument
956 compareAllInterfaceNames(LinkProperties target) argument
[all...]
H A DMobileDataStateTracker.java104 * @param target is the Hander to which to return the events.
106 public void startMonitoring(Context context, Handler target) { argument
107 mTarget = target;
110 mHandler = new MdstHandler(target.getLooper(), this);
/frameworks/base/core/java/android/text/
H A DHtml.java809 public void processingInstruction(String target, String data) throws SAXException { argument
/frameworks/base/core/jni/
H A Dcom_android_internal_os_Zygote.cpp276 const char* target = getenv("EMULATED_STORAGE_TARGET"); local
278 if (source == NULL || target == NULL || legacy == NULL) {
288 const String8 target_user(String8::format("%s/%d", target, user_id));
297 if (TEMP_FAILURE_RETRY(mount(source, target, NULL, MS_BIND, NULL)) == -1) {
298 ALOGW("Failed to mount %s to %s :%d", source, target, errno);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java198 float target = hand + mOldHeight;
199 float newHeight = clamp(target);
205 private float clamp(float target) { argument
206 float out = target;
/frameworks/base/services/print/java/com/android/server/print/
H A DRemotePrintSpooler.java476 public List<PrintJobInfo> getPrintJobInfos(IPrintSpooler target, argument
480 target.getPrintJobInfos(mCallback, componentName, state, appId, sequence);
498 public PrintJobInfo getPrintJobInfo(IPrintSpooler target, PrintJobId printJobId, argument
501 target.getPrintJobInfo(printJobId, mCallback, appId, sequence);
519 public boolean setPrintJobState(IPrintSpooler target, PrintJobId printJobId, argument
522 target.setPrintJobState(printJobId, status, error, mCallback, sequence);
540 public boolean setPrintJobTag(IPrintSpooler target, PrintJobId printJobId, argument
543 target.setPrintJobTag(printJobId, tag, mCallback, sequence);
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp110 // initialize target-dependent sections
403 LDSection* target = m_pModule->getSection((*out)->name()); local
404 assert(target != NULL && target->hasSectionData());
406 *target->getSectionData())) {
407 builder.UpdateSectionAlign(*target, *out_sect);
408 m_LDBackend.updateSectionFlags(*target, *out_sect);
470 /// target-dependent symbols
472 /// target symbols, return false
553 // 1. its section kind is changed to Ignore. (The target sectio
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiAutoJoinController.java559 int getConnectChoice(WifiConfiguration source, WifiConfiguration target) { argument
561 if (source == null || target == null) {
566 && source.connectChoices.containsKey(target.configKey(true))) {
567 choice = source.connectChoices.get(target.configKey(true));
573 choice = config.connectChoices.get(target.configKey(true));
1529 // - the target config had a recent roaming failure
1531 // - the target config is not the last selected

Completed in 7836 milliseconds

12345678910