Searched refs:target (Results 1 - 25 of 385) 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;
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/base/core/tests/coretests/src/android/net/
H A DLinkPropertiesTest.java45 public void assertLinkPropertiesEqual(LinkProperties source, LinkProperties target) { argument
47 assertTrue(source.isIdenticalInterfaceName(target));
48 assertTrue(target.isIdenticalInterfaceName(source));
50 assertTrue(source.isIdenticalAddresses(target));
51 assertTrue(target.isIdenticalAddresses(source));
53 assertTrue(source.isIdenticalDnses(target));
54 assertTrue(target.isIdenticalDnses(source));
56 assertTrue(source.isIdenticalRoutes(target));
57 assertTrue(target.isIdenticalRoutes(source));
59 assertTrue(source.isIdenticalHttpProxy(target));
[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/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/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.java100 * @param target
106 public static void texImage2D(int target, int level, int internalformat, argument
114 if (native_texImage2D(target, level, internalformat, bitmap, -1, border)!=0) {
125 * @param target
132 public static void texImage2D(int target, int level, int internalformat, argument
140 if (native_texImage2D(target, level, internalformat, bitmap, type, border)!=0) {
149 * @param target
154 public static void texImage2D(int target, int level, Bitmap bitmap, argument
162 if (native_texImage2D(target, level, -1, bitmap, -1, border)!=0) {
183 * @param target
189 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap) argument
214 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
282 native_texImage2D(int target, int level, int internalformat, Bitmap bitmap, int type, int border) argument
284 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/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
111 this.target = info;
142 this(other.target, other.reason, other.syncSource, new Bundle(other.extras),
151 return this.target.matchesSpec(other.target);
183 final SyncStorageEngine.EndPoint other = toRun.target;
184 if (target.target_provider) {
185 return target.account.type.equals(other.account.type)
186 && 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 * A weak reference to the target object on which the property exists, set
67 * in a call to the function <code>setFoo()</code> on the target object. If either
100 // New property/values/target should cause re-initialization prior to starting
125 // New property/values/target should cause re-initialization prior to starting
133 * in a call to the function <code>setFoo()</code> on the target object. If either
179 * Private utility constructor that initializes the target object and name of the
182 * @param target The object whose property is to be animated. This object should
187 private ObjectAnimator(Object target, Strin argument
198 ObjectAnimator(T target, Property<T, ?> property) argument
217 ofInt(Object target, String propertyName, int... values) argument
240 ofInt(Object target, String xPropertyName, String yPropertyName, Path path) argument
262 ofInt(T target, Property<T, Integer> property, int... values) argument
281 ofInt(T target, Property<T, Integer> xProperty, Property<T, Integer> yProperty, Path path) argument
307 ofMultiInt(Object target, String propertyName, int[][] values) argument
327 ofMultiInt(Object target, String propertyName, Path path) argument
351 ofMultiInt(Object target, String propertyName, TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) argument
372 ofArgb(Object target, String propertyName, int... values) argument
390 ofArgb(T target, Property<T, Integer> property, int... values) argument
411 ofFloat(Object target, String propertyName, float... values) argument
434 ofFloat(Object target, String xPropertyName, String yPropertyName, Path path) argument
456 ofFloat(T target, Property<T, Float> property, float... values) argument
476 ofFloat(T target, Property<T, Float> xProperty, Property<T, Float> yProperty, Path path) argument
502 ofMultiFloat(Object target, String propertyName, float[][] values) argument
523 ofMultiFloat(Object target, String propertyName, Path path) argument
547 ofMultiFloat(Object target, String propertyName, TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) argument
571 ofObject(Object target, String propertyName, TypeEvaluator evaluator, Object... values) argument
598 ofObject(Object target, String propertyName, @Nullable TypeConverter<PointF, ?> converter, Path path) argument
620 ofObject(T target, Property<T, V> property, TypeEvaluator<V> evaluator, V... values) argument
648 ofObject(T target, Property<T, P> property, TypeConverter<V, P> converter, TypeEvaluator<V> evaluator, V... values) argument
675 ofObject(T target, @NonNull Property<T, V> property, @Nullable TypeConverter<PointF, V> converter, Path path) argument
699 ofPropertyValuesHolder(Object target, PropertyValuesHolder... values) argument
894 setTarget(@ullable Object target) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewParent.java423 * true, this ViewParent will become the target view's nested scrolling parent for the duration
428 * @param child Direct child of this ViewParent containing target
429 * @param target View that initiated the nested scroll
434 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); argument
445 * @param child Direct child of this ViewParent containing target
446 * @param target View that initiated the nested scroll
452 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); argument
463 * @param target View that initiated the nested scroll
465 public void onStopNestedScroll(View target); argument
482 * @param target Th
488 onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
511 onNestedPreScroll(View target, int dx, int dy, int[] consumed) argument
532 onNestedFling(View target, float velocityX, float velocityY, boolean consumed) argument
554 onNestedPreFling(View target, float velocityX, float velocityY) argument
573 onNestedPrePerformAccessibilityAction(View target, int action, Bundle arguments) argument
[all...]
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DILearning_MulticlassPA.aidl27 void TrainOneSample(in List<IntFloat> sample, int target);
/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...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11ExtensionPack.java111 int target,
116 int target,
121 int target,
142 int target
146 int target,
157 int target,
194 int target,
201 int target,
209 int target
235 int target,
110 glBindFramebufferOES( int target, int framebuffer ) argument
115 glBindRenderbufferOES( int target, int renderbuffer ) argument
120 glBindTexture( int target, int texture ) argument
145 glCompressedTexImage2D( int target, int level, int internalformat, int width, int height, int border, int imageSize, java.nio.Buffer data ) argument
156 glCopyTexImage2D( int target, int level, int internalformat, int x, int y, int width, int height, int border ) argument
193 glFramebufferRenderbufferOES( int target, int attachment, int renderbuffertarget, int renderbuffer ) argument
200 glFramebufferTexture2DOES( int target, int attachment, int textarget, int texture, int level ) argument
234 glGetFramebufferAttachmentParameterivOES( int target, int attachment, int pname, int[] params, int offset ) argument
242 glGetFramebufferAttachmentParameterivOES( int target, int attachment, int pname, java.nio.IntBuffer params ) argument
260 glGetRenderbufferParameterivOES( int target, int pname, int[] params, int offset ) argument
267 glGetRenderbufferParameterivOES( int target, int pname, java.nio.IntBuffer params ) argument
320 glRenderbufferStorageOES( int target, int internalformat, int width, int height ) argument
333 glTexEnvf( int target, int pname, float param ) argument
339 glTexEnvfv( int target, int pname, float[] params, int offset ) argument
346 glTexEnvfv( int target, int pname, java.nio.FloatBuffer params ) argument
352 glTexEnvx( int target, int pname, int param ) argument
358 glTexEnvxv( int target, int pname, int[] params, int offset ) argument
365 glTexEnvxv( int target, int pname, java.nio.IntBuffer params ) argument
428 glTexParameterf( int target, int pname, float param ) argument
[all...]
/frameworks/base/core/java/android/app/
H A DTaskStackBuilder.java95 * Add a new Intent with the resolved chain of parents for the target activity to
107 ComponentName target = nextIntent.getComponent();
108 if (target == null) {
109 target = nextIntent.resolveActivity(mSourceContext.getPackageManager());
111 if (target != null) {
112 addParentStack(target);
133 ComponentName target = parent.getComponent();
134 if (target == null) {
135 target = parent.resolveActivity(mSourceContext.getPackageManager());
137 addParentStack(target);
[all...]

Completed in 2298 milliseconds

1234567891011>>