Searched refs:target (Results 1 - 25 of 509) 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 )
4 int target,
3 glGetBufferPointerv( int target, int pname ) argument
H A DglMapBufferRange.java1 // C function GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access )
4 int target,
3 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
H A DglMapBufferRange.cpp1 /* GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access ) */
4 (JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) {
5 GLvoid* _p = glMapBufferRange((GLenum)target,
3 android_glMapBufferRange__IIII(JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) argument
/frameworks/support/v4/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/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/support/v4/java/android/support/v4/view/
H A DNestedScrollingParent.java50 * true, this ViewParent will become the target view's nested scrolling parent for the duration
55 * @param child Direct child of this ViewParent containing target
56 * @param target View that initiated the nested scroll
61 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); argument
72 * @param child Direct child of this ViewParent containing target
73 * @param target View that initiated the nested scroll
79 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); argument
90 * @param target View that initiated the nested scroll
92 public void onStopNestedScroll(View target); argument
109 * @param target Th
115 onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
138 onNestedPreScroll(View target, int dx, int dy, int[] consumed) argument
159 onNestedFling(View target, float velocityX, float velocityY, boolean consumed) argument
181 onNestedPreFling(View target, float velocityX, float velocityY) argument
[all...]
H A DViewParentCompat.java38 boolean onStartNestedScroll(ViewParent parent, View child, View target, argument
40 void onNestedScrollAccepted(ViewParent parent, View child, View target, argument
42 void onStopNestedScroll(ViewParent parent, View target); argument
43 void onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, argument
45 void onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed); argument
46 boolean onNestedFling(ViewParent parent, View target, float velocityX, float velocityY, argument
48 boolean onNestedPreFling(ViewParent parent, View target, float velocityX, float velocityY); argument
68 public boolean onStartNestedScroll(ViewParent parent, View child, View target, argument
71 return ((NestedScrollingParent) parent).onStartNestedScroll(child, target,
78 public void onNestedScrollAccepted(ViewParent parent, View child, View target, argument
87 onStopNestedScroll(ViewParent parent, View target) argument
94 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
103 onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed) argument
111 onNestedFling(ViewParent parent, View target, float velocityX, float velocityY, boolean consumed) argument
121 onNestedPreFling(ViewParent parent, View target, float velocityX, float velocityY) argument
156 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
163 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
170 onStopNestedScroll(ViewParent parent, View target) argument
175 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
182 onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed) argument
188 onNestedFling(ViewParent parent, View target, float velocityX, float velocityY, boolean consumed) argument
195 onNestedPreFling(ViewParent parent, View target, float velocityX, float velocityY) argument
264 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
285 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
301 onStopNestedScroll(ViewParent parent, View target) argument
326 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
351 onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed) argument
375 onNestedFling(ViewParent parent, View target, float velocityX, float velocityY, boolean consumed) argument
400 onNestedPreFling(ViewParent parent, View target, float velocityX, float velocityY) argument
[all...]
H A DNestedScrollingParentHelper.java57 public void onNestedScrollAccepted(View child, View target, int axes) { argument
79 * @param target View that initiated the nested scroll
81 public void onStopNestedScroll(View target) { argument
/frameworks/support/v4/api21/android/support/v4/view/
H A DViewParentCompatLollipop.java27 public static boolean onStartNestedScroll(ViewParent parent, View child, View target, argument
30 return parent.onStartNestedScroll(child, target, nestedScrollAxes);
38 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, argument
41 parent.onNestedScrollAccepted(child, target, nestedScrollAxes);
48 public static void onStopNestedScroll(ViewParent parent, View target) { argument
50 parent.onStopNestedScroll(target);
57 public static void onNestedScroll(ViewParent parent, View target, int dxConsumed, argument
60 parent.onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed);
67 public static void onNestedPreScroll(ViewParent parent, View target, int dx, int dy, argument
70 parent.onNestedPreScroll(target, d
77 onNestedFling(ViewParent parent, View target, float velocityX, float velocityY, boolean consumed) argument
88 onNestedPreFling(ViewParent parent, 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/opt/net/wifi/service/java/com/android/server/wifi/anqp/
H A DANQPFactory.java79 ByteBuffer target) {
85 target.order(ByteOrder.LITTLE_ENDIAN);
86 target.putShort((short) Constants.ANQP_QUERY_LIST);
87 int lenPos = target.position();
88 target.putShort((short) 0);
93 target.putShort(id.shortValue());
99 target.putShort(lenPos, (short) (target.position() - lenPos - Constants.BYTES_IN_SHORT));
103 target.putShort((short) Constants.ANQP_VENDOR_SPEC);
104 int vsLenPos = target
78 buildQueryRequest(Set<Constants.ANQPElementType> elements, ByteBuffer target) argument
128 buildHomeRealmRequest(List<String> realmNames, ByteBuffer target) argument
151 buildIconRequest(String fileName, ByteBuffer target) argument
[all...]
/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) {
54 ALOGE("%s: Error: invalid input: req %p, req-targets %p, target %p",
55 __FUNCTION__, req, req->targets, target);
58 auto pair = req->targets->mOutputs.insert(*target);
60 ALOGW("%s: target %p already exists!", __FUNCTION__, target);
50 ACaptureRequest_addTarget( ACaptureRequest* req, const ACameraOutputTarget* target) argument
66 ACaptureRequest_removeTarget( ACaptureRequest* req, const ACameraOutputTarget* target) argument
[all...]
/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...]
/frameworks/ml/bordeaux/learning/multiclass_pa/java/android/bordeaux/learning/
H A DMulticlassPA.java36 int target) {
38 index_array, float_array, target, nativeClassifier);
63 int target, long classPtr);
34 sparseTrainOneExample(int[] index_array, float[] float_array, int target) argument
61 nativeSparseTrainOneExample(int[] index_array, float[] float_array, int target, long classPtr) argument
/frameworks/base/core/java/android/animation/
H A DObjectAnimator.java31 * This subclass of {@link ValueAnimator} provides support for animating properties on target objects.
32 * The constructors of this class take parameters to define the target object that will be animated
53 * from the target object when the animator starts, just like animators with only one
77 * A weak reference to the target object on which the property exists, set
92 * in a call to the function <code>setFoo()</code> on the target object. If either
125 // New property/values/target should cause re-initialization prior to starting
150 // New property/values/target should cause re-initialization prior to starting
158 * in a call to the function <code>setFoo()</code> on the target object. If either
204 * Private utility constructor that initializes the target object and name of the
207 * @param target Th
212 ObjectAnimator(Object target, String propertyName) argument
223 ObjectAnimator(T target, Property<T, ?> property) argument
243 ofInt(Object target, String propertyName, int... values) argument
266 ofInt(Object target, String xPropertyName, String yPropertyName, Path path) argument
289 ofInt(T target, Property<T, Integer> property, int... values) argument
308 ofInt(T target, Property<T, Integer> xProperty, Property<T, Integer> yProperty, Path path) argument
334 ofMultiInt(Object target, String propertyName, int[][] values) argument
354 ofMultiInt(Object target, String propertyName, Path path) argument
379 ofMultiInt(Object target, String propertyName, TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) argument
401 ofArgb(Object target, String propertyName, int... values) argument
420 ofArgb(T target, Property<T, Integer> property, int... values) argument
442 ofFloat(Object target, String propertyName, float... values) argument
465 ofFloat(Object target, String xPropertyName, String yPropertyName, Path path) argument
488 ofFloat(T target, Property<T, Float> property, float... values) argument
508 ofFloat(T target, Property<T, Float> xProperty, Property<T, Float> yProperty, Path path) argument
534 ofMultiFloat(Object target, String propertyName, float[][] values) argument
555 ofMultiFloat(Object target, String propertyName, Path path) argument
580 ofMultiFloat(Object target, String propertyName, TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) argument
610 ofObject(Object target, String propertyName, TypeEvaluator evaluator, Object... values) argument
637 ofObject(Object target, String propertyName, @Nullable TypeConverter<PointF, ?> converter, Path path) argument
666 ofObject(T target, Property<T, V> property, TypeEvaluator<V> evaluator, V... values) argument
701 ofObject(T target, Property<T, P> property, TypeConverter<V, P> converter, TypeEvaluator<V> evaluator, V... values) argument
728 ofObject(T target, @NonNull Property<T, V> property, @Nullable TypeConverter<PointF, V> converter, Path path) argument
752 ofPropertyValuesHolder(Object target, PropertyValuesHolder... values) argument
926 setTarget(@ullable Object target) argument
[all...]
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DILearning_MulticlassPA.aidl27 void TrainOneSample(in List<IntFloat> sample, int target);
/frameworks/av/media/libstagefright/include/
H A DDataConverter.h34 status_t convert(const sp<ABuffer> &source, sp<ABuffer> &target);
38 virtual status_t safeConvert(const sp<ABuffer> &source, sp<ABuffer> &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<ABuffer> &source, sp<ABuffer> &target) = 0;
61 static AudioConverter *Create(AudioEncoding source, AudioEncoding 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/tests/coretests/src/android/net/
H A DLinkPropertiesTest.java56 public void assertLinkPropertiesEqual(LinkProperties source, LinkProperties target) { argument
58 assertTrue(source.isIdenticalInterfaceName(target));
59 assertTrue(target.isIdenticalInterfaceName(source));
61 assertTrue(source.isIdenticalAddresses(target));
62 assertTrue(target.isIdenticalAddresses(source));
64 assertTrue(source.isIdenticalDnses(target));
65 assertTrue(target.isIdenticalDnses(source));
67 assertTrue(source.isIdenticalRoutes(target));
68 assertTrue(target.isIdenticalRoutes(source));
70 assertTrue(source.isIdenticalHttpProxy(target));
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DRampAnimator.java25 * a given variable rate until it reaches a particular target value.
54 * the value jumps directly to the target.
56 * @param target The target value.
58 * @return True if the target differs from the previous target.
60 public boolean animateTo(int target, int rate) { argument
61 // Immediately jump to the target the first time.
63 if (mFirstTime || target != mCurrentValue) {
66 mTargetValue = target;
[all...]

Completed in 1617 milliseconds

1234567891011>>