Searched refs:value (Results 26 - 50 of 1696) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_vlc.h52 u32 h264bsdDecodeExpGolombUnsigned(strmData_t *pStrmData, u32 *value);
54 u32 h264bsdDecodeExpGolombSigned(strmData_t *pStrmData, i32 *value);
56 u32 h264bsdDecodeExpGolombMapped(strmData_t *pStrmData, u32 *value,
59 u32 h264bsdDecodeExpGolombTruncated(strmData_t *pStrmData, u32 *value,
/frameworks/base/core/java/android/webkit/
H A DValueCallback.java24 * Invoked when the value is available.
25 * @param value The value.
27 public void onReceiveValue(T value); argument
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
H A DCustomNamespaceAdapter.java23 public static void setOne(TextView view, String value) { argument
24 view.setText(value);
28 public static void setTwo(TextView view, String value) { argument
29 view.setText(value);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DFontSize.java32 FontSize(int value) { argument
33 mValue = value;
38 * @param value Integer value to be converted to a FontSize object.
39 * @return FontSize object whose value is {@code value}. If no
40 * FontSize object has that value, null is returned.
42 public static FontSize fromInt(int value) { argument
44 if (e.mValue == value) {
H A DTextAlignment.java34 TextAlignment(int value) { argument
35 mValue = value;
40 * @param value Integer value to be converted to a TextAlignment object.
41 * @return TextAlignment object whose value is {@code value}. If no
42 * TextAlignment object has that value, null is returned.
44 public static TextAlignment fromInt(int value) { argument
46 if (e.mValue == value) {
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameValues.java26 * This returns 1, if the Frame value is null, or if the value is not an array.
31 Object value = super.getValue();
32 if (value == null || !value.getClass().isArray()) {
49 Object value = super.getValue();
50 if (value == null || value.getClass().isArray()) {
54 Object[] array = (Object[])Array.newInstance(value.getClass(), 1);
55 array[0] = value;
118 setValueAtIndex(Object value, int index) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/os/
H A DSystemProperties_Delegate.java44 String value = properties.get(key);
45 if (value != null) {
46 return value;
54 String value = properties.get(key);
55 if (value != null) {
56 return Integer.decode(value);
65 String value = properties.get(key);
66 if (value != null) {
67 return Long.decode(value);
80 String value
[all...]
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DRetrieveConf.java59 * Get CC value.
61 * @return the value
68 * Add a "CC" value.
70 * @param value the value
71 * @throws NullPointerException if the value is null.
73 public void addCc(EncodedStringValue value) { argument
74 mPduHeaders.appendEncodedStringValue(value, PduHeaders.CC);
78 * Get Content-type value.
80 * @return the value
92 setContentType(byte[] value) argument
111 setDeliveryReport(int value) argument
132 setFrom(EncodedStringValue value) argument
153 setMessageClass(byte[] value) argument
172 setMessageId(byte[] value) argument
191 setReadReport(int value) argument
210 setRetrieveStatus(int value) argument
229 setRetrieveText(EncodedStringValue value) argument
248 setTransactionId(byte[] value) argument
[all...]
H A DNotificationInd.java52 * @return the value
61 * @param value the value
62 * @throws InvalidHeaderValueException if the value is invalid.
65 public void setContentClass(int value) throws InvalidHeaderValueException { argument
66 mPduHeaders.setOctet(value, PduHeaders.CONTENT_CLASS);
70 * Get X-Mms-Content-Location value.
72 * Content-location-value = Uri-value
74 * @return the value
87 setContentLocation(byte[] value) argument
109 setExpiry(long value) argument
131 setFrom(EncodedStringValue value) argument
153 setMessageClass(byte[] value) argument
173 setMessageSize(long value) argument
193 setSubject(EncodedStringValue value) argument
213 setTransactionId(byte[] value) argument
233 setDeliveryReport(int value) argument
[all...]
H A DSendReq.java53 * @param contentType the content type value
54 * @param from the from value
56 * @param transactionId the transaction-id value
92 * Get Bcc value.
94 * @return the value
101 * Add a "BCC" value.
103 * @param value the value
104 * @throws NullPointerException if the value is null.
106 public void addBcc(EncodedStringValue value) { argument
116 setBcc(EncodedStringValue[] value) argument
135 addCc(EncodedStringValue value) argument
145 setCc(EncodedStringValue[] value) argument
164 setContentType(byte[] value) argument
183 setDeliveryReport(int value) argument
204 setExpiry(long value) argument
224 setMessageSize(long value) argument
245 setMessageClass(byte[] value) argument
264 setReadReport(int value) argument
274 setTo(EncodedStringValue[] value) argument
293 setTransactionId(byte[] value) argument
[all...]
H A DDeliveryInd.java49 * Get Date value.
51 * @return the value
58 * Set Date value.
60 * @param value the value
62 public void setDate(long value) { argument
63 mPduHeaders.setLongInteger(value, PduHeaders.DATE);
67 * Get Message-ID value.
69 * @return the value
76 * Set Message-ID value
81 setMessageId(byte[] value) argument
100 setStatus(int value) argument
119 setTo(EncodedStringValue[] value) argument
[all...]
/frameworks/base/core/java/android/content/
H A DContentValues.java90 * Adds a value to the set.
92 * @param key the name of the value to put
93 * @param value the data for the value to put
95 public void put(String key, String value) { argument
96 mValues.put(key, value);
109 * Adds a value to the set.
111 * @param key the name of the value to put
112 * @param value the data for the value t
114 put(String key, Byte value) argument
124 put(String key, Short value) argument
134 put(String key, Integer value) argument
144 put(String key, Long value) argument
154 put(String key, Float value) argument
164 put(String key, Double value) argument
174 put(String key, Boolean value) argument
184 put(String key, byte[] value) argument
490 putStringArrayList(String key, ArrayList<String> value) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/util/
H A DLongSparseLongArrayTest.java35 final long value = 1 << i;
36 array.put(value, value);
39 final long value = 1 << i;
40 assertEquals(value, array.get(value, -1));
41 assertEquals(-1, array.get(-value, -1));
48 final long value = 1 << i;
49 array.put(value, value);
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java202 // Read a value of the appropriate type, and insert into the map.
203 final Object value = parseValue(st, type);
208 if (value.getClass() != oldValue.getClass()) {
213 map.put(propertyName, value);
229 * @return a Boolean, Number subclass, or String representing the value.
257 long value;
259 value = Long.decode(st.sval);
264 // Ensure that the type can hold this value, and return.
268 if (value < Byte.MIN_VALUE || value > Byt
419 TypeException(String property, Object value, String requestedType) argument
[all...]
H A DPreconditions.java158 * Ensures that that the argument numeric value is non-negative.
160 * @param value a numeric int value
162 * @return the validated numeric value
163 * @throws IllegalArgumentException if {@code value} was negative
165 public static @IntRange(from = 0) int checkArgumentNonnegative(final int value, argument
167 if (value < 0) {
171 return value;
175 * Ensures that that the argument numeric value is non-negative.
177 * @param value
182 checkArgumentNonnegative(final int value) argument
197 checkArgumentNonnegative(final long value) argument
213 checkArgumentNonnegative(final long value, final String errorMessage) argument
229 checkArgumentPositive(final int value, final String errorMessage) argument
250 checkArgumentFinite(final float value, final String valueName) argument
275 checkArgumentInRange(float value, float lower, float upper, String valueName) argument
304 checkArgumentInRange(int value, int lower, int upper, String valueName) argument
331 checkArgumentInRange(long value, long lower, long upper, String valueName) argument
356 checkArrayElementsNotNull(final T[] value, final String valueName) argument
382 checkCollectionElementsNotNull( final C value, final String valueName) argument
411 checkCollectionNotEmpty(final Collection<T> value, final String valueName) argument
438 checkArrayElementsInRange(float[] value, float lower, float upper, String valueName) argument
[all...]
/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterIntArgument.java25 public final int value; field in class:KeymasterIntArgument
27 public KeymasterIntArgument(int tag, int value) { argument
38 this.value = value;
43 value = in.readInt();
48 out.writeInt(value);
/frameworks/base/core/java/android/util/
H A DContainerHelpers.java22 static int binarySearch(int[] array, int size, int value) { argument
30 if (midVal < value) {
32 } else if (midVal > value) {
35 return mid; // value found
38 return ~lo; // value not present
41 static int binarySearch(long[] array, int size, long value) { argument
49 if (midVal < value) {
51 } else if (midVal > value) {
54 return mid; // value found
57 return ~lo; // value no
[all...]
H A DFloatProperty.java37 public abstract void setValue(T object, float value); argument
40 final public void set(T object, Float value) { argument
41 setValue(object, value);
H A DIntProperty.java37 public abstract void setValue(T object, int value); argument
40 final public void set(T object, Integer value) { argument
41 setValue(object, value.intValue());
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
H A DPreconditions.java23 public static void check(boolean value, String error, Object... args) { argument
24 if (!value) {
29 public static void checkNotNull(Object value, String error, Object... args) { argument
30 if (value == null) {
35 public static void checkNull(Object value, String error, Object... args) { argument
36 if (value != null) {
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DContentValuesBuilder.java31 public ContentValuesBuilder put(String key, String value) { argument
32 mContentValues.put(key, value);
37 public ContentValuesBuilder put(String key, Byte value) {
38 mContentValues.put(key, value);
42 public ContentValuesBuilder put(String key, Short value) {
43 mContentValues.put(key, value);
47 public ContentValuesBuilder put(String key, Integer value) { argument
48 mContentValues.put(key, value);
53 public ContentValuesBuilder put(String key, Long value) {
54 mContentValues.put(key, value);
73 put(String key, byte[] value) argument
[all...]
/frameworks/rs/api/
H A Drs_object_types.spec90 value: RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X = 0
91 value: RS_ALLOCATION_CUBEMAP_FACE_NEGATIVE_X = 1
92 value: RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_Y = 2
93 value: RS_ALLOCATION_CUBEMAP_FACE_NEGATIVE_Y = 3
94 value: RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_Z = 4
95 value: RS_ALLOCATION_CUBEMAP_FACE_NEGATIVE_Z = 5
104 value: RS_ALLOCATION_USAGE_SCRIPT = 0x0001, "Allocation is bound to and accessed by scripts."
105 value: RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE = 0x0002, "Allocation is used as a texture source."
106 value: RS_ALLOCATION_USAGE_GRAPHICS_VERTEX = 0x0004, "Deprecated."
107 value
[all...]
/frameworks/base/tools/aapt2/
H A DValueVisitor.h26 * Visits a value and invokes the appropriate method based on its type. Does not traverse
32 virtual void visitItem(Item* value) {} argument
33 virtual void visit(Reference* value) { visitItem(value); } argument
34 virtual void visit(RawString* value) { visitItem(value); } argument
35 virtual void visit(String* value) { visitItem(value); } argument
36 virtual void visit(StyledString* value) { visitItem(value); } argument
37 visit(FileReference* value) argument
38 visit(Id* value) argument
39 visit(BinaryPrimitive* value) argument
41 visit(Attribute* value) argument
42 visit(Style* value) argument
43 visit(Array* value) argument
44 visit(Plural* value) argument
45 visit(Styleable* value) argument
111 T* value = nullptr; member in struct:aapt::DynCastVisitor
123 Item* value = nullptr; member in struct:aapt::DynCastVisitor
135 valueCast(Value* value) argument
[all...]
/frameworks/base/libs/hwui/
H A DCanvasProperty.h31 CanvasPropertyPrimitive(float initialValue) : value(initialValue) {}
33 float value; member in class:android::uirenderer::CanvasPropertyPrimitive
39 CanvasPropertyPaint(const SkPaint& initialValue) : value(initialValue) {}
41 SkPaint value; member in class:android::uirenderer::CanvasPropertyPaint
/frameworks/base/telephony/java/com/android/ims/
H A DImsConfigListener.aidl25 * Notifies client the value of the get operation result on the feature config item.
30 * @param value. as defined in com.android.ims.ImsConfig#FeatureValueConstants.
34 void onGetFeatureResponse(int feature, int network, int value, int status);
37 * Notifies client the set value operation result for feature config item.
45 * @param value. as defined in com.android.ims.ImsConfig#FeatureValueConstants.
50 void onSetFeatureResponse(int feature, int network, int value, int status);
53 * Notifies client the value of the get operation result on the video quality item.
64 * Notifies client the set value operation result for video quality item.

Completed in 1375 milliseconds

1234567891011>>