/frameworks/base/core/tests/coretests/src/android/net/ |
D | LinkPropertiesTest.java | 36 public void assertLinkPropertiesEqual(LinkProperties source, LinkProperties target) { in assertLinkPropertiesEqual() argument 38 assertTrue(source.isIdenticalInterfaceName(target)); in assertLinkPropertiesEqual() 39 assertTrue(target.isIdenticalInterfaceName(source)); in assertLinkPropertiesEqual() 41 assertTrue(source.isIdenticalAddresses(target)); in assertLinkPropertiesEqual() 42 assertTrue(target.isIdenticalAddresses(source)); in assertLinkPropertiesEqual() 44 assertTrue(source.isIdenticalDnses(target)); in assertLinkPropertiesEqual() 45 assertTrue(target.isIdenticalDnses(source)); in assertLinkPropertiesEqual() 47 assertTrue(source.isIdenticalRoutes(target)); in assertLinkPropertiesEqual() 48 assertTrue(target.isIdenticalRoutes(source)); in assertLinkPropertiesEqual() 50 assertTrue(source.isIdenticalHttpProxy(target)); in assertLinkPropertiesEqual() [all …]
|
/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/ |
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/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/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/compile/mclinker/lib/Object/ |
D | ObjectBuilder.cpp | 57 LDSection* target = m_Module.getSection(output_name); in MergeSection() local 59 if (NULL == target) { in MergeSection() 60 target = LDSection::Create(output_name, in MergeSection() 64 target->setAlign(pInputSection.align()); in MergeSection() 65 m_Module.getSectionTable().push_back(target); in MergeSection() 68 switch (target->kind()) { in MergeSection() 73 return target; in MergeSection() 76 if (target->hasEhFrame()) in MergeSection() 77 eh_frame = target->getEhFrame(); in MergeSection() 79 eh_frame = IRBuilder::CreateEhFrame(*target); in MergeSection() [all …]
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMRelocator.cpp | 367 ARMRelocator::DWord A = pReloc.target() + pReloc.addend(); in abs32() 375 pReloc.target() = (S + A) | T; in abs32() 382 pReloc.target() = (S + A) | T ; in abs32() 408 pReloc.target() = (S + A) | T; in abs32() 418 ARMRelocator::DWord A = pReloc.target() + pReloc.addend(); in rel32() 429 pReloc.target() = ((S + A) | T) - pReloc.place(); in rel32() 438 ARMRelocator::DWord A = pReloc.target() + pReloc.addend(); in base_prel() 439 pReloc.target() = pReloc.symValue() + A - pReloc.place(); in base_prel() 447 ARMRelocator::DWord A = pReloc.target() + pReloc.addend(); in gotoff32() 451 pReloc.target() = ((S + A) | T) - GOT_ORG; in gotoff32() [all …]
|
/frameworks/native/opengl/libs/ |
D | trace.in | 9 TRACE_GL_VOID(glBeginQuery, (GLenum target, GLuint id), (target, id), 2, "GLenum", target, "GLuint"… 10 TRACE_GL_VOID(glBeginQueryEXT, (GLenum target, GLuint id), (target, id), 2, "GLenum", target, "GLui… 13 TRACE_GL_VOID(glBindBuffer, (GLenum target, GLuint buffer), (target, buffer), 2, "GLenum", target, … 14 …_GL_VOID(glBindBufferBase, (GLenum target, GLuint index, GLuint buffer), (target, index, buffer), … 15 …e, (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size), (target, index,… 16 TRACE_GL_VOID(glBindFramebuffer, (GLenum target, GLuint framebuffer), (target, framebuffer), 2, "GL… 17 …CE_GL_VOID(glBindFramebufferOES, (GLenum target, GLuint framebuffer), (target, framebuffer), 2, "G… 19 …ACE_GL_VOID(glBindRenderbuffer, (GLenum target, GLuint renderbuffer), (target, renderbuffer), 2, "… 20 …_GL_VOID(glBindRenderbufferOES, (GLenum target, GLuint renderbuffer), (target, renderbuffer), 2, "… 22 TRACE_GL_VOID(glBindTexture, (GLenum target, GLuint texture), (target, texture), 2, "GLenum", targe… [all …]
|
D | debug.in | 6 …CE_GL_VOID(glBindFramebufferOES, (GLenum target, GLuint framebuffer), (target, framebuffer), 2, "G… 7 …_GL_VOID(glBindRenderbufferOES, (GLenum target, GLuint renderbuffer), (target, renderbuffer), 2, "… 12 TRACE_GL(GLenum, glCheckFramebufferStatusOES, (GLenum target), (target), 1, "GLenum", target) 30 …target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint bo… 31 …target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, G… 32 …target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width,… 46 …fferEXT, (GLenum target, GLsizei numAttachments, const GLenum *attachments), (target, numAttachmen… 55 …ImageTargetRenderbufferStorageOES, (GLenum target, GLeglImageOES image), (target, image), 2, "GLen… 56 …VOID(glEGLImageTargetTexture2DOES, (GLenum target, GLeglImageOES image), (target, image), 2, "GLen… 61 …_GL_VOID(glExtGetBufferPointervQCOM, (GLenum target, GLvoid **params), (target, params), 2, "GLenu… [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 | 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 …]
|
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 …]
|
/frameworks/native/opengl/libs/GLES_CM/ |
D | glext_api.in | 34 void API_ENTRY(glEGLImageTargetTexture2DOES)(GLenum target, GLeglImageOES image) { 35 CALL_GL_API(glEGLImageTargetTexture2DOES, target, image); 37 void API_ENTRY(glEGLImageTargetRenderbufferStorageOES)(GLenum target, GLeglImageOES image) { 38 CALL_GL_API(glEGLImageTargetRenderbufferStorageOES, target, image); 82 void API_ENTRY(glGetTexParameterxvOES)(GLenum target, GLenum pname, GLfixed *params) { 83 CALL_GL_API(glGetTexParameterxvOES, target, pname, params); 112 void API_ENTRY(glMultiTexCoord4xOES)(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q) { 113 CALL_GL_API(glMultiTexCoord4xOES, target, s, t, r, q); 142 void API_ENTRY(glTexEnvxOES)(GLenum target, GLenum pname, GLfixed param) { 143 CALL_GL_API(glTexEnvxOES, target, pname, param); [all …]
|
D | gl_api.in | 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); 106 void API_ENTRY(glTexParameterf)(GLenum target, GLenum pname, GLfloat param) { 107 CALL_GL_API(glTexParameterf, target, pname, param); [all …]
|
/frameworks/base/core/java/android/animation/ |
D | ObjectAnimator.java | 148 private ObjectAnimator(Object target, String propertyName) { in ObjectAnimator() argument 149 mTarget = target; in ObjectAnimator() 159 private <T> ObjectAnimator(T target, Property<T, ?> property) { in ObjectAnimator() argument 160 mTarget = target; in ObjectAnimator() 178 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { in ofInt() argument 179 ObjectAnimator anim = new ObjectAnimator(target, propertyName); in ofInt() 196 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { in ofInt() argument 197 ObjectAnimator anim = new ObjectAnimator(target, property); in ofInt() 216 public static ObjectAnimator ofFloat(Object target, String propertyName, float... values) { in ofFloat() argument 217 ObjectAnimator anim = new ObjectAnimator(target, propertyName); in ofFloat() [all …]
|
/frameworks/base/core/java/android/net/ |
D | LinkProperties.java | 316 public boolean isIdenticalInterfaceName(LinkProperties target) { in isIdenticalInterfaceName() argument 317 return TextUtils.equals(getInterfaceName(), target.getInterfaceName()); in isIdenticalInterfaceName() 326 public boolean isIdenticalAddresses(LinkProperties target) { in isIdenticalAddresses() argument 327 Collection<InetAddress> targetAddresses = target.getAddresses(); in isIdenticalAddresses() 339 public boolean isIdenticalDnses(LinkProperties target) { in isIdenticalDnses() argument 340 Collection<InetAddress> targetDnses = target.getDnses(); in isIdenticalDnses() 341 String targetDomains = target.getDomains(); in isIdenticalDnses() 357 public boolean isIdenticalRoutes(LinkProperties target) { in isIdenticalRoutes() argument 358 Collection<RouteInfo> targetRoutes = target.getRoutes(); in isIdenticalRoutes() 369 public boolean isIdenticalHttpProxy(LinkProperties target) { in isIdenticalHttpProxy() argument [all …]
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonRelocator.cpp | 117 pReloc.target() = pReloc.target() | ApplyMask(0x01ff3ffe, result); in relocB22PCREL() 134 pReloc.target() = pReloc.target() | ApplyMask(0x00df20fe,result); in relocB15PCREL() 151 pReloc.target() = pReloc.target() | ApplyMask(0x00001f18, result); in relocB7PCREL() 165 pReloc.target() = pReloc.target() | ApplyMask(0x00c03fff, result); in relocLO16() 177 pReloc.target() = pReloc.target() | ApplyMask(0x00c03fff, result); in relocHI16() 189 pReloc.target() = result | pReloc.target(); in reloc32() 200 pReloc.target() = pReloc.target() | ApplyMask(0x0000ffff, result); in reloc16() 212 pReloc.target() = pReloc.target() | ApplyMask(0x000000ff, result); in reloc8() 228 pReloc.target() = pReloc.target() | ApplyMask(0x00202ffe, result); in relocB13PCREL() 254 pReloc.target() = pReloc.target() | ApplyMask(0xffffffff, result); in reloc32PCREL()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsRelocator.cpp | 171 int32_t AHI = pHiReloc.target(); in helper_CalcAHL() 172 int32_t ALO = pLoReloc.target(); in helper_CalcAHL() 190 Relocator::DWord A = pReloc.target() + pReloc.addend(); in helper_DynRel() 195 pReloc.target() = A + S; in helper_DynRel() 200 pReloc.target() = A; in helper_DynRel() 221 Relocator::DWord A = pReloc.target() + pReloc.addend(); in abs32() 228 pReloc.target() = S + A; in abs32() 238 pReloc.target() = (S + A); in abs32() 267 pReloc.target() &= 0xFFFF0000; in hi16() 268 pReloc.target() |= (res & 0xFFFF); in hi16() [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/native/opengl/libs/GLES2/ |
D | gl2ext_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); 13 void* API_ENTRY(glMapBufferOES)(GLenum target, GLenum access) { 14 CALL_GL_API_RETURN(glMapBufferOES, target, access); 16 GLboolean API_ENTRY(glUnmapBufferOES)(GLenum target) { 17 CALL_GL_API_RETURN(glUnmapBufferOES, target); 19 void API_ENTRY(glGetBufferPointervOES)(GLenum target, GLenum pname, GLvoid** params) { 20 CALL_GL_API(glGetBufferPointervOES, target, pname, params); [all …]
|
D | gl3_api.in | 10 void API_ENTRY(glBindBuffer)(GLenum target, GLuint buffer) { 11 CALL_GL_API(glBindBuffer, target, buffer); 13 void API_ENTRY(glBindFramebuffer)(GLenum target, GLuint framebuffer) { 14 CALL_GL_API(glBindFramebuffer, target, framebuffer); 16 void API_ENTRY(glBindRenderbuffer)(GLenum target, GLuint renderbuffer) { 17 CALL_GL_API(glBindRenderbuffer, target, renderbuffer); 19 void API_ENTRY(glBindTexture)(GLenum target, GLuint texture) { 20 CALL_GL_API(glBindTexture, target, texture); 37 void API_ENTRY(glBufferData)(GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage) { 38 CALL_GL_API(glBufferData, target, size, data, usage); [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/base/core/java/android/app/ |
D | TaskStackBuilder.java | 106 ComponentName target = nextIntent.getComponent(); in addNextIntentWithParentStack() local 107 if (target == null) { in addNextIntentWithParentStack() 108 target = nextIntent.resolveActivity(mSourceContext.getPackageManager()); in addNextIntentWithParentStack() 110 if (target != null) { in addNextIntentWithParentStack() 111 addParentStack(target); in addNextIntentWithParentStack() 132 ComponentName target = parent.getComponent(); in addParentStack() local 133 if (target == null) { in addParentStack() 134 target = parent.resolveActivity(mSourceContext.getPackageManager()); in addParentStack() 136 addParentStack(target); in addParentStack() 170 final ComponentName target = new ComponentName(info.packageName, parentActivity); in addParentStack() local [all …]
|