Searched refs:target (Results 1 - 25 of 443) 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
/frameworks/support/v4/java/android/support/v4/widget/
H A DListViewAutoScrollHelper.java29 public ListViewAutoScrollHelper(ListView target) { argument
30 super(target);
32 mTarget = target;
37 final ListView target = mTarget;
38 final int firstPosition = target.getFirstVisiblePosition();
43 final View firstView = target.getChildAt(0);
49 target.setSelectionFromTop(firstPosition, newTop);
60 final ListView target = mTarget;
61 final int itemCount = target.getCount();
66 final int childCount = 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
266 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
287 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
303 onStopNestedScroll(ViewParent parent, View target) argument
328 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
353 onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed) argument
377 onNestedFling(ViewParent parent, View target, float velocityX, float velocityY, boolean consumed) argument
402 onNestedPreFling(ViewParent parent, View target, float velocityX, float velocityY) argument
[all...]
/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/base/packages/SystemUI/src/com/android/systemui/volume/
H A DIconPulser.java36 public void start(final View target) { argument
37 if (target == null || target.getScaleX() != 1) return; // n/a, or already running
38 target.animate().cancel();
39 target.animate().scaleX(PULSE_SCALE).scaleY(PULSE_SCALE)
44 target.animate().scaleX(1).scaleY(1).setListener(null);
/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.java43 ByteBuffer target) {
49 target.order(ByteOrder.LITTLE_ENDIAN);
50 target.putShort((short) Constants.ANQP_QUERY_LIST);
51 int lenPos = target.position();
52 target.putShort((short) 0);
57 target.putShort(id.shortValue());
63 target.putShort(lenPos, (short) (target.position() - lenPos - Constants.BYTES_IN_SHORT));
67 target.putShort((short) Constants.ANQP_VENDOR_SPEC);
68 int vsLenPos = target
42 buildQueryRequest(Set<Constants.ANQPElementType> elements, ByteBuffer target) argument
92 buildHomeRealmRequest(List<String> realmNames, ByteBuffer target) argument
115 buildIconRequest(String fileName, ByteBuffer target) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DPropertyValuesHolder_Delegate.java65 /*package*/ static void nCallIntMethod(Object target, long methodID, int arg) { argument
70 /*package*/ static void nCallFloatMethod(Object target, long methodID, float arg) { argument
75 /*package*/ static void nCallTwoIntMethod(Object target, long methodID, int arg1, argument
81 /*package*/ static void nCallFourIntMethod(Object target, long methodID, int arg1, argument
87 /*package*/ static void nCallMultipleIntMethod(Object target, long methodID, argument
93 /*package*/ static void nCallTwoFloatMethod(Object target, long methodID, float arg1, argument
99 /*package*/ static void nCallFourFloatMethod(Object target, long methodID, float arg1, argument
105 /*package*/ static void nCallMultipleFloatMethod(Object target, long methodID, 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...]
H A DRemoteCallback.java47 RemoteCallbackProxy(IRemoteCallback target) { argument
48 super(target);
60 RemoteCallback(IRemoteCallback target) { argument
62 mTarget = target;
98 IBinder target = in.readStrongBinder();
99 return target != null ? new RemoteCallbackProxy(
100 IRemoteCallback.Stub.asInterface(target)) : null;
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DTestedFrameLayout.java40 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) { argument
47 public boolean onNestedPreFling(View target, float velocityX, float velocityY) { argument
54 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) { argument
63 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, argument
69 public boolean onNestedFling(View target, float velocityX, float velocityY, boolean consumed) { argument
75 public void onNestedScrollAccepted(View child, View target, int axes) { argument
86 public void onStopNestedScroll(View target) { argument
/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
272 native_texImage2D(int target, int level, int internalformat, Bitmap bitmap, int type, int border) argument
274 native_texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
[all...]
/frameworks/data-binding/developmentPlugins/bintrayPlugin/src/main/groovy/android/databinding/
H A DBintrayPlugin.groovy29 void apply(Project target) {
31 String user = target.getProperties().get(USER_PROP)
32 String apiKey = target.getProperties().get(API_KEY_PROP)
33 def uploadArchivesTask = target.tasks.findByName("uploadArchives")
35 throw new RuntimeException("Cannot find uploadArchives task in $target")
38 def bintrayTask = target.tasks.create(taskName, UploadToBintrayTask, {
43 target.afterEvaluate({
/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/services/core/java/com/android/server/content/
H A DSyncOperation.java63 /** Identifying info for the target for this operation. */
64 public final SyncStorageEngine.EndPoint target; field in class:SyncOperation
114 this.target = info;
145 this(other.target, other.reason, other.syncSource, new Bundle(other.extras),
154 return this.target.matchesSpec(other.target);
186 final SyncStorageEngine.EndPoint other = toRun.target;
187 if (target.target_provider) {
188 return target.account.type.equals(other.account.type)
189 && target
[all...]
/frameworks/base/core/java/android/animation/
H A DObjectAnimator.java30 * This subclass of {@link ValueAnimator} provides support for animating properties on target objects.
31 * The constructors of this class take parameters to define the target object that will be animated
52 * from the target object when the animator starts, just like animators with only one
75 * A weak reference to the target object on which the property exists, set
90 * in a call to the function <code>setFoo()</code> on the target object. If either
123 // New property/values/target should cause re-initialization prior to starting
148 // New property/values/target should cause re-initialization prior to starting
156 * in a call to the function <code>setFoo()</code> on the target object. If either
202 * Private utility constructor that initializes the target object and name of the
205 * @param target Th
210 ObjectAnimator(Object target, String propertyName) argument
221 ObjectAnimator(T target, Property<T, ?> property) argument
240 ofInt(Object target, String propertyName, int... values) argument
263 ofInt(Object target, String xPropertyName, String yPropertyName, Path path) argument
285 ofInt(T target, Property<T, Integer> property, int... values) argument
304 ofInt(T target, Property<T, Integer> xProperty, Property<T, Integer> yProperty, Path path) argument
330 ofMultiInt(Object target, String propertyName, int[][] values) argument
350 ofMultiInt(Object target, String propertyName, Path path) argument
374 ofMultiInt(Object target, String propertyName, TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) argument
395 ofArgb(Object target, String propertyName, int... values) argument
413 ofArgb(T target, Property<T, Integer> property, int... values) argument
434 ofFloat(Object target, String propertyName, float... values) argument
457 ofFloat(Object target, String xPropertyName, String yPropertyName, Path path) argument
479 ofFloat(T target, Property<T, Float> property, float... values) argument
499 ofFloat(T target, Property<T, Float> xProperty, Property<T, Float> yProperty, Path path) argument
525 ofMultiFloat(Object target, String propertyName, float[][] values) argument
546 ofMultiFloat(Object target, String propertyName, Path path) argument
570 ofMultiFloat(Object target, String propertyName, TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) argument
594 ofObject(Object target, String propertyName, TypeEvaluator evaluator, Object... values) argument
621 ofObject(Object target, String propertyName, @Nullable TypeConverter<PointF, ?> converter, Path path) argument
643 ofObject(T target, Property<T, V> property, TypeEvaluator<V> evaluator, V... values) argument
671 ofObject(T target, Property<T, P> property, TypeConverter<V, P> converter, TypeEvaluator<V> evaluator, V... values) argument
698 ofObject(T target, @NonNull Property<T, V> property, @Nullable TypeConverter<PointF, V> converter, Path path) argument
722 ofPropertyValuesHolder(Object target, PropertyValuesHolder... values) argument
918 setTarget(@ullable Object target) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewParent.java442 * true, this ViewParent will become the target view's nested scrolling parent for the duration
447 * @param child Direct child of this ViewParent containing target
448 * @param target View that initiated the nested scroll
453 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); argument
464 * @param child Direct child of this ViewParent containing target
465 * @param target View that initiated the nested scroll
471 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); argument
482 * @param target View that initiated the nested scroll
484 public void onStopNestedScroll(View target); argument
501 * @param target Th
507 onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
530 onNestedPreScroll(View target, int dx, int dy, int[] consumed) argument
551 onNestedFling(View target, float velocityX, float velocityY, boolean consumed) argument
573 onNestedPreFling(View target, float velocityX, float velocityY) argument
592 onNestedPrePerformAccessibilityAction(View target, int action, Bundle arguments) argument
[all...]

Completed in 930 milliseconds

1234567891011>>