Searched refs:value (Results 201 - 225 of 1696) sorted by path

1234567891011>>

/frameworks/base/cmds/idmap/
H A Dinspect.cpp127 void print(const char *section, const char *subsection, uint32_t value, const char *fmt, ...) { argument
131 printf("%-12s %-12s 0x%08x ", section, subsection, value);
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java1075 boolean value;
1077 value = true;
1079 value = false;
1081 System.err.println("Error: valid value not specified");
1085 mUm.setUserRestriction(restriction, value, userId);
/frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
H A DRequestSync.java119 final String value = nextArgRequired();
120 mExtras.putString(key, value);
126 final String value = nextArgRequired();
127 mExtras.putInt(key, Integer.valueOf(value));
130 final String value = nextArgRequired();
131 mExtras.putLong(key, Long.valueOf(value));
134 final String value = nextArgRequired();
135 mExtras.putFloat(key, Long.valueOf(value));
138 final String value = nextArgRequired();
139 mExtras.putFloat(key, Long.valueOf(value));
[all...]
/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java254 final String table, final String key, final String value) {
266 arg.putString(Settings.NameValueTable.VALUE, value);
297 System.err.println(" settings [--user <USER_ID> | current] put namespace key value");
253 putForUser(IContentProvider provider, int userHandle, final String table, final String key, final String value) argument
/frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
H A DRunTestCommand.java96 // -e <key> <value>
97 // key-value pairs
109 String value = args[++i];
111 addTestClasses(value);
113 mDebug = "true".equals(value) || "1".equals(value);
115 mRunnerClassName = value;
117 mParams.putString(key, value);
248 + " -e <NAME> <VALUE>: other name-value pairs to be passed to test classes.\n"
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java181 * Bundle key used for the auth token value in results
559 * @param value true is permission is being granted, false for revoked
562 public void updateAppPermission(Account account, String authTokenType, int uid, boolean value) { argument
564 mService.updateAppPermission(account, authTokenType, uid, value);
1134 * @param value String value to set, {@code null} to clear this user data key
1136 public void setUserData(final Account account, final String key, final String value) { argument
1140 mService.setUserData(account, key, value);
1229 * <p>Some authenticators have auth token <em>types</em>, whose value
1270 * If the account is no longer present on the device, the return value i
[all...]
H A DIAccountAuthenticatorResponse.aidl25 void onResult(in Bundle value);
H A DIAccountManager.aidl54 void setUserData(in Account account, String key, String value);
55 void updateAppPermission(in Account account, String authTokenType, int uid, boolean value);
H A DIAccountManagerResponse.aidl25 void onResult(in Bundle value);
/frameworks/base/core/java/android/animation/
H A DAnimator.java32 * The value used to indicate infinite duration (e.g. when Animators repeat infinitely).
66 * value(s) set immediately, followed by calls to
92 * Ends the animation. This causes the animation to assign the end value of the property being
213 * default value is {@link android.view.animation.AccelerateDecelerateInterpolator}.
215 * @param value the interpolator to be used by this animation
217 public abstract void setInterpolator(TimeInterpolator value); argument
250 // Default method returns value for isRunning(). Subclasses should override to return a
251 // real value.
342 * value was provided through setChangingConfigurations(int) or 0 by default.
368 * Sets the changing configurations value t
[all...]
H A DAnimatorInflater.java68 * Enum values used in XML attributes to indicate the value for mValueType
325 // Integer and float value types are handled here.
492 * @param getFloats True if the value type is float.
560 * @param getFloats True if the value type is float.
767 // When no value type is provided in keyframe, we need to infer the type from the value. i.e.
768 // if value is defined in the style of a color value, then the color type is returned.
781 // When no value type is provided, check whether it's a color type first.
782 // If not, fall back to default value typ
[all...]
H A DBidirectionalTypeConverter.java20 * is necessary when the value types of in animation are different from the property
21 * type. BidirectionalTypeConverter is needed when only the final value for the
36 * @param value The Object to convert.
37 * @return A value of type T, converted from <code>value</code>.
39 public abstract T convertBack(V value); argument
64 public From convertBack(To value) { argument
65 return mConverter.convert(value);
69 public To convert(From value) { argument
70 return mConverter.convertBack(value);
[all...]
H A DKeyframe.java20 * This class holds a time/value pair for an animation. The Keyframe class is used
22 * of the animation. As the time proceeds from one keyframe to the other, the value of the
23 * target object will animate between the value at the previous keyframe and the value at the
28 * a subclass of Keyframe specific to the type of value being stored. This is done to improve
38 * Flag to indicate whether this keyframe has a valid value. This flag is used when an
45 * Flag to indicate whether the value in the keyframe was read from the target object or not.
46 * If so, its value will be recalculated if target changes.
57 * The type of the value in this Keyframe. This type is determined at construction time,
58 * based on the type of the <code>value</cod
82 ofInt(float fraction, int value) argument
114 ofFloat(float fraction, float value) argument
146 ofObject(float fraction, Object value) argument
203 setValue(Object value) argument
269 ObjectKeyframe(float fraction, Object value) argument
280 setValue(Object value) argument
304 IntKeyframe(float fraction, int value) argument
324 setValue(Object value) argument
351 FloatKeyframe(float fraction, float value) argument
371 setValue(Object value) argument
[all...]
H A DPropertyValuesHolder.java76 * The set of keyframes (time/value pairs) that define this animation.
107 // Used to pass single value to varargs parameter in setter invocation
119 * The value most recently calculated by calculateValue(). This is set during
174 * a start and end value. If more values are supplied, the values will be animated from the
175 * start, through all intermediate values to the end value. When used with ObjectAnimator,
225 * set of Object values for use with ObjectAnimator multi-value setters. The Object
230 * @param converter Used to convert the animated value to setter parameters.
233 * value.
249 * {@link android.animation.TypeEvaluator} can be used to to evaluate the animated value. The
252 * <p>At least two values must be supplied, a start and an end value
866 convertBack(Object value) argument
1641 convert(PointF value) argument
1659 convert(PointF value) argument
[all...]
H A DTypeConverter.java21 * is necessary when the value types of in animation are different
51 * Converts a value from one type to another.
52 * @param value The Object to convert.
53 * @return A value of type V, converted from <code>value</code>.
55 public abstract V convert(T value); argument
H A DValueAnimator.java55 * value. Alternatively, you can leave the fractions off and the keyframes will be equally
64 * <a href="{@docRoot}guide/topics/graphics/prop-animation.html#value-animator">Property
110 * to a value.
226 * The property/value sets being animated.
247 * or a positive value, the animation restarts from the beginning.
252 * or a positive value, the animation reverses direction on every iteration.
256 * This value used used with the {@link #setRepeatCount(int)} property to repeat
285 * value implies that that value is the one being animated to. However, this is not typically
287 * starting value fo
816 setRepeatCount(int value) argument
836 setRepeatMode(@epeatMode int value) argument
902 setInterpolator(TimeInterpolator value) argument
936 setEvaluator(TypeEvaluator value) argument
[all...]
/frameworks/base/core/java/android/annotation/
H A DIntDef.java26 * a logical type and that its value should be one of the explicitly
46 * value = {NAVIGATION_MODE_STANDARD, NAVIGATION_MODE_LIST, NAVIGATION_MODE_TABS})
55 long[] value() default {};
H A DRequiresPermission.java59 * a permission which depends on the value of the parameter. For example, consider
90 String value() default "";
95 * If specified, {@link #anyOf()} and {@link #value()} must both be null.
102 * If specified, {@link #allOf()} and {@link #value()} must both be null.
116 * a permission which depends on the value of the parameter (and typically
122 RequiresPermission value() default @RequiresPermission;
129 * a permission which depends on the value of the parameter (and typically
135 RequiresPermission value() default @RequiresPermission;
H A DSdkConstant.java25 * Indicates a constant field value should be exported to be used in the SDK tools.
35 SdkConstantType value(); method in interface:SdkConstant
H A DSize.java30 * return value of type array or collection.
45 long value() default -1;
H A DStringDef.java26 * type and that its value should be one of the explicitly named constants.
50 String[] value() default {};
H A DSuppressLint.java37 String[] value(); method in interface:SuppressLint
H A DTargetApi.java34 int value(); method in interface:TargetApi
/frameworks/base/core/java/android/app/
H A DActionBar.java141 value = {
748 * @param index Index value in the range 0-get
1004 * @param elevation Elevation value in pixels
1019 * @return Elevation value in pixels
1456 * touchscreenBlocksFocus value.
H A DDownloadManager.java91 * Internet Media Type of the downloaded file. If no value is provided upon creation, this will
107 * will be used here. Otherwise, the value will initially be null and will be filled in with a
132 * Provides more detail on the status of the download. Its meaning depends on the value of
143 * column's value is undefined.
393 /** if a file is designated as a MediaScanner scannable file, the following value is
397 // value of 1 is stored in the above column by DownloadProvider after it is scanned by
400 * the following value is stored in the database column
581 * @param value header value
586 public Request addRequestHeader(String header, String value) { argument
810 putIfNonNull(ContentValues contentValues, String key, Object value) argument
866 setOnlyIncludeVisibleInDownloadsUi(boolean value) argument
963 statusClause(String operator, int value) argument
[all...]

Completed in 228 milliseconds

1234567891011>>