Home
last modified time | relevance | path

Searched defs:target (Results 1 – 25 of 348) sorted by relevance

12345678910>>...14

/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
DPrimitiveFormat.java28 public static MutableFrameFormat createByteFormat(int count, int target) { in createByteFormat()
32 public static MutableFrameFormat createInt16Format(int count, int target) { in createInt16Format()
36 public static MutableFrameFormat createInt32Format(int count, int target) { in createInt32Format()
40 public static MutableFrameFormat createFloatFormat(int count, int target) { in createFloatFormat()
44 public static MutableFrameFormat createDoubleFormat(int count, int target) { in createDoubleFormat()
48 public static MutableFrameFormat createByteFormat(int target) { in createByteFormat()
52 public static MutableFrameFormat createInt16Format(int target) { in createInt16Format()
56 public static MutableFrameFormat createInt32Format(int target) { in createInt32Format()
60 public static MutableFrameFormat createFloatFormat(int target) { in createFloatFormat()
64 public static MutableFrameFormat createDoubleFormat(int target) { in createDoubleFormat()
[all …]
DObjectFormat.java29 public static MutableFrameFormat fromClass(Class clazz, int count, int target) { in fromClass()
40 public static MutableFrameFormat fromClass(Class clazz, int target) { in fromClass()
44 public static MutableFrameFormat fromObject(Object object, int target) { in fromObject()
50 public static MutableFrameFormat fromObject(Object object, int count, int target) { in fromObject()
56 private static int bytesPerSampleForClass(Class clazz, int target) { in bytesPerSampleForClass()
DImageFormat.java40 int target) { in create()
54 int target) { in create()
62 public static MutableFrameFormat create(int colorspace, int target) { in create()
/frameworks/support/v4/java/android/support/v4/view/
DViewParentCompat.java38 boolean onStartNestedScroll(ViewParent parent, View child, View target, in onStartNestedScroll()
40 void onNestedScrollAccepted(ViewParent parent, View child, View target, in onNestedScrollAccepted()
42 void onStopNestedScroll(ViewParent parent, View target); in onStopNestedScroll()
43 void onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, in onNestedScroll()
45 void onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed); in onNestedPreScroll()
46 boolean onNestedFling(ViewParent parent, View target, float velocityX, float velocityY, in onNestedFling()
48 boolean onNestedPreFling(ViewParent parent, View target, float velocityX, float velocityY); in onNestedPreFling()
68 public boolean onStartNestedScroll(ViewParent parent, View child, View target, in onStartNestedScroll()
78 public void onNestedScrollAccepted(ViewParent parent, View child, View target, in onNestedScrollAccepted()
87 public void onStopNestedScroll(ViewParent parent, View target) { in onStopNestedScroll()
[all …]
DNestedScrollingParent.java61 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); in onStartNestedScroll()
79 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); in onNestedScrollAccepted()
92 public void onStopNestedScroll(View target); in onStopNestedScroll()
115 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, in onNestedScroll()
138 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed); in onNestedPreScroll()
159 public boolean onNestedFling(View target, float velocityX, float velocityY, boolean consumed); in onNestedFling()
181 public boolean onNestedPreFling(View target, float velocityX, float velocityY); in onNestedPreFling()
DNestedScrollingParentHelper.java57 public void onNestedScrollAccepted(View child, View target, int axes) { in onNestedScrollAccepted()
81 public void onStopNestedScroll(View target) { in onStopNestedScroll()
/frameworks/base/core/java/android/animation/
DObjectAnimator.java210 private ObjectAnimator(Object target, String propertyName) { in ObjectAnimator()
221 private <T> ObjectAnimator(T target, Property<T, ?> property) { in ObjectAnimator() argument
240 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { in ofInt()
263 public static ObjectAnimator ofInt(Object target, String xPropertyName, String yPropertyName, in ofInt()
285 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { in ofInt() argument
304 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> xProperty, in ofInt() argument
330 public static ObjectAnimator ofMultiInt(Object target, String propertyName, int[][] values) { in ofMultiInt()
350 public static ObjectAnimator ofMultiInt(Object target, String propertyName, Path path) { in ofMultiInt()
374 public static <T> ObjectAnimator ofMultiInt(Object target, String propertyName, in ofMultiInt()
395 public static ObjectAnimator ofArgb(Object target, String propertyName, int... values) { in ofArgb()
[all …]
/frameworks/support/v4/api21/android/support/v4/view/
DViewParentCompatLollipop.java27 public static boolean onStartNestedScroll(ViewParent parent, View child, View target, in onStartNestedScroll()
38 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, in onNestedScrollAccepted()
48 public static void onStopNestedScroll(ViewParent parent, View target) { in onStopNestedScroll()
57 public static void onNestedScroll(ViewParent parent, View target, int dxConsumed, in onNestedScroll()
67 public static void onNestedPreScroll(ViewParent parent, View target, int dx, int dy, in onNestedPreScroll()
77 public static boolean onNestedFling(ViewParent parent, View target, float velocityX, in onNestedFling()
88 public static boolean onNestedPreFling(ViewParent parent, View target, float velocityX, in onNestedPreFling()
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DTestedFrameLayout.java40 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { in onStartNestedScroll()
47 public boolean onNestedPreFling(View target, float velocityX, float velocityY) { in onNestedPreFling()
54 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) { in onNestedPreScroll()
63 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, in onNestedScroll()
69 public boolean onNestedFling(View target, float velocityX, float velocityY, boolean consumed) { in onNestedFling()
75 public void onNestedScrollAccepted(View child, View target, int axes) { in onNestedScrollAccepted()
86 public void onStopNestedScroll(View target) { in onStopNestedScroll()
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
DPropertyValuesHolder_Delegate.java65 /*package*/ static void nCallIntMethod(Object target, long methodID, int arg) { in nCallIntMethod()
70 /*package*/ static void nCallFloatMethod(Object target, long methodID, float arg) { in nCallFloatMethod()
75 /*package*/ static void nCallTwoIntMethod(Object target, long methodID, int arg1, in nCallTwoIntMethod()
81 /*package*/ static void nCallFourIntMethod(Object target, long methodID, int arg1, in nCallFourIntMethod()
87 /*package*/ static void nCallMultipleIntMethod(Object target, long methodID, in nCallMultipleIntMethod()
93 /*package*/ static void nCallTwoFloatMethod(Object target, long methodID, float arg1, in nCallTwoFloatMethod()
99 /*package*/ static void nCallFourFloatMethod(Object target, long methodID, float arg1, in nCallFourFloatMethod()
105 /*package*/ static void nCallMultipleFloatMethod(Object target, long methodID, in nCallMultipleFloatMethod()
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
DGridSetSelectionBaseTest.java58 final int target = mGridView.getAdapter().getCount() - 1; in testSetSelectionToTheEnd() local
66 assertEquals(mGridView.getSelectedItemPosition(), target); in testSetSelectionToTheEnd() local
74 final int target = mGridView.getAdapter().getCount() / 2; in testSetSelectionToMiddle() local
82 assertEquals(mGridView.getSelectedItemPosition(), target); in testSetSelectionToMiddle() local
/frameworks/base/opengl/java/android/opengl/
DGLUtils.java98 public static void texImage2D(int target, int level, int internalformat, in texImage2D()
124 public static void texImage2D(int target, int level, int internalformat, in texImage2D()
146 public static void texImage2D(int target, int level, Bitmap bitmap, in texImage2D()
181 public static void texSubImage2D(int target, int level, int xoffset, int yoffset, in texSubImage2D()
206 public static void texSubImage2D(int target, int level, int xoffset, int yoffset, in texSubImage2D()
272 native private static int native_texImage2D(int target, int level, int internalformat, in native_texImage2D()
274 native private static int native_texSubImage2D(int target, int level, int xoffset, int yoffset, in native_texSubImage2D()
DGLErrorWrapper.java88 public void glBindTexture(int target, int texture) { in glBindTexture()
167 public void glCompressedTexImage2D(int target, int level, in glCompressedTexImage2D()
176 public void glCompressedTexSubImage2D(int target, int level, int xoffset, in glCompressedTexSubImage2D()
185 public void glCopyTexImage2D(int target, int level, int internalformat, in glCopyTexImage2D()
193 public void glCopyTexSubImage2D(int target, int level, int xoffset, in glCopyTexSubImage2D()
384 public void glHint(int target, int mode) { in glHint()
576 public void glMultiTexCoord4f(int target, in glMultiTexCoord4f()
583 public void glMultiTexCoord4x(int target, int s, int t, int r, int q) { in glMultiTexCoord4x()
743 public void glTexEnvf(int target, int pname, float param) { in glTexEnvf()
749 public void glTexEnvfv(int target, int pname, float[] params, int offset) { in glTexEnvfv()
[all …]
DGLES11.java157 int target, in glBindBuffer()
164 int target, in glBufferData()
173 int target, in glBufferSubData()
284 int target, in glGetBufferParameteriv()
293 int target, in glGetBufferParameteriv()
480 int target, in glGetTexParameterfv()
489 int target, in glGetTexParameterfv()
497 int target, in glGetTexParameteriv()
506 int target, in glGetTexParameteriv()
514 int target, in glGetTexParameterxv()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationTemplateViewWrapper.java168 private void fadeIconColorFilter(final ImageView target, boolean dark, long delay) { in fadeIconColorFilter()
177 private void fadeIconAlpha(final ImageView target, boolean dark, long delay) { in fadeIconAlpha()
187 protected void fadeGrayscale(final ImageView target, final boolean dark, long delay) { in fadeGrayscale()
204 private void updateIconColorFilter(ImageView target, boolean dark) { in updateIconColorFilter()
208 private void updateIconColorFilter(ImageView target, float intensity) { in updateIconColorFilter()
220 private void updateIconAlpha(ImageView target, boolean dark) { in updateIconAlpha()
224 protected void updateGrayscale(ImageView target, boolean dark) { in updateGrayscale()
237 private static int interpolateColor(int source, int target, float t) { in interpolateColor()
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
DGL11ExtensionPack.java111 int target, in glBindFramebufferOES()
116 int target, in glBindRenderbufferOES()
121 int target, in glBindTexture()
142 int target in glCheckFramebufferStatusOES()
146 int target, in glCompressedTexImage2D()
157 int target, in glCopyTexImage2D()
194 int target, in glFramebufferRenderbufferOES()
201 int target, in glFramebufferTexture2DOES()
209 int target in glGenerateMipmapOES()
235 int target, in glGetFramebufferAttachmentParameterivOES()
[all …]
DGL11.java148 int target, in glBindBuffer()
153 int target, in glBufferData()
160 int target, in glBufferSubData()
243 int target, in glGetBufferParameteriv()
250 int target, in glGetBufferParameteriv()
378 int target, in glGetTexParameterfv()
385 int target, in glGetTexParameterfv()
391 int target, in glGetTexParameteriv()
398 int target, in glGetTexParameteriv()
404 int target, in glGetTexParameterxv()
[all …]
/frameworks/base/core/java/android/net/
DLinkProperties.java831 public boolean isIdenticalInterfaceName(LinkProperties target) { in isIdenticalInterfaceName()
842 public boolean isIdenticalAddresses(LinkProperties target) { in isIdenticalAddresses()
856 public boolean isIdenticalDnses(LinkProperties target) { in isIdenticalDnses()
875 public boolean isIdenticalRoutes(LinkProperties target) { in isIdenticalRoutes()
888 public boolean isIdenticalHttpProxy(LinkProperties target) { in isIdenticalHttpProxy()
900 public boolean isIdenticalStackedLinks(LinkProperties target) { in isIdenticalStackedLinks()
921 public boolean isIdenticalMtu(LinkProperties target) { in isIdenticalMtu()
932 public boolean isIdenticalTcpBufferSizes(LinkProperties target) { in isIdenticalTcpBufferSizes()
980 public CompareResult<LinkAddress> compareAddresses(LinkProperties target) { in compareAddresses()
1009 public CompareResult<InetAddress> compareDnses(LinkProperties target) { in compareDnses()
[all …]
/frameworks/base/core/jni/
Dandroid_animation_PropertyValuesHolder.cpp77 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jint arg) in android_animation_PropertyValuesHolder_callIntMethod()
83 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jfloat arg) in android_animation_PropertyValuesHolder_callFloatMethod()
89 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, float arg1, float arg2) in android_animation_PropertyValuesHolder_callTwoFloatMethod()
95 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, float arg1, float arg2, in android_animation_PropertyValuesHolder_callFourFloatMethod()
102 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jfloatArray arg) in android_animation_PropertyValuesHolder_callMultipleFloatMethod()
116 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, int arg1, int arg2) in android_animation_PropertyValuesHolder_callTwoIntMethod()
122 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, int arg1, int arg2, in android_animation_PropertyValuesHolder_callFourIntMethod()
129 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jintArray arg) in android_animation_PropertyValuesHolder_callMultipleIntMethod()
/frameworks/base/core/java/android/view/
DViewParent.java453 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); in onStartNestedScroll()
471 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); in onNestedScrollAccepted()
484 public void onStopNestedScroll(View target); in onStopNestedScroll()
507 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, in onNestedScroll()
530 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed); in onNestedPreScroll()
551 public boolean onNestedFling(View target, float velocityX, float velocityY, boolean consumed); in onNestedFling()
573 public boolean onNestedPreFling(View target, float velocityX, float velocityY); in onNestedPreFling()
592 public boolean onNestedPrePerformAccessibilityAction(View target, int action, Bundle arguments); in onNestedPrePerformAccessibilityAction()
/frameworks/support/v4/java/android/support/v4/widget/
DListViewAutoScrollHelper.java29 public ListViewAutoScrollHelper(ListView target) { in ListViewAutoScrollHelper()
37 final ListView target = mTarget; in scrollTargetBy() local
60 final ListView target = mTarget; in canTargetScrollVertically() local
/frameworks/base/core/tests/coretests/src/android/net/
DLinkPropertiesTest.java50 public void assertLinkPropertiesEqual(LinkProperties source, LinkProperties target) { in assertLinkPropertiesEqual()
84 LinkProperties target = new LinkProperties(); in testEqualsNull() local
106 LinkProperties target = new LinkProperties(); in testEqualsSameOrder() local
203 LinkProperties target = new LinkProperties(); in testEqualsDifferentOrder() local
229 LinkProperties target = new LinkProperties(); in testEqualsDuplicated() local
/frameworks/base/libs/hwui/tests/
Dnullgles.cpp157 void glBindBuffer(GLenum target, GLuint buffer) {} in glBindBuffer()
158 void glBindFramebuffer(GLenum target, GLuint framebuffer) {} in glBindFramebuffer()
159 void glBindRenderbuffer(GLenum target, GLuint renderbuffer) {} in glBindRenderbuffer()
160 void glBindTexture(GLenum target, GLuint texture) {} in glBindTexture()
166 void glBufferData(GLenum target, GLsizeiptr size, const void *data, GLenum usage) {} in glBufferData()
167 void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const void *data) {} in glBufferSubData()
174 void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsiz… in glCompressedTexImage2D()
175 void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei wi… in glCompressedTexSubImage2D()
176 void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei … in glCopyTexImage2D()
177 void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y… in glCopyTexSubImage2D()
[all …]
/frameworks/compile/mclinker/include/mcld/LD/
DELFObjectWriter.h46 const GNULDBackend& target() const { return m_Backend; } in target() function
47 GNULDBackend& target() { return m_Backend; } in target() function
/frameworks/base/opengl/java/com/google/android/gles_jni/
DGLImpl.java110 int target, in glBindTexture()
231 int target, in glCompressedTexImage2D()
244 int target, in glCompressedTexSubImage2D()
258 int target, in glCopyTexImage2D()
271 int target, in glCopyTexSubImage2D()
505 int target, in glHint()
737 int target, in glMultiTexCoord4f()
747 int target, in glMultiTexCoord4x()
999 int target, in glTexEnvf()
1007 int target, in glTexEnvfv()
[all …]

12345678910>>...14