/frameworks/base/media/mca/filterfw/java/android/filterfw/format/ |
D | PrimitiveFormat.java | 28 public static MutableFrameFormat createByteFormat(int count, int target) { in createByteFormat() argument 29 return createFormat(FrameFormat.TYPE_BYTE, count, target); in createByteFormat() 32 public static MutableFrameFormat createInt16Format(int count, int target) { in createInt16Format() argument 33 return createFormat(FrameFormat.TYPE_INT16, count, target); in createInt16Format() 36 public static MutableFrameFormat createInt32Format(int count, int target) { in createInt32Format() argument 37 return createFormat(FrameFormat.TYPE_INT32, count, target); in createInt32Format() 40 public static MutableFrameFormat createFloatFormat(int count, int target) { in createFloatFormat() argument 41 return createFormat(FrameFormat.TYPE_FLOAT, count, target); in createFloatFormat() 44 public static MutableFrameFormat createDoubleFormat(int count, int target) { in createDoubleFormat() argument 45 return createFormat(FrameFormat.TYPE_DOUBLE, count, target); in createDoubleFormat() [all …]
|
D | ObjectFormat.java | 29 public static MutableFrameFormat fromClass(Class clazz, int count, int target) { in fromClass() argument 31 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target); in fromClass() 36 result.setBytesPerSample(bytesPerSampleForClass(clazz, target)); in fromClass() 40 public static MutableFrameFormat fromClass(Class clazz, int target) { in fromClass() argument 41 return fromClass(clazz, FrameFormat.SIZE_UNSPECIFIED, target); in fromClass() 44 public static MutableFrameFormat fromObject(Object object, int target) { in fromObject() argument 46 ? new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target) in fromObject() 47 : fromClass(object.getClass(), FrameFormat.SIZE_UNSPECIFIED, target); in fromObject() 50 public static MutableFrameFormat fromObject(Object object, int count, int target) { in fromObject() argument 52 ? new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target) in fromObject() [all …]
|
/frameworks/base/core/tests/coretests/src/android/net/ |
D | LinkPropertiesTest.java | 45 public void assertLinkPropertiesEqual(LinkProperties source, LinkProperties target) { in assertLinkPropertiesEqual() argument 47 assertTrue(source.isIdenticalInterfaceName(target)); in assertLinkPropertiesEqual() 48 assertTrue(target.isIdenticalInterfaceName(source)); in assertLinkPropertiesEqual() 50 assertTrue(source.isIdenticalAddresses(target)); in assertLinkPropertiesEqual() 51 assertTrue(target.isIdenticalAddresses(source)); in assertLinkPropertiesEqual() 53 assertTrue(source.isIdenticalDnses(target)); in assertLinkPropertiesEqual() 54 assertTrue(target.isIdenticalDnses(source)); in assertLinkPropertiesEqual() 56 assertTrue(source.isIdenticalRoutes(target)); in assertLinkPropertiesEqual() 57 assertTrue(target.isIdenticalRoutes(source)); in assertLinkPropertiesEqual() 59 assertTrue(source.isIdenticalHttpProxy(target)); in assertLinkPropertiesEqual() [all …]
|
/frameworks/support/v4/java/android/support/v4/widget/ |
D | ListViewAutoScrollHelper.java | 29 public ListViewAutoScrollHelper(ListView target) { in ListViewAutoScrollHelper() argument 30 super(target); in ListViewAutoScrollHelper() 32 mTarget = target; in ListViewAutoScrollHelper() 37 final ListView target = mTarget; in scrollTargetBy() local 38 final int firstPosition = target.getFirstVisiblePosition(); in scrollTargetBy() 43 final View firstView = target.getChildAt(0); in scrollTargetBy() 49 target.setSelectionFromTop(firstPosition, newTop); in scrollTargetBy() 60 final ListView target = mTarget; in canTargetScrollVertically() local 61 final int itemCount = target.getCount(); in canTargetScrollVertically() 66 final int childCount = target.getChildCount(); in canTargetScrollVertically() [all …]
|
/frameworks/base/core/java/android/animation/ |
D | ObjectAnimator.java | 187 private ObjectAnimator(Object target, String propertyName) { in ObjectAnimator() argument 188 setTarget(target); in ObjectAnimator() 198 private <T> ObjectAnimator(T target, Property<T, ?> property) { in ObjectAnimator() argument 199 setTarget(target); in ObjectAnimator() 217 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { in ofInt() argument 218 ObjectAnimator anim = new ObjectAnimator(target, propertyName); in ofInt() 240 public static ObjectAnimator ofInt(Object target, String xPropertyName, String yPropertyName, in ofInt() argument 247 return ofPropertyValuesHolder(target, x, y); in ofInt() 262 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { in ofInt() argument 263 ObjectAnimator anim = new ObjectAnimator(target, property); in ofInt() [all …]
|
/frameworks/base/ |
D | CleanSpec.mk | 46 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 48 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 49 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 51 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 52 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 53 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/FrameworkTest_intermediates/) 54 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/android.policy*) 56 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates) [all …]
|
/frameworks/base/services/core/java/com/android/server/content/ |
D | SyncOperation.java | 64 public final SyncStorageEngine.EndPoint target; field in SyncOperation 111 this.target = info; in SyncOperation() 142 this(other.target, other.reason, other.syncSource, new Bundle(other.extras), in SyncOperation() 151 return this.target.matchesSpec(other.target); in matchesAuthority() 183 final SyncStorageEngine.EndPoint other = toRun.target; in isConflict() 184 if (target.target_provider) { in isConflict() 185 return target.account.type.equals(other.account.type) in isConflict() 186 && target.provider.equals(other.provider) in isConflict() 187 && target.userId == other.userId in isConflict() 189 || target.account.name.equals(other.account.name)); in isConflict() [all …]
|
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
D | GL11ExtensionPack.java | 111 int target, in glBindFramebufferOES() argument 116 int target, in glBindRenderbufferOES() argument 121 int target, in glBindTexture() argument 142 int target in glCheckFramebufferStatusOES() argument 146 int target, in glCompressedTexImage2D() argument 157 int target, in glCopyTexImage2D() argument 194 int target, in glFramebufferRenderbufferOES() argument 201 int target, in glFramebufferTexture2DOES() argument 209 int target in glGenerateMipmapOES() argument 235 int target, in glGetFramebufferAttachmentParameterivOES() argument [all …]
|
D | GL11.java | 148 int target, in glBindBuffer() argument 153 int target, in glBufferData() argument 160 int target, in glBufferSubData() argument 243 int target, in glGetBufferParameteriv() argument 250 int target, in glGetBufferParameteriv() argument 378 int target, in glGetTexParameterfv() argument 385 int target, in glGetTexParameterfv() argument 391 int target, in glGetTexParameteriv() argument 398 int target, in glGetTexParameteriv() argument 404 int target, in glGetTexParameterxv() argument [all …]
|
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/ |
D | Camera2CaptureCallbackSplitter.java | 52 for (CaptureCallback target : mRecipients) { in onCaptureCompleted() 53 target.onCaptureCompleted(session, request, result); in onCaptureCompleted() 60 for (CaptureCallback target : mRecipients) { in onCaptureFailed() 61 target.onCaptureFailed(session, request, failure); in onCaptureFailed() 68 for (CaptureCallback target : mRecipients) { in onCaptureProgressed() 69 target.onCaptureProgressed(session, request, partialResult); in onCaptureProgressed() 75 for (CaptureCallback target : mRecipients) { in onCaptureSequenceAborted() 76 target.onCaptureSequenceAborted(session, sequenceId); in onCaptureSequenceAborted() 83 for (CaptureCallback target : mRecipients) { in onCaptureSequenceCompleted() 84 target.onCaptureSequenceCompleted(session, sequenceId, frameNumber); in onCaptureSequenceCompleted() [all …]
|
/frameworks/native/opengl/tools/glgen/specs/jsr239/ |
D | glspec-1.1extpack | 1 void glBindFramebufferOES ( GLint target, GLint framebuffer ) 2 void glBindRenderbufferOES ( GLint target, GLint renderbuffer ) 3 void glBindTexture ( GLint target, GLint texture ) 7 GLint glCheckFramebufferStatusOES ( GLint target ) 8 void glCompressedTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLs… 9 void glCopyTexImage2D ( GLint target, GLint level, GLint internalformat, GLint x, GLint y, GLint wi… 13 void glFramebufferRenderbufferOES ( GLint target, GLint attachment, GLint renderbuffertarget, GLint… 14 void glFramebufferTexture2DOES ( GLint target, GLint attachment, GLint textarget, GLint texture, GL… 15 void glGenerateMipmapOES ( GLint target ) 18 void glGetFramebufferAttachmentParameterivOES ( GLint target, GLint attachment, GLint pname, GLint … [all …]
|
/frameworks/opt/telephony/ |
D | CleanSpec.mk | 41 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed… 42 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed… 43 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed… 44 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed… 45 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed… 46 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed… 47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed… 48 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed… 49 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed… 50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed… [all …]
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLErrorWrapper.java | 88 public void glBindTexture(int target, int texture) { in glBindTexture() argument 90 mgl.glBindTexture(target, texture); in glBindTexture() 167 public void glCompressedTexImage2D(int target, int level, in glCompressedTexImage2D() argument 171 mgl.glCompressedTexImage2D(target, level, internalformat, width, in glCompressedTexImage2D() 176 public void glCompressedTexSubImage2D(int target, int level, int xoffset, in glCompressedTexSubImage2D() argument 180 mgl.glCompressedTexSubImage2D(target, level, xoffset, yoffset, width, in glCompressedTexSubImage2D() 185 public void glCopyTexImage2D(int target, int level, int internalformat, in glCopyTexImage2D() argument 188 mgl.glCopyTexImage2D(target, level, internalformat, x, y, width, in glCopyTexImage2D() 193 public void glCopyTexSubImage2D(int target, int level, int xoffset, in glCopyTexSubImage2D() argument 196 mgl.glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, in glCopyTexSubImage2D() [all …]
|
D | GLES11.java | 157 int target, in glBindBuffer() argument 164 int target, in glBufferData() argument 173 int target, in glBufferSubData() argument 284 int target, in glGetBufferParameteriv() argument 293 int target, in glGetBufferParameteriv() argument 480 int target, in glGetTexParameterfv() argument 489 int target, in glGetTexParameterfv() argument 497 int target, in glGetTexParameteriv() argument 506 int target, in glGetTexParameteriv() argument 514 int target, in glGetTexParameterxv() argument [all …]
|
D | GLUtils.java | 106 public static void texImage2D(int target, int level, int internalformat, in texImage2D() argument 114 if (native_texImage2D(target, level, internalformat, bitmap, -1, border)!=0) { in texImage2D() 132 public static void texImage2D(int target, int level, int internalformat, in texImage2D() argument 140 if (native_texImage2D(target, level, internalformat, bitmap, type, border)!=0) { in texImage2D() 154 public static void texImage2D(int target, int level, Bitmap bitmap, in texImage2D() argument 162 if (native_texImage2D(target, level, -1, bitmap, -1, border)!=0) { in texImage2D() 189 public static void texSubImage2D(int target, int level, int xoffset, int yoffset, in texSubImage2D() argument 198 if (native_texSubImage2D(target, level, xoffset, yoffset, bitmap, -1, type)!=0) { in texSubImage2D() 214 public static void texSubImage2D(int target, int level, int xoffset, int yoffset, in texSubImage2D() argument 222 if (native_texSubImage2D(target, level, xoffset, yoffset, bitmap, format, type)!=0) { in texSubImage2D() [all …]
|
/frameworks/base/core/java/android/net/ |
D | LinkProperties.java | 719 public boolean isIdenticalInterfaceName(LinkProperties target) { in isIdenticalInterfaceName() argument 720 return TextUtils.equals(getInterfaceName(), target.getInterfaceName()); in isIdenticalInterfaceName() 730 public boolean isIdenticalAddresses(LinkProperties target) { in isIdenticalAddresses() argument 731 Collection<InetAddress> targetAddresses = target.getAddresses(); in isIdenticalAddresses() 744 public boolean isIdenticalDnses(LinkProperties target) { in isIdenticalDnses() argument 745 Collection<InetAddress> targetDnses = target.getDnsServers(); in isIdenticalDnses() 746 String targetDomains = target.getDomains(); in isIdenticalDnses() 763 public boolean isIdenticalRoutes(LinkProperties target) { in isIdenticalRoutes() argument 764 Collection<RouteInfo> targetRoutes = target.getRoutes(); in isIdenticalRoutes() 776 public boolean isIdenticalHttpProxy(LinkProperties target) { in isIdenticalHttpProxy() argument [all …]
|
/frameworks/compile/mclinker/lib/Object/ |
D | ObjectBuilder.cpp | 70 LDSection* target = m_Module.getSection(output_name); in MergeSection() local 72 if (NULL == target) { in MergeSection() 73 target = LDSection::Create(output_name, in MergeSection() 77 target->setAlign(pInputSection.align()); in MergeSection() 78 m_Module.getSectionTable().push_back(target); in MergeSection() 81 switch (target->kind()) { in MergeSection() 84 if (target->hasEhFrame()) in MergeSection() 85 eh_frame = target->getEhFrame(); in MergeSection() 87 eh_frame = IRBuilder::CreateEhFrame(*target); in MergeSection() 90 UpdateSectionAlign(*target, pInputSection); in MergeSection() [all …]
|
/frameworks/native/opengl/libs/GLES_CM/ |
D | gl_api.in | 40 void API_ENTRY(glGetTexEnvfv)(GLenum target, GLenum pname, GLfloat * params) { 41 CALL_GL_API(glGetTexEnvfv, target, pname, params); 43 void API_ENTRY(glGetTexParameterfv)(GLenum target, GLenum pname, GLfloat * params) { 44 CALL_GL_API(glGetTexParameterfv, target, pname, params); 73 void API_ENTRY(glMultiTexCoord4f)(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) { 74 CALL_GL_API(glMultiTexCoord4f, target, s, t, r, q); 100 void API_ENTRY(glTexEnvf)(GLenum target, GLenum pname, GLfloat param) { 101 CALL_GL_API(glTexEnvf, target, pname, param); 103 void API_ENTRY(glTexEnvfv)(GLenum target, GLenum pname, const GLfloat * params) { 104 CALL_GL_API(glTexEnvfv, target, pname, params); [all …]
|
D | glext_api.in | 1 void API_ENTRY(glEGLImageTargetTexture2DOES)(GLenum target, GLeglImageOES image) { 2 CALL_GL_API(glEGLImageTargetTexture2DOES, target, image); 4 void API_ENTRY(glEGLImageTargetRenderbufferStorageOES)(GLenum target, GLeglImageOES image) { 5 CALL_GL_API(glEGLImageTargetRenderbufferStorageOES, target, image); 139 void API_ENTRY(glGetTexEnvxvOES)(GLenum target, GLenum pname, GLfixed * params) { 140 CALL_GL_API(glGetTexEnvxvOES, target, pname, params); 142 void API_ENTRY(glGetTexParameterxvOES)(GLenum target, GLenum pname, GLfixed * params) { 143 CALL_GL_API(glGetTexParameterxvOES, target, pname, params); 199 void API_ENTRY(glTexEnvxOES)(GLenum target, GLenum pname, GLfixed param) { 200 CALL_GL_API(glTexEnvxOES, target, pname, param); [all …]
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
D | GLImpl.java | 110 int target, in glBindTexture() argument 231 int target, in glCompressedTexImage2D() argument 244 int target, in glCompressedTexSubImage2D() argument 258 int target, in glCopyTexImage2D() argument 271 int target, in glCopyTexSubImage2D() argument 505 int target, in glHint() argument 737 int target, in glMultiTexCoord4f() argument 747 int target, in glMultiTexCoord4x() argument 999 int target, in glTexEnvf() argument 1007 int target, in glTexEnvfv() argument [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationTemplateViewWrapper.java | 167 private void fadeIconColorFilter(final ImageView target, boolean dark, long delay) { in fadeIconColorFilter() argument 171 updateIconColorFilter(target, (Float) animation.getAnimatedValue()); in fadeIconColorFilter() 176 private void fadeIconAlpha(final ImageView target, boolean dark, long delay) { in fadeIconAlpha() argument 181 target.setImageAlpha((int) (255 * (1f - t) + mIconDarkAlpha * t)); in fadeIconAlpha() 186 protected void fadeGrayscale(final ImageView target, final boolean dark, long delay) { in fadeGrayscale() argument 191 target.setColorFilter(new ColorMatrixColorFilter(mGrayscaleColorMatrix)); in fadeGrayscale() 197 target.setColorFilter(null); in fadeGrayscale() 203 private void updateIconColorFilter(ImageView target, boolean dark) { in updateIconColorFilter() argument 204 updateIconColorFilter(target, dark ? 1f : 0f); in updateIconColorFilter() 207 private void updateIconColorFilter(ImageView target, float intensity) { in updateIconColorFilter() argument [all …]
|
/frameworks/base/core/jni/ |
D | android_animation_PropertyValuesHolder.cpp | 77 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jint arg) in android_animation_PropertyValuesHolder_callIntMethod() argument 79 env->CallVoidMethod(target, reinterpret_cast<jmethodID>(methodID), arg); in android_animation_PropertyValuesHolder_callIntMethod() 83 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jfloat arg) in android_animation_PropertyValuesHolder_callFloatMethod() argument 85 env->CallVoidMethod(target, reinterpret_cast<jmethodID>(methodID), arg); in android_animation_PropertyValuesHolder_callFloatMethod() 89 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, float arg1, float arg2) in android_animation_PropertyValuesHolder_callTwoFloatMethod() argument 91 env->CallVoidMethod(target, reinterpret_cast<jmethodID>(methodID), arg1, arg2); in android_animation_PropertyValuesHolder_callTwoFloatMethod() 95 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, float arg1, float arg2, in android_animation_PropertyValuesHolder_callFourFloatMethod() argument 98 env->CallVoidMethod(target, reinterpret_cast<jmethodID>(methodID), arg1, arg2, arg3, arg4); in android_animation_PropertyValuesHolder_callFourFloatMethod() 102 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jfloatArray arg) in android_animation_PropertyValuesHolder_callMultipleFloatMethod() argument 110 env->CallVoidMethodA(target, reinterpret_cast<jmethodID>(methodID), values); in android_animation_PropertyValuesHolder_callMultipleFloatMethod() [all …]
|
/frameworks/native/opengl/libs/ |
D | trace.in | 11 TRACE_GL_VOID(glBeginQuery, (GLenum target, GLuint id), (target, id), 2, "GLenum", target, "GLuint"… 12 TRACE_GL_VOID(glBeginQueryEXT, (GLenum target, GLuint id), (target, id), 2, "GLenum", target, "GLui… 15 TRACE_GL_VOID(glBindBuffer, (GLenum target, GLuint buffer), (target, buffer), 2, "GLenum", target, … 16 …_GL_VOID(glBindBufferBase, (GLenum target, GLuint index, GLuint buffer), (target, index, buffer), … 17 …e, (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size), (target, index,… 18 TRACE_GL_VOID(glBindFramebuffer, (GLenum target, GLuint framebuffer), (target, framebuffer), 2, "GL… 19 …CE_GL_VOID(glBindFramebufferOES, (GLenum target, GLuint framebuffer), (target, framebuffer), 2, "G… 23 …ACE_GL_VOID(glBindRenderbuffer, (GLenum target, GLuint renderbuffer), (target, renderbuffer), 2, "… 24 …_GL_VOID(glBindRenderbufferOES, (GLenum target, GLuint renderbuffer), (target, renderbuffer), 2, "… 26 TRACE_GL_VOID(glBindTexture, (GLenum target, GLuint texture), (target, texture), 2, "GLenum", targe… [all …]
|
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
D | GLES11.spec | 1 void glBindBuffer ( GLenum target, GLuint buffer ) 2 void glBufferData ( GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage ) 3 void glBufferSubData ( GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data ) 12 void glGetBufferParameteriv ( GLenum target, GLenum pname, GLint *params ) 25 void glGetTexParameterfv ( GLenum target, GLenum pname, GLfloat *params ) 26 void glGetTexParameteriv ( GLenum target, GLenum pname, GLint *params ) 27 void glGetTexParameterxv ( GLenum target, GLenum pname, GLfixed *params ) 38 void glTexEnvi ( GLenum target, GLenum pname, GLint param ) 39 void glTexEnviv ( GLenum target, GLenum pname, const GLint *params ) 40 void glTexParameterfv ( GLenum target, GLenum pname, const GLfloat *params ) [all …]
|
/frameworks/rs/ |
D | CleanSpec.mk | 46 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/*/src/RenderScript.stamp) 47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/*/src/renderscript/) 48 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/*/src/renderscript) 49 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/*/src/renderscript) 50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/*/src/RenderScript.stamp) 51 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/*/src/RenderScript.stamp) 52 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/*/obj/SHARED_LIBRARIES/lib*.bc_intermediate… 53 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/*/obj/SHARED_LIBRARIES/librs*_intermediates) 54 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/*/obj/SHARED_LIBRARIES/libhellocomputendk_i…
|