Home
last modified time | relevance | path

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

12345678910>>...17

/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/v7/recyclerview/tests/src/android/support/v7/widget/test/
DNestedScrollingParent2Adapter.java28 public boolean onStartNestedScroll(@NonNull View child, @NonNull View target, in onStartNestedScroll()
34 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, in onNestedScrollAccepted()
39 public void onStopNestedScroll(@NonNull View target, @ViewCompat.NestedScrollType int type) { in onStopNestedScroll()
43 public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, in onNestedScroll()
48 public void onNestedPreScroll(@NonNull View target, int dx, int dy, in onNestedPreScroll()
53 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { in onStartNestedScroll()
58 public void onNestedScrollAccepted(View child, View target, int axes) { in onNestedScrollAccepted()
63 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) { in onNestedPreScroll()
68 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, in onNestedScroll()
75 public void onStopNestedScroll(View target) { in onStopNestedScroll()
[all …]
/frameworks/support/compat/java/android/support/v4/view/
DViewParentCompat.java37 public boolean onStartNestedScroll(ViewParent parent, View child, View target, in onStartNestedScroll()
46 public void onNestedScrollAccepted(ViewParent parent, View child, View target, in onNestedScrollAccepted()
54 public void onStopNestedScroll(ViewParent parent, View target) { in onStopNestedScroll()
60 public void onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, in onNestedScroll()
68 public void onNestedPreScroll(ViewParent parent, View target, int dx, int dy, in onNestedPreScroll()
75 public boolean onNestedFling(ViewParent parent, View target, float velocityX, in onNestedFling()
84 public boolean onNestedPreFling(ViewParent parent, View target, float velocityX, in onNestedPreFling()
111 public boolean onStartNestedScroll(ViewParent parent, View child, View target, in onStartNestedScroll()
123 public void onNestedScrollAccepted(ViewParent parent, View child, View target, in onNestedScrollAccepted()
134 public void onStopNestedScroll(ViewParent parent, View target) { in onStopNestedScroll()
[all …]
DNestedScrollingParent.java63 boolean onStartNestedScroll(@NonNull View child, @NonNull View target, @ScrollAxis int axes); in onStartNestedScroll()
81 void onNestedScrollAccepted(@NonNull View child, @NonNull View target, @ScrollAxis int axes); in onNestedScrollAccepted()
94 void onStopNestedScroll(@NonNull View target); in onStopNestedScroll()
117 void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, in onNestedScroll()
140 void onNestedPreScroll(@NonNull View target, int dx, int dy, @NonNull int[] consumed); in onNestedPreScroll()
161 boolean onNestedFling(@NonNull View target, float velocityX, float velocityY, boolean consumed); in onNestedFling()
183 boolean onNestedPreFling(@NonNull View target, float velocityX, float velocityY); in onNestedPreFling()
DNestedScrollingParent2.java64 boolean onStartNestedScroll(@NonNull View child, @NonNull View target, @ScrollAxis int axes, in onStartNestedScroll()
84 void onNestedScrollAccepted(@NonNull View child, @NonNull View target, @ScrollAxis int axes, in onNestedScrollAccepted()
99 void onStopNestedScroll(@NonNull View target, @NestedScrollType int type); in onStopNestedScroll()
123 void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, in onNestedScroll()
147 void onNestedPreScroll(@NonNull View target, int dx, int dy, @Nullable int[] consumed, in onNestedPreScroll()
/frameworks/base/core/java/android/animation/
DObjectAnimator.java212 private ObjectAnimator(Object target, String propertyName) { in ObjectAnimator()
223 private <T> ObjectAnimator(T target, Property<T, ?> property) { in ObjectAnimator() argument
243 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { in ofInt()
266 public static ObjectAnimator ofInt(Object target, String xPropertyName, String yPropertyName, in ofInt()
289 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { in ofInt() argument
308 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> xProperty, in ofInt() argument
334 public static ObjectAnimator ofMultiInt(Object target, String propertyName, int[][] values) { in ofMultiInt()
354 public static ObjectAnimator ofMultiInt(Object target, String propertyName, Path path) { in ofMultiInt()
379 public static <T> ObjectAnimator ofMultiInt(Object target, String propertyName, in ofMultiInt()
401 public static ObjectAnimator ofArgb(Object target, String propertyName, int... values) { in ofArgb()
[all …]
/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/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationIconDozeHelper.java45 public void setImageDark(ImageView target, boolean dark, boolean fade, long delay, in setImageDark()
64 private void fadeImageColorFilter(final ImageView target, boolean dark, long delay) { in fadeImageColorFilter()
70 private void fadeImageAlpha(final ImageView target, boolean dark, long delay) { in fadeImageAlpha()
77 private void updateImageColorFilter(ImageView target, boolean dark) { in updateImageColorFilter()
81 private void updateImageColorFilter(ImageView target, float intensity) { in updateImageColorFilter()
97 private void updateImageAlpha(ImageView target, boolean dark) { in updateImageAlpha()
DNotificationDozeHelper.java34 public void fadeGrayscale(final ImageView target, final boolean dark, long delay) { in fadeGrayscale()
50 public void updateGrayscale(ImageView target, boolean dark) { in updateGrayscale()
54 public void updateGrayscale(ImageView target, float darkAmount) { in updateGrayscale()
/frameworks/native/cmds/installd/
Dmatchgen.py68 target = trie variable
70 target = target[c] variable
73 def dump(target, index): argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DTestedFrameLayout.java134 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { in onStartNestedScroll()
139 public void onNestedScrollAccepted(View child, View target, int axes) { in onNestedScrollAccepted()
144 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) { in onNestedPreScroll()
149 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, in onNestedScroll()
156 public void onStopNestedScroll(View target) { in onStopNestedScroll()
168 public boolean onStartNestedScroll(@NonNull View child, @NonNull View target, in onStartNestedScroll()
175 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, in onNestedScrollAccepted()
183 public boolean onNestedPreFling(View target, float velocityX, float velocityY) { in onNestedPreFling()
189 public boolean onNestedFling(View target, float velocityX, float velocityY, boolean consumed) { in onNestedFling()
195 public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, in onNestedScroll()
[all …]
/frameworks/support/core-ui/java/android/support/v4/view/
DNestedScrollingParentHelper.java61 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, in onNestedScrollAccepted()
74 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, in onNestedScrollAccepted()
98 public void onStopNestedScroll(@NonNull View target) { in onStopNestedScroll()
109 public void onStopNestedScroll(@NonNull View target, @NestedScrollType int type) { in onStopNestedScroll()
/frameworks/layoutlib/bridge/src/android/animation/
DPropertyValuesHolder_Delegate.java102 private static void callMethod(Object target, long methodID, Object... args) { in callMethod()
137 /*package*/ static void nCallIntMethod(Object target, long methodID, int arg) { in nCallIntMethod()
142 /*package*/ static void nCallFloatMethod(Object target, long methodID, float arg) { in nCallFloatMethod()
147 /*package*/ static void nCallTwoIntMethod(Object target, long methodID, int arg1, in nCallTwoIntMethod()
153 /*package*/ static void nCallFourIntMethod(Object target, long methodID, int arg1, in nCallFourIntMethod()
159 /*package*/ static void nCallMultipleIntMethod(Object target, long methodID, in nCallMultipleIntMethod()
172 /*package*/ static void nCallTwoFloatMethod(Object target, long methodID, float arg1, in nCallTwoFloatMethod()
178 /*package*/ static void nCallFourFloatMethod(Object target, long methodID, float arg1, in nCallFourFloatMethod()
184 /*package*/ static void nCallMultipleFloatMethod(Object target, long methodID, in nCallMultipleFloatMethod()
/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()
266 native private static int native_texImage2D(int target, int level, int internalformat, in native_texImage2D()
268 native private static int native_texSubImage2D(int target, int level, int xoffset, int yoffset, in native_texSubImage2D()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DParallaxEffect.java134 public final void addTarget(ParallaxTarget target) { in addTarget()
144 public final ParallaxEffect target(ParallaxTarget target) { in target() method in ParallaxEffect
157 public final ParallaxEffect target(Object targetObject, PropertyValuesHolder values) { in target() method in ParallaxEffect
173 public final <T, V extends Number> ParallaxEffect target(T targetObject, in target() method in ParallaxEffect
192 public final void removeTarget(ParallaxTarget target) { in removeTarget()
212 ParallaxTarget target = mTargets.get(i); in performMapping() local
/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 …]
/frameworks/base/core/java/android/net/
DLinkProperties.java846 public boolean isIdenticalInterfaceName(LinkProperties target) { in isIdenticalInterfaceName()
857 public boolean isIdenticalAddresses(LinkProperties target) { in isIdenticalAddresses()
871 public boolean isIdenticalDnses(LinkProperties target) { in isIdenticalDnses()
890 public boolean isIdenticalRoutes(LinkProperties target) { in isIdenticalRoutes()
903 public boolean isIdenticalHttpProxy(LinkProperties target) { in isIdenticalHttpProxy()
915 public boolean isIdenticalStackedLinks(LinkProperties target) { in isIdenticalStackedLinks()
936 public boolean isIdenticalMtu(LinkProperties target) { in isIdenticalMtu()
947 public boolean isIdenticalTcpBufferSizes(LinkProperties target) { in isIdenticalTcpBufferSizes()
995 public CompareResult<LinkAddress> compareAddresses(LinkProperties target) { in compareAddresses()
1024 public CompareResult<InetAddress> compareDnses(LinkProperties target) { in compareDnses()
[all …]
/frameworks/base/core/java/android/view/
DViewParent.java71 default void onDescendantInvalidated(@NonNull View child, @NonNull View target) { in onDescendantInvalidated()
523 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); in onStartNestedScroll()
541 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); in onNestedScrollAccepted()
554 public void onStopNestedScroll(View target); in onStopNestedScroll()
577 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, in onNestedScroll()
600 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed); in onNestedPreScroll()
621 public boolean onNestedFling(View target, float velocityX, float velocityY, boolean consumed); in onNestedFling()
643 public boolean onNestedPreFling(View target, float velocityX, float velocityY); in onNestedPreFling()
662 public boolean onNestedPrePerformAccessibilityAction(View target, int action, Bundle arguments); in onNestedPrePerformAccessibilityAction()
/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/packages/SystemUI/src/com/android/systemui/qs/
DTouchAnimator.java131 public Builder addFloat(Object target, String property, float... values) { in addFloat()
136 public Builder addInt(Object target, String property, int... values) { in addInt()
141 private void add(Object target, KeyframeSet keyframeSet) { in add()
146 private static Property getProperty(Object target, String property, Class<?> cls) { in getProperty()
212 void setValue(float fraction, Object target) { in setValue()
219 protected abstract void interpolate(int index, float amount, Object target); in interpolate()
241 protected void interpolate(int index, float amount, Object target) { in interpolate()
259 protected void interpolate(int index, float amount, Object target) { in interpolate()
/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/av/camera/ndk/
DNdkCaptureRequest.cpp41 void ACameraOutputTarget_free(ACameraOutputTarget* target) { in ACameraOutputTarget_free()
51 ACaptureRequest* req, const ACameraOutputTarget* target) { in ACaptureRequest_addTarget()
72 ACaptureRequest* req, const ACameraOutputTarget* target) { in ACaptureRequest_removeTarget()
/frameworks/base/libs/hwui/debug/
DNullGlesDriver.h49 virtual void glBindBuffer_(GLenum target, GLuint buffer) override {} in glBindBuffer_()
50 virtual void glBindFramebuffer_(GLenum target, GLuint framebuffer) override {} in glBindFramebuffer_()
51 virtual void glBindRenderbuffer_(GLenum target, GLuint renderbuffer) override {} in glBindRenderbuffer_()
52 virtual void glBindTexture_(GLenum target, GLuint texture) override {} in glBindTexture_()
58 …virtual void glBufferData_(GLenum target, GLsizeiptr size, const void *data, GLenum usage) overrid… in glBufferData_()
59 …virtual void glBufferSubData_(GLenum target, GLintptr offset, GLsizeiptr size, const void *data) o… in glBufferSubData_()
66 …virtual void glCompressedTexImage2D_(GLenum target, GLint level, GLenum internalformat, GLsizei wi… in glCompressedTexImage2D_()
67 …virtual void glCompressedTexSubImage2D_(GLenum target, GLint level, GLint xoffset, GLint yoffset, … in glCompressedTexSubImage2D_()
68 …virtual void glCopyTexImage2D_(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y… in glCopyTexImage2D_()
69 …virtual void glCopyTexSubImage2D_(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint … in glCopyTexSubImage2D_()
[all …]

12345678910>>...17