Searched defs:value (Results 201 - 225 of 1454) sorted by relevance

1234567891011>>

/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DAcknowledgeInd.java30 * @param transactionId the transaction-id value
53 * Get X-Mms-Report-Allowed field value.
55 * @return the X-Mms-Report-Allowed value
62 * Set X-Mms-Report-Allowed field value.
64 * @param value the value
65 * @throws InvalidHeaderValueException if the value is invalid.
67 public void setReportAllowed(int value) throws InvalidHeaderValueException { argument
68 mPduHeaders.setOctet(value, PduHeaders.REPORT_ALLOWED);
72 * Get X-Mms-Transaction-Id field value
86 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...]
H A DGenericPdu.java54 * Get X-Mms-Message-Type field value.
56 * @return the X-Mms-Report-Allowed value
63 * Set X-Mms-Message-Type field value.
65 * @param value the value
66 * @throws InvalidHeaderValueException if the value is invalid.
67 * RuntimeException if field's value is not Octet.
69 public void setMessageType(int value) throws InvalidHeaderValueException { argument
70 mPduHeaders.setOctet(value, PduHeaders.MESSAGE_TYPE);
74 * Get X-Mms-MMS-Version field value
89 setMmsVersion(int value) argument
110 setFrom(EncodedStringValue value) argument
[all...]
H A DSendConf.java46 * Get Message-ID value.
48 * @return the value
55 * Set Message-ID value.
57 * @param value the value
58 * @throws NullPointerException if the value is null.
60 public void setMessageId(byte[] value) { argument
61 mPduHeaders.setTextString(value, PduHeaders.MESSAGE_ID);
67 * @return the value
76 * @param value th
79 setResponseStatus(int value) argument
98 setTransactionId(byte[] value) argument
[all...]
/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/tests/java_api/Refocus/src/com/android/rs/test/
H A DDepthTransform.java12 * @return The near depth value
17 * @return The far depth value
27 * @return the quantized value that corresponds to the given depth value
32 * @return the depth value that corresponds to the given quantized value
34 public float reconstruct(int value); argument
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/image/
H A DRangeInverseDepthTransform.java38 public int quantize(float value) { argument
40 (int) ((far - near * far / value) / (far - near) * 255f)));
44 public float reconstruct(int value) { argument
46 Math.max(0, Math.min(255, value)) / 255f);
H A DRangeLinearDepthTransform.java39 public int quantize(float value) { argument
41 (int) ((value - near) / (far - near) * 255f)));
45 public float reconstruct(int value) { argument
46 return near + (far - near) * Math.max(0, Math.min(255, value)) / 255f;
/frameworks/support/annotations/src/main/java/androidx/annotation/
H A DRestrictTo.java56 Scope[] value(); method in interface:RestrictTo
/frameworks/support/collection/src/test/java/androidx/collection/
H A DArrayMapCompatTest.java37 map.put("key 1", "value 1");
38 map.put("key 2", "value 2");
40 entryOf("key 1", "value 1"),
41 entryOf("key 2", "value 2")
63 private static <K, V> Map.Entry<K, V> entryOf(K key, V value) { argument
64 return new AbstractMap.SimpleEntry<>(key, value);
74 map.put("key 1", "value 1");
75 map.put("key 2", "value 2");
100 map.put("key 1", "value 1");
101 map.put("key 2", "value
[all...]
/frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
H A DFloatPropertyCompat.java24 * <p>FloatPropertyCompat is an abstraction that can be used to represent a mutable float value that
25 * is held in a host object. To access this float value, {@link #setValue(Object, float)} and getter
48 * {@link FloatPropertyCompat} instance will access and modify the property value of
65 public void setValue(T object, float value) {
66 property.setValue(object, value);
72 * Returns the current value that this property represents on the given <code>object</code>.
75 * @return the current property value of the given object
80 * Sets the value on <code>object</code> which this property represents.
83 * @param value new value o
85 setValue(T object, float value) argument
[all...]
/frameworks/support/persistence/db/src/main/java/androidx/sqlite/db/
H A DSupportSQLiteProgram.java28 * Bind a NULL value to this statement. The value remains bound until
36 * Bind a long value to this statement. The value remains bound until
40 * @param value The value to bind
42 void bindLong(int index, long value); argument
45 * Bind a double value to this statement. The value remains bound until
49 * @param value Th
51 bindDouble(int index, double value) argument
60 bindString(int index, String value) argument
69 bindBlob(int index, byte[] value) argument
[all...]
/frameworks/support/persistence/db-framework/src/main/java/androidx/sqlite/db/framework/
H A DFrameworkSQLiteProgram.java39 public void bindLong(int index, long value) { argument
40 mDelegate.bindLong(index, value);
44 public void bindDouble(int index, double value) { argument
45 mDelegate.bindDouble(index, value);
49 public void bindString(int index, String value) { argument
50 mDelegate.bindString(index, value);
54 public void bindBlob(int index, byte[] value) { argument
55 mDelegate.bindBlob(index, value);
/frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/testing/
H A DTestSelectionPredicate.java35 public void setReturnValue(boolean value) { argument
36 mValue = value;
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DDrawableUtils.java186 public static PorterDuff.Mode parseTintMode(int value, PorterDuff.Mode defaultMode) { argument
187 switch (value) {
/frameworks/av/camera/
H A DCameraParameters2.cpp75 // Find the value.
92 void CameraParameters2::set(const char *key, const char *value) argument
100 if (strchr(value, '=') || strchr(value, ';')) {
101 //XXX ALOGE("Value \"%s\"contains invalid character (= or ;)", value);
105 // Replacing a value updates the key's order to be the new largest order
106 ssize_t res = mMap.replaceValueFor(String8(key), String8(value));
107 LOG_ALWAYS_FATAL_IF(res < 0, "replaceValueFor(%s,%s) failed", key, value);
110 void CameraParameters2::set(const char *key, int value)
113 sprintf(str, "%d", value);
[all...]
/frameworks/av/drm/common/
H A DDrmConstraints.cpp32 status_t DrmConstraints::put(const String8* key, const char* value) { argument
33 int length = strlen(value);
36 strncpy(charValue, value, length);
109 String8 value = String8(mDrmConstraints->mConstraintMap.editValueAt(mIndex)); local
111 return value;
H A DDrmInfoRequest.cpp41 status_t DrmInfoRequest::put(const String8& key, const String8& value) { argument
42 mRequestInformationMap.add(key, value);
102 String8& value = mDrmInfoRequest->mRequestInformationMap.editValueAt(mIndex); local
104 return value;
H A DDrmMetadata.cpp26 const char* value) {
27 if((value != NULL) && (key != NULL)) {
28 int length = strlen(value);
31 memcpy(charValue, value, length);
114 String8 value = String8(mDrmMetadata->mMetadataMap.editValueAt(mIndex)); local
116 return value;
25 put(const String8* key, const char* value) argument
/frameworks/av/include/drm/
H A DDrmMetadata.h83 const char* value = this->getAsByteArray(&key); local
84 if (NULL != value) {
85 delete[] value;
86 value = NULL;
94 status_t put(const String8* key, const char* value);
/frameworks/av/media/libaaudio/src/binding/
H A DAAudioBinderClient.h111 void onStreamChange(aaudio_handle_t handle, int32_t opcode, int32_t value) { argument
134 void onStreamChange(aaudio_handle_t handle, int32_t opcode, int32_t value) { argument
137 client->onStreamChange(handle, opcode, value);
/frameworks/av/media/libaudioprocessing/
H A DAudioResamplerFirOps.h49 static const bool value = false; member in struct:android::is_same
55 static const bool value = true; member in struct:android::is_same
/frameworks/av/services/audioflinger/
H A DFastMixerState.cpp74 char value[PROPERTY_VALUE_MAX]; local
75 if (property_get("ro.audio.max_fast_tracks", value, NULL) > 0) {
77 unsigned long ul = strtoul(value, &endptr, 0);
/frameworks/base/core/java/android/hardware/camera2/marshal/
H A DMarshaler.java69 * Marshal the specified object instance (value) into a byte buffer.
72 * the {@link #calculateMarshalSize marshal size} of {@code value}.</p>
74 * @param value the value of type T that we wish to write into the byte buffer
77 public abstract void marshal(T value, ByteBuffer buffer); argument
80 * Get the size in bytes for how much space would be required to write this {@code value}
84 * then this method will always return the same value (and particularly, it will return
85 * an equivalent value to {@link #getNativeSize()}.</p>
89 * @param value the value o
92 calculateMarshalSize(T value) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
H A DMarshalQueryableBlackLevelPattern.java41 public void marshal(BlackLevelPattern value, ByteBuffer buffer) { argument
44 buffer.putInt(value.getOffsetForIndex(j, i));

Completed in 765 milliseconds

1234567891011>>