Searched refs:target (Results 1 - 25 of 636) 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/core-ui/java/android/support/v4/widget/
H A DListViewAutoScrollHelper.java29 public ListViewAutoScrollHelper(ListView target) { argument
30 super(target);
32 mTarget = target;
48 final ListView target = mTarget;
49 final int itemCount = target.getCount();
54 final int childCount = target.getChildCount();
55 final int firstPosition = target.getFirstVisiblePosition();
61 final View lastView = target.getChildAt(childCount - 1);
62 if (lastView.getBottom() <= target.getHeight()) {
69 final View firstView = 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/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/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/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/java/android/support/v4/view/
H A DNestedScrollingParent.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
63 boolean onStartNestedScroll(@NonNull View child, @NonNull View target, @ScrollAxis int axes); argument
74 * @param child Direct child of this ViewParent containing target
75 * @param target View that initiated the nested scroll
81 void onNestedScrollAccepted(@NonNull View child, @NonNull View target, @ScrollAxis int axes); argument
92 * @param target View that initiated the nested scroll
94 void onStopNestedScroll(@NonNull View target); argument
111 * @param target Th
117 onNestedScroll(@onNull View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
140 onNestedPreScroll(@onNull View target, int dx, int dy, @NonNull int[] consumed) argument
161 onNestedFling(@onNull View target, float velocityX, float velocityY, boolean consumed) argument
183 onNestedPreFling(@onNull View target, float velocityX, float velocityY) argument
[all...]
H A DViewParentCompat.java38 public boolean onStartNestedScroll(ViewParent parent, View child, View target, argument
41 return ((NestedScrollingParent) parent).onStartNestedScroll(child, target,
47 public void onNestedScrollAccepted(ViewParent parent, View child, View target, argument
50 ((NestedScrollingParent) parent).onNestedScrollAccepted(child, target,
55 public void onStopNestedScroll(ViewParent parent, View target) { argument
57 ((NestedScrollingParent) parent).onStopNestedScroll(target);
61 public void onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, argument
64 ((NestedScrollingParent) parent).onNestedScroll(target, dxConsumed, dyConsumed,
69 public void onNestedPreScroll(ViewParent parent, View target, int dx, int dy, argument
72 ((NestedScrollingParent) parent).onNestedPreScroll(target, d
76 onNestedFling(ViewParent parent, View target, float velocityX, float velocityY, boolean consumed) argument
85 onNestedPreFling(ViewParent parent, View target, float velocityX, float velocityY) argument
112 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
124 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
135 onStopNestedScroll(ViewParent parent, View target) argument
145 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
156 onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed) argument
167 onNestedFling(ViewParent parent, View target, float velocityX, float velocityY, boolean consumed) argument
179 onNestedPreFling(ViewParent parent, View target, float velocityX, float velocityY) argument
247 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
264 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
277 onStopNestedScroll(ViewParent parent, View target) argument
294 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
312 onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed) argument
340 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes, int type) argument
370 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes, int type) argument
394 onStopNestedScroll(ViewParent parent, View target, int type) argument
426 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int type) argument
459 onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed, int type) argument
489 onNestedFling(ViewParent parent, View target, float velocityX, float velocityY, boolean consumed) argument
514 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, @Nullable int[] consumed, @NestedScrollType int type) argument
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/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/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/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/av/include/media/stagefright/
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/av/media/libstagefright/foundation/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/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...]
/frameworks/av/camera/ndk/
H A DNdkCaptureRequest.cpp41 void ACameraOutputTarget_free(ACameraOutputTarget* target) { argument
43 if (target != nullptr) {
44 delete target;
51 ACaptureRequest* req, const ACameraOutputTarget* target) {
53 if (req == nullptr || req->targets == nullptr || target == nullptr) {
59 ALOGE("%s: Error: invalid input: req %p, req-targets %p, target %p",
60 __FUNCTION__, req, req_targets, target);
63 auto pair = req->targets->mOutputs.insert(*target);
65 ALOGW("%s: target %p already exists!", __FUNCTION__, target);
50 ACaptureRequest_addTarget( ACaptureRequest* req, const ACameraOutputTarget* target) argument
71 ACaptureRequest_removeTarget( ACaptureRequest* req, const ACameraOutputTarget* target) argument
[all...]
/frameworks/av/media/libaaudio/src/utility/
H A DLinearRamp.cpp20 float target = mTarget.load(); local
21 if (target != mLevelTo) {
22 // Update target. Continue from previous level.
23 mLevelTo = target;
/frameworks/base/core/java/android/hardware/camera2/dispatch/
H A DDuckTypingDispatcher.java41 * @param target destination dispatch type, methods will be redirected to this dispatcher
44 public DuckTypingDispatcher(Dispatchable<T> target, Class<T> targetClass) { argument
46 checkNotNull(target, "target must not be null");
48 mDuck = new MethodNameInvoker<T>(target, targetClass);
/frameworks/base/opengl/java/android/opengl/
H A DGLUtils.java92 * @param target
98 public static void texImage2D(int target, int level, int internalformat, argument
106 if (native_texImage2D(target, level, internalformat, bitmap, -1, border)!=0) {
117 * @param target
124 public static void texImage2D(int target, int level, int internalformat, argument
132 if (native_texImage2D(target, level, internalformat, bitmap, type, border)!=0) {
141 * @param target
146 public static void texImage2D(int target, int level, Bitmap bitmap, argument
154 if (native_texImage2D(target, level, -1, bitmap, -1, border)!=0) {
175 * @param target
181 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap) argument
206 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
266 native_texImage2D(int target, int level, int internalformat, Bitmap bitmap, int type, int border) argument
268 native_texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
[all...]

Completed in 460 milliseconds

1234567891011>>