/frameworks/base/media/mca/filterfw/java/android/filterfw/format/ |
D | PrimitiveFormat.java | 28 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 …]
|
D | ObjectFormat.java | 29 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()
|
D | ImageFormat.java | 40 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/ |
D | NestedScrollingParent2Adapter.java | 28 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/ |
D | ViewParentCompat.java | 38 public boolean onStartNestedScroll(ViewParent parent, View child, View target, in onStartNestedScroll() 47 public void onNestedScrollAccepted(ViewParent parent, View child, View target, in onNestedScrollAccepted() 55 public void onStopNestedScroll(ViewParent parent, View target) { in onStopNestedScroll() 61 public void onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, in onNestedScroll() 69 public void onNestedPreScroll(ViewParent parent, View target, int dx, int dy, in onNestedPreScroll() 76 public boolean onNestedFling(ViewParent parent, View target, float velocityX, in onNestedFling() 85 public boolean onNestedPreFling(ViewParent parent, View target, float velocityX, in onNestedPreFling() 112 public boolean onStartNestedScroll(ViewParent parent, View child, View target, in onStartNestedScroll() 124 public void onNestedScrollAccepted(ViewParent parent, View child, View target, in onNestedScrollAccepted() 135 public void onStopNestedScroll(ViewParent parent, View target) { in onStopNestedScroll() [all …]
|
D | NestedScrollingParent.java | 63 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()
|
D | NestedScrollingParent2.java | 64 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/ |
D | ObjectAnimator.java | 212 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/ |
D | GridSetSelectionBaseTest.java | 58 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/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
D | TestedFrameLayout.java | 134 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/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationIconDozeHelper.java | 45 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()
|
D | NotificationDozeHelper.java | 34 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/ |
D | matchgen.py | 68 target = trie variable 70 target = target[c] variable 73 def dump(target, index): argument
|
/frameworks/support/core-ui/java/android/support/v4/view/ |
D | NestedScrollingParentHelper.java | 61 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/base/tools/layoutlib/bridge/src/android/animation/ |
D | PropertyValuesHolder_Delegate.java | 102 private static void callMethod(Object target, long methodID, Object... args) { in callMethod() 139 /*package*/ static void nCallIntMethod(Object target, long methodID, int arg) { in nCallIntMethod() 144 /*package*/ static void nCallFloatMethod(Object target, long methodID, float arg) { in nCallFloatMethod() 149 /*package*/ static void nCallTwoIntMethod(Object target, long methodID, int arg1, in nCallTwoIntMethod() 155 /*package*/ static void nCallFourIntMethod(Object target, long methodID, int arg1, in nCallFourIntMethod() 161 /*package*/ static void nCallMultipleIntMethod(Object target, long methodID, in nCallMultipleIntMethod() 174 /*package*/ static void nCallTwoFloatMethod(Object target, long methodID, float arg1, in nCallTwoFloatMethod() 180 /*package*/ static void nCallFourFloatMethod(Object target, long methodID, float arg1, in nCallFourFloatMethod() 186 /*package*/ static void nCallMultipleFloatMethod(Object target, long methodID, in nCallMultipleFloatMethod()
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLUtils.java | 98 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/ |
D | ParallaxEffect.java | 134 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/ |
D | GL11ExtensionPack.java | 111 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/ |
D | LinkProperties.java | 836 public boolean isIdenticalInterfaceName(LinkProperties target) { in isIdenticalInterfaceName() 847 public boolean isIdenticalAddresses(LinkProperties target) { in isIdenticalAddresses() 861 public boolean isIdenticalDnses(LinkProperties target) { in isIdenticalDnses() 880 public boolean isIdenticalRoutes(LinkProperties target) { in isIdenticalRoutes() 893 public boolean isIdenticalHttpProxy(LinkProperties target) { in isIdenticalHttpProxy() 905 public boolean isIdenticalStackedLinks(LinkProperties target) { in isIdenticalStackedLinks() 926 public boolean isIdenticalMtu(LinkProperties target) { in isIdenticalMtu() 937 public boolean isIdenticalTcpBufferSizes(LinkProperties target) { in isIdenticalTcpBufferSizes() 985 public CompareResult<LinkAddress> compareAddresses(LinkProperties target) { in compareAddresses() 1014 public CompareResult<InetAddress> compareDnses(LinkProperties target) { in compareDnses() [all …]
|
/frameworks/base/core/java/android/view/ |
D | ViewParent.java | 71 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/ |
D | android_animation_PropertyValuesHolder.cpp | 77 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/ |
D | TouchAnimator.java | 131 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/base/libs/hwui/debug/ |
D | NullGlesDriver.h | 49 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 …]
|
/frameworks/av/camera/ndk/ |
D | NdkCaptureRequest.cpp | 41 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/av/media/libstagefright/ |
D | DataConverter.cpp | 30 status_t DataConverter::convert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target) { in convert() 47 const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target) { in safeConvert() 96 AudioConverter* AudioConverter::Create(AudioEncoding source, AudioEncoding target) { in Create()
|