Searched refs:target (Results 1 - 25 of 645) sorted by relevance

1234567891011>>

/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
H A DPrimitiveFormat.java28 public static MutableFrameFormat createByteFormat(int count, int target) { argument
29 return createFormat(FrameFormat.TYPE_BYTE, count, target);
32 public static MutableFrameFormat createInt16Format(int count, int target) { argument
33 return createFormat(FrameFormat.TYPE_INT16, count, target);
36 public static MutableFrameFormat createInt32Format(int count, int target) { argument
37 return createFormat(FrameFormat.TYPE_INT32, count, target);
40 public static MutableFrameFormat createFloatFormat(int count, int target) { argument
41 return createFormat(FrameFormat.TYPE_FLOAT, count, target);
44 public static MutableFrameFormat createDoubleFormat(int count, int target) { argument
45 return createFormat(FrameFormat.TYPE_DOUBLE, count, target);
48 createByteFormat(int target) argument
52 createInt16Format(int target) argument
56 createInt32Format(int target) argument
60 createFloatFormat(int target) argument
64 createDoubleFormat(int target) argument
68 createFormat(int baseType, int count, int target) argument
74 createFormat(int baseType, int target) argument
[all...]
H A DObjectFormat.java29 public static MutableFrameFormat fromClass(Class clazz, int count, int target) { argument
31 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target);
36 result.setBytesPerSample(bytesPerSampleForClass(clazz, target));
40 public static MutableFrameFormat fromClass(Class clazz, int target) { argument
41 return fromClass(clazz, FrameFormat.SIZE_UNSPECIFIED, target);
44 public static MutableFrameFormat fromObject(Object object, int target) { argument
46 ? new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target)
47 : fromClass(object.getClass(), FrameFormat.SIZE_UNSPECIFIED, target);
50 public static MutableFrameFormat fromObject(Object object, int count, int target) { argument
52 ? new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target)
56 bytesPerSampleForClass(Class clazz, int target) argument
[all...]
H A DImageFormat.java40 int target) {
41 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_BYTE, target);
45 if (target == FrameFormat.TARGET_SIMPLE) {
54 int target) {
59 target);
62 public static MutableFrameFormat create(int colorspace, int target) { argument
67 target);
36 create(int width, int height, int colorspace, int bytesPerSample, int target) argument
51 create(int width, int height, int colorspace, int target) argument
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetBufferPointerv.java1 // C function void glGetBufferPointerv ( GLenum target, GLenum pname, GLvoid** params )
8 int target,
7 glGetBufferPointerv( int target, int pname ) argument
H A DglMapBufferRange.java1 // C function GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access )
8 int target,
7 glMapBufferRange( int target, int offset, int length, int access ) argument
H A DglGetBufferPointerv.cpp1 /* void glGetBufferPointerv ( GLenum target, GLenum pname, GLvoid** params ) */
4 (JNIEnv *_env, jobject _this, jint target, jint pname) {
7 glGetBufferParameteri64v((GLenum)target, GL_BUFFER_MAP_LENGTH, &_mapLength);
8 glGetBufferPointerv((GLenum)target, (GLenum)pname, &_p);
3 android_glGetBufferPointerv__II(JNIEnv *_env, jobject _this, jint target, jint pname) argument
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DListViewAutoScrollHelper.java32 public ListViewAutoScrollHelper(@NonNull ListView target) { argument
33 super(target);
35 mTarget = target;
51 final ListView target = mTarget;
52 final int itemCount = target.getCount();
57 final int childCount = target.getChildCount();
58 final int firstPosition = target.getFirstVisiblePosition();
64 final View lastView = target.getChildAt(childCount - 1);
65 if (lastView.getBottom() <= target.getHeight()) {
72 final View firstView = target
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/power/batterysaver/
H A DBatterySavingStatsTest.java121 final BatterySavingStatsTestable target = new BatterySavingStatsTestable();
122 target.setSendTronLog(sendTronEvents);
124 target.assertDumpable();
126 target.advanceClock(1);
127 target.drainBattery(200);
129 target.transitionState(
134 target.advanceClock(4);
135 target.drainBattery(100);
137 target.transitionState(
142 target
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationIconDozeHelper.java45 public void setImageDark(ImageView target, boolean dark, boolean fade, long delay, argument
49 fadeImageColorFilter(target, dark, delay);
50 fadeImageAlpha(target, dark, delay);
52 fadeGrayscale(target, dark, delay);
56 updateImageColorFilter(target, dark);
57 updateImageAlpha(target, dark);
59 updateGrayscale(target, dark);
64 private void fadeImageColorFilter(final ImageView target, boolean dark, long delay) { argument
66 updateImageColorFilter(target, (Float) animation.getAnimatedValue());
70 private void fadeImageAlpha(final ImageView target, boolea argument
77 updateImageColorFilter(ImageView target, boolean dark) argument
81 updateImageColorFilter(ImageView target, float intensity) argument
97 updateImageAlpha(ImageView target, boolean dark) argument
[all...]
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/test/
H A DNestedScrollingParent2Adapter.java28 public boolean onStartNestedScroll(@NonNull View child, @NonNull View target, argument
34 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, argument
39 public void onStopNestedScroll(@NonNull View target, @ViewCompat.NestedScrollType int type) { argument
43 public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, argument
48 public void onNestedPreScroll(@NonNull View target, int dx, int dy, argument
53 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
54 return onStartNestedScroll(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
58 public void onNestedScrollAccepted(View child, View target, int axes) { argument
59 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH);
63 public void onNestedPreScroll(View target, in argument
68 onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
75 onStopNestedScroll(View target) argument
80 onNestedFling(@onNull View target, float velocityX, float velocityY, boolean consumed) argument
86 onNestedPreFling(@onNull View target, float velocityX, float velocityY) argument
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A DAHandlerReflector.h27 AHandlerReflector(T *target) argument
28 : mTarget(target) {
33 sp<T> target = mTarget.promote(); local
34 if (target != NULL) {
35 target->onMessageReceived(msg);
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DAHandlerReflector.h27 AHandlerReflector(T *target) argument
28 : mTarget(target) {
33 sp<T> target = mTarget.promote(); local
34 if (target != NULL) {
35 target->onMessageReceived(msg);
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DAHandlerReflector.h27 AHandlerReflector(T *target) argument
28 : mTarget(target) {
33 sp<T> target = mTarget.promote(); local
34 if (target != NULL) {
35 target->onMessageReceived(msg);
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DNestedScrollingParent.java53 * true, this ViewParent will become the target view's nested scrolling parent for the duration
58 * @param child Direct child of this ViewParent containing target
59 * @param target View that initiated the nested scroll
64 boolean onStartNestedScroll(@NonNull View child, @NonNull View target, @ScrollAxis int axes); argument
75 * @param child Direct child of this ViewParent containing target
76 * @param target View that initiated the nested scroll
82 void onNestedScrollAccepted(@NonNull View child, @NonNull View target, @ScrollAxis int axes); argument
93 * @param target View that initiated the nested scroll
95 void onStopNestedScroll(@NonNull View target); argument
112 * @param target Th
118 onNestedScroll(@onNull View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
141 onNestedPreScroll(@onNull View target, int dx, int dy, @NonNull int[] consumed) argument
162 onNestedFling(@onNull View target, float velocityX, float velocityY, boolean consumed) argument
184 onNestedPreFling(@onNull View target, float velocityX, float velocityY) argument
[all...]
H A DNestedScrollingParentHelper.java62 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, argument
64 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH);
75 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, argument
99 public void onStopNestedScroll(@NonNull View target) { argument
100 onStopNestedScroll(target, ViewCompat.TYPE_TOUCH);
110 public void onStopNestedScroll(@NonNull View target, @NestedScrollType int type) { argument
H A DViewParentCompat.java74 * @param child Direct child of this ViewParent containing target
75 * @param target View that initiated the nested scroll
80 public static boolean onStartNestedScroll(ViewParent parent, View child, View target, argument
82 return onStartNestedScroll(parent, child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
92 * @param child Direct child of this ViewParent containing target
93 * @param target View that initiated the nested scroll
97 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, argument
99 onNestedScrollAccepted(parent, child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
108 * @param target View that initiated the nested scroll
110 public static void onStopNestedScroll(ViewParent parent, View target) { argument
127 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
145 onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed) argument
174 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes, int type) argument
215 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes, int type) argument
250 onStopNestedScroll(ViewParent parent, View target, int type) argument
292 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int type) argument
337 onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed, int type) argument
377 onNestedFling(ViewParent parent, View target, float velocityX, float velocityY, boolean consumed) argument
414 onNestedPreFling(ViewParent parent, View target, float velocityX, float velocityY) argument
[all...]
H A DNestedScrollingParent2.java52 * true, this ViewParent will become the target view's nested scrolling parent for the duration
57 * @param child Direct child of this ViewParent containing target
58 * @param target View that initiated the nested scroll
64 boolean onStartNestedScroll(@NonNull View child, @NonNull View target, @ScrollAxis int axes, argument
76 * @param child Direct child of this ViewParent containing target
77 * @param target View that initiated the nested scroll
84 void onNestedScrollAccepted(@NonNull View child, @NonNull View target, @ScrollAxis int axes, argument
96 * @param target View that initiated the nested scroll
99 void onStopNestedScroll(@NonNull View target, @NestedScrollType int type); argument
116 * @param target Th
123 onNestedScroll(@onNull View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, @NestedScrollType int type) argument
147 onNestedPreScroll(@onNull View target, int dx, int dy, @NonNull int[] consumed, @NestedScrollType int type) argument
[all...]
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2CaptureCallbackSplitter.java52 for (CaptureCallback target : mRecipients) {
53 target.onCaptureCompleted(session, request, result);
60 for (CaptureCallback target : mRecipients) {
61 target.onCaptureFailed(session, request, failure);
68 for (CaptureCallback target : mRecipients) {
69 target.onCaptureProgressed(session, request, partialResult);
75 for (CaptureCallback target : mRecipients) {
76 target.onCaptureSequenceAborted(session, sequenceId);
83 for (CaptureCallback target : mRecipients) {
84 target
[all...]
/frameworks/support/palette/ktx/src/main/java/androidx/palette/graphics/
H A DPalette.kt31 * Returns the selected swatch for the given target from the palette, or `null` if one
36 inline operator fun Palette.get(target: Target): Palette.Swatch? = getSwatchForTarget(target)
/frameworks/base/core/proto/android/app/
H A Dpendingintent.proto31 optional string target = 1;
/frameworks/ml/nn/driver/cache/
H A DAndroid.bp38 target: {
/frameworks/native/cmds/installd/
H A Dmatchgen.py68 target = trie variable
70 target = target[c] variable
71 target["\0"] = t
73 def dump(target, index):
76 for k in sorted(target.keys()):
78 print "%scase '\\0': return %s;" % (prefix, target[k])
85 dump(target[k], index + 1)
/frameworks/layoutlib/bridge/src/android/animation/
H A DPropertyValuesHolder_Delegate.java102 private static void callMethod(Object target, long methodID, Object... args) { argument
108 method.invoke(target, args);
137 /*package*/ static void nCallIntMethod(Object target, long methodID, int arg) { argument
138 callMethod(target, methodID, arg);
142 /*package*/ static void nCallFloatMethod(Object target, long methodID, float arg) { argument
143 callMethod(target, methodID, arg);
147 /*package*/ static void nCallTwoIntMethod(Object target, long methodID, int arg1, argument
149 callMethod(target, methodID, arg1, arg2);
153 /*package*/ static void nCallFourIntMethod(Object target, long methodID, int arg1, argument
155 callMethod(target, methodI
159 nCallMultipleIntMethod(Object target, long methodID, int[] args) argument
172 nCallTwoFloatMethod(Object target, long methodID, float arg1, float arg2) argument
178 nCallFourFloatMethod(Object target, long methodID, float arg1, float arg2, float arg3, float arg4) argument
184 nCallMultipleFloatMethod(Object target, long methodID, float[] args) argument
[all...]
/frameworks/av/media/libstagefright/include/
H A DDataConverter.h34 status_t convert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
38 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
41 // SampleConverterBase uses a ratio to calculate the source and target sizes
42 // based on source and target sample sizes.
48 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target) = 0;
61 static AudioConverter *Create(AudioEncoding source, AudioEncoding target);
64 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
69 AudioEncoding target, size_t targetSample)
72 mTo(target) { }
67 AudioConverter( AudioEncoding source, size_t sourceSample, AudioEncoding target, size_t targetSample) argument
/frameworks/base/core/java/android/os/
H A DMessenger.java41 * @param target The Handler that will receive sent messages.
43 public Messenger(Handler target) { argument
44 mTarget = target.getIMessenger();
53 * @throws RemoteException Throws DeadObjectException if the target
101 IBinder target = in.readStrongBinder();
102 return target != null ? new Messenger(target) : null;
143 * @param target The IBinder this Messenger should communicate with.
145 public Messenger(IBinder target) { argument
146 mTarget = IMessenger.Stub.asInterface(target);
[all...]

Completed in 7807 milliseconds

1234567891011>>