Searched defs:target (Results 1 - 25 of 242) sorted by path

12345678910

/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/libmedia/
H A DAudioTrack.cpp1515 TargetTimeline target)
1517 return mAudioTrack->setMediaTimeTransform(xform, target);
1514 setMediaTimeTransform(const LinearTransform& xform, TargetTimeline target) argument
H A DCharacterEncodingDetector.cpp227 char* target = buffer; local
229 ucnv_convertEx(mUtf8Conv, conv, &target, target + targetLength,
238 *target = 0;
240 while (--target > buffer && *target == ' ') {
241 *target = 0;
H A DIAudioTrack.cpp151 int target) {
158 data.writeInt32(target);
263 int target = data.readInt32(); local
264 reply->writeInt32(setMediaTimeTransform(xform, target));
150 setMediaTimeTransform(const LinearTransform& xform, int target) argument
/frameworks/av/media/libstagefright/
H A DOMXCodec.cpp113 void setCodec(const sp<OMXCodec> &target) { argument
114 mTarget = target;
835 // Check whether the target color format is supported.
1069 // Are the target profile and level supported by the encoder?
2377 "returning output buffer at target timestamp "
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp39 AMessage::AMessage(uint32_t what, ALooper::handler_id target) argument
41 mTarget(target),
61 ALooper::handler_id AMessage::target() const { function in class:android::AMessage
441 tmp = StringPrintf(", target = %d", mTarget);
/frameworks/av/services/audioflinger/
H A DAudioMixer.cpp737 * @param newVolume set volume target in floating point [0.0, 1.0].
740 * @param pIntSetVolume pointer to the U4.12 integer target volume, set on return.
743 * @param pSetVolume pointer to the float target volume, set on return.
790 void AudioMixer::setParameter(int name, int target, int param, void *value) argument
799 switch (target) {
889 target == RAMP_VOLUME ? mState.frameCount : 0,
893 target == VOLUME ? "VOLUME" : "RAMP_VOLUME", track.auxLevel);
900 target == RAMP_VOLUME ? mState.frameCount : 0,
906 target == VOLUME ? "VOLUME" : "RAMP_VOLUME", param - VOLUME0,
917 LOG_ALWAYS_FATAL("setParameter: bad target
[all...]
H A DTracks.cpp338 const LinearTransform& xform, int target) {
346 xform, static_cast<TimedAudioTrack::TargetTimeline>(target));
1355 const LinearTransform& xform, TimedAudioTrack::TargetTimeline target) {
1359 target);
1361 if (!(target == TimedAudioTrack::LOCAL_TIME ||
1362 target == TimedAudioTrack::COMMON_TIME)) {
1368 mMediaTimeTransformTarget = target;
337 setMediaTimeTransform( const LinearTransform& xform, int target) argument
1354 setMediaTimeTransform( const LinearTransform& xform, TimedAudioTrack::TargetTimeline target) argument
/frameworks/av/services/audiopolicy/
H A DAudioPolicyManager.cpp3326 String8 target; local
3327 if (param.get(String8("target"), target) != NO_ERROR) {
3328 target = "Manager";
3358 if (target == "Manager") {
3377 if (target == "Manager") {
3390 if (target == "Manager") {
/frameworks/base/cmds/idmap/
H A Dscan.cpp94 String16 target; local
102 target = String16(p, len);
114 if (target == String16(target_package_name)) {
229 ALOGE("error: failed to create idmap for target=%s overlay=%s idmap=%s\n",
/frameworks/base/core/java/android/animation/
H A DAnimator.java388 * ObjectAnimator object will use the information it has about its target object
391 * information (such as a target object) to gather these values.
400 * ObjectAnimator object will use the information it has about its target object
403 * information (such as a target object) to gather these values.
409 * Sets the target object whose property will be animated by this animation. Not all subclasses
410 * operate on target objects (for example, {@link ValueAnimator}, but this method
414 * @param target The object being animated
416 public void setTarget(Object target) { argument
H A DAnimatorSet.java225 * Sets the target object for all current {@link #getChildAnimations() child animations}
229 * @param target The object being animated
232 public void setTarget(Object target) { argument
236 ((AnimatorSet)animation).setTarget(target);
238 ((ObjectAnimator)animation).setTarget(target);
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...]
H A DPropertyValuesHolder.java408 * <code>TypeConverter</code> to convert from <code>PointF</code> to the target
481 * <code>TypeConverter</code> to convert from <code>PointF</code> to the target
661 * target object.
715 " not found on target class " + targetClass);
779 * object, it will be derived automatically given the property name, target object, and
783 * on the target object.
784 * @param target The object on which the setter (and possibly getter) exist.
786 void setupSetterAndGetter(Object target) { argument
789 // check to make sure that mProperty is on the class of target
798 testValue = convertBack(mProperty.get(target));
862 setupValue(Object target, Keyframe kf) argument
893 setupStartValue(Object target) argument
908 setupEndValue(Object target) argument
937 setAnimatedValue(Object target) argument
1150 setAnimatedValue(Object target) argument
1288 setAnimatedValue(Object target) argument
1385 setAnimatedValue(Object target) argument
1415 setupSetterAndGetter(Object target) argument
1492 setAnimatedValue(Object target) argument
1522 setupSetterAndGetter(Object target) argument
1611 nCallIntMethod(Object target, long methodID, int arg) argument
1612 nCallFloatMethod(Object target, long methodID, float arg) argument
1613 nCallTwoIntMethod(Object target, long methodID, int arg1, int arg2) argument
1614 nCallFourIntMethod(Object target, long methodID, int arg1, int arg2, int arg3, int arg4) argument
1616 nCallMultipleIntMethod(Object target, long methodID, int[] args) argument
1617 nCallTwoFloatMethod(Object target, long methodID, float arg1, float arg2) argument
1619 nCallFourFloatMethod(Object target, long methodID, float arg1, float arg2, float arg3, float arg4) argument
1621 nCallMultipleFloatMethod(Object target, long methodID, float[] args) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java2041 Intent target = Intent.CREATOR.createFromParcel(data);
2047 boolean res = navigateUpTo(token, target, resultCode, resultData);
3663 public void finishInstrumentation(IApplicationThread target, argument
3668 data.writeStrongBinder(target != null ? target.asBinder() : null);
4997 public boolean navigateUpTo(IBinder token, Intent target, int resultCode, Intent resultData) argument
5003 target.writeToParcel(data, 0);
H A DBackStackRecord.java1003 // Adding a non-existent target view makes sure that the transitions don't target
1004 // any views by default. They'll only target the views we tell add. If we don't
1103 * Prepares the enter transition by adding a non-existent view to the transition's target list
1104 * and setting it epicenter callback. By adding a non-existent view to the target list,
1393 * This method removes the views from transitions that target ONLY those views.
1419 * doesn't already have a target. It is best for views to contain one View object
1436 // We can just add the target views
1658 String source, String target) {
1659 if (source != null && target !
1657 setNameOverride(ArrayMap<String, String> overrides, String source, String target) argument
[all...]
H A DIActivityManager.java190 public void finishInstrumentation(IApplicationThread target, argument
403 public boolean navigateUpTo(IBinder token, Intent target, int resultCode, Intent resultData) argument
H A DInstrumentation.java233 * See {@link #getTargetContext} to retrieve a Context for the target
254 * Return a Context for the target application being instrumented. Note
260 * @return A Context in the target application.
1454 * @param target Which activity is performing the start (and thus receiving
1475 Context who, IBinder contextThread, IBinder token, Activity target,
1499 token, target != null ? target.mEmbeddedID : null,
1516 IBinder token, Activity target, Intent[] intents, Bundle options) {
1517 execStartActivitiesAsUser(who, contextThread, token, target, intents, options,
1530 IBinder token, Activity target, Inten
1474 execStartActivity( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options) argument
1515 execStartActivities(Context who, IBinder contextThread, IBinder token, Activity target, Intent[] intents, Bundle options) argument
1529 execStartActivitiesAsUser(Context who, IBinder contextThread, IBinder token, Activity target, Intent[] intents, Bundle options, int userId) argument
1591 execStartActivity( Context who, IBinder contextThread, IBinder token, Fragment target, Intent intent, int requestCode, Bundle options) argument
1651 execStartActivity( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options, UserHandle user) argument
1688 execStartActivityAsCaller( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options, int userId) argument
1866 SyncRunnable(Runnable target) argument
[all...]
H A DPendingIntent.java40 * A description of an Intent and target action to perform with it. Instances
291 IIntentSender target =
297 return target != null ? new PendingIntent(target) : null;
316 IIntentSender target =
322 return target != null ? new PendingIntent(target) : null;
433 IIntentSender target =
438 return target != null ? new PendingIntent(target)
989 PendingIntent(IIntentSender target) argument
993 PendingIntent(IBinder target) argument
[all...]
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java2649 * Called by a profile or device owner to set the application restrictions for a given target
2655 * <p>The application restrictions are only made visible to the target application and the
2659 * the admin can notify the target application of that by adding
2694 * @param target Component name of the agent to be enabled.
2703 public void setTrustAgentConfiguration(ComponentName admin, ComponentName target, argument
2707 mService.setTrustAgentConfiguration(admin, target, configuration,
3088 * Called by a profile or device owner to get the application restrictions for a given target
/frameworks/base/core/java/android/content/
H A DDefaultDataHandler.java235 public void processingInstruction(String target, String data) argument
H A DIntent.java865 * target intent, also optionally supplying a title. If the target
872 * @param target The Intent that the user will be selecting an activity
879 public static Intent createChooser(Intent target, CharSequence title) { argument
880 return createChooser(target, title, null);
887 * target intent, also optionally supplying a title. If the target
896 * to remember the last chosen target and surface it as a more prominent or one-touch
899 * @param target The Intent that the user will be selecting an activity
907 public static Intent createChooser(Intent target, CharSequenc argument
[all...]
H A DIntentSender.java35 * A description of an Intent and target action to perform with it.
142 * @param code Result code to supply back to the IntentSender's target.
168 * @param code Result code to supply back to the IntentSender's target.
322 IBinder target = in.readStrongBinder();
323 return target != null ? new IntentSender(target) : null;
366 public IntentSender(IIntentSender target) { argument
367 mTarget = target;
371 public IntentSender(IBinder target) { argument
372 mTarget = IIntentSender.Stub.asInterface(target);
[all...]
/frameworks/base/core/java/android/hardware/
H A DLegacySensorManager.java211 LegacyListener(SensorListener target) { argument
212 mTarget = target;
/frameworks/base/core/java/android/hardware/camera2/dispatch/
H A DArgumentReplacingDispatcher.java44 * Create a new argument replacing dispatcher; dispatches are forwarded to {@code target}
54 * @param target destination dispatch type, methods will be redirected to this dispatcher
58 public ArgumentReplacingDispatcher(Dispatchable<T> target, int argumentIndex, argument
60 mTarget = checkNotNull(target, "target must not be null");

Completed in 766 milliseconds

12345678910