Searched refs:value (Results 101 - 125 of 1186) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/src/com/android/multidexlegacytestapp/
H A DAnnotationWithClass.java25 Class<?> value(); method in interface:AnnotationWithClass
H A DAnnotationWithEnum.java25 ReferencedByAnnotation value(); method in interface:AnnotationWithEnum
H A DAnnotationWithEnum2.java25 ReferencedByAnnotationWithOtherReferences value(); method in interface:AnnotationWithEnum2
/frameworks/base/location/lib/java/com/android/location/provider/
H A DGmsFusedBatchOptions.java30 public void setMaxPowerAllocationInMW(double value) { argument
31 mOptions.setMaxPowerAllocationInMW(value);
38 public void setPeriodInNS(long value) { argument
39 mOptions.setPeriodInNS(value);
/frameworks/base/media/java/android/media/
H A DMediaScannerClient.java30 public void handleStringTag(String name, String value); argument
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyList.java38 // list of long int property values (fourth field in quadruplet, when value is integer type)
40 // list of long int property values (fourth field in quadruplet, when value is string type)
53 public void append(int handle, int property, int type, long value) { argument
61 mLongValues[index] = value;
64 public void append(int handle, int property, String value) { argument
72 mStringValues[index] = value;
/frameworks/base/media/mca/effect/java/android/media/effect/
H A DEffect.java82 * @param value The new value to set the parameter to.
83 * @throws InvalidArgumentException if parameterName is not a recognized name, or the value is
84 * not a valid value for this parameter.
86 public abstract void setParameter(String parameterKey, Object value); argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGenerateProgramPorts.java28 GenerateProgramPort[] value(); method in interface:GenerateProgramPorts
H A DKeyValueMap.java36 throw new RuntimeException("Key-value argument " + i + " must be a key of type "
40 Object value = keyValues[i+1];
41 put(key, value);
71 Object value = entry.getValue();
72 if (value instanceof String) {
73 valueString = "\"" + value + "\"";
75 valueString = value.toString();
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DOrderedDataOutputStream.java37 public OrderedDataOutputStream writeShort(short value) throws IOException { argument
39 mByteBuffer.putShort(value);
44 public OrderedDataOutputStream writeInt(int value) throws IOException { argument
46 mByteBuffer.putInt(value);
H A DExifTag.java56 * value depending on the field definition.
96 // Actual data count in tag (should be number of elements in value array)
100 // The value (array of elements of type Tag Type)
194 * Gets the total data size in bytes of the value of this tag.
211 * setValue() if the length of value does not match the component count.
218 * Returns true if this ExifTag contains value; otherwise, this tag will
219 * contain an offset value that is determined when the tag is written.
231 * <li>The value overflows.</li>
232 * <li>The value.length does NOT match the component count in the definition
236 public boolean setValue(int[] value) { argument
270 setValue(int value) argument
286 setValue(long[] value) argument
307 setValue(long value) argument
327 setValue(String value) argument
363 setValue(Rational[] value) argument
394 setValue(Rational value) argument
411 setValue(byte[] value, int offset, int length) argument
427 setValue(byte[] value) argument
441 setValue(byte value) argument
912 checkOverflowForUnsignedShort(int[] value) argument
921 checkOverflowForUnsignedLong(long[] value) argument
930 checkOverflowForUnsignedLong(int[] value) argument
939 checkOverflowForUnsignedRational(Rational[] value) argument
950 checkOverflowForRational(Rational[] value) argument
[all...]
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DStringFloat.java8 public float value; field in class:StringFloat
26 value = newValue;
39 out.writeFloat(value);
44 value = in.readFloat();
/frameworks/base/media/mca/filterfw/jni/
H A Djni_util.cpp98 jstring ToJString(JNIEnv* env, const std::string& value) { argument
99 return env->NewStringUTF(value.c_str());
102 std::string ToCppString(JNIEnv* env, jstring value) { argument
104 const char* c_value = env->GetStringUTFChars(value, &isCopy);
107 env->ReleaseStringUTFChars(value, c_value);
111 jboolean ToJBool(bool value) { argument
112 return value ? JNI_TRUE : JNI_FALSE;
115 bool ToCppBool(jboolean value) { argument
116 return value == JNI_TRUE;
127 jobject CreateJObject(JNIEnv* env, const std::string& class_name, const std::string& signature, T value) { argument
162 ToJObject(JNIEnv* env, const Value& value) argument
[all...]
/frameworks/native/services/surfaceflinger/EventLog/
H A DEventLog.cpp92 void EventLog::TagBuffer::writeInt32(int32_t value) { argument
94 const size_t needed = 1 + sizeof(value);
100 memcpy(&mStorage[mPos + 1], &value, sizeof(value));
104 void EventLog::TagBuffer::writeInt64(int64_t value) { argument
106 const size_t needed = 1 + sizeof(value);
112 memcpy(&mStorage[mPos + 1], &value, sizeof(value));
116 void EventLog::TagBuffer::writeString8(const String8& value) { argument
118 const int32_t stringLen = value
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPathDashPathEffect.java26 Style(int value) { argument
27 native_style = value;
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DUnrefedBitmapCache.java32 * when the same key is used to retrieve the value, a {@link NullReusableBitmap} singleton will
72 protected int sizeOf(final ReusableBitmap value) { argument
73 return value.getByteCount();
108 public void offer(final ReusableBitmap value) { argument
110 super.offer(value);
131 public ReusableBitmap put(final RequestKey key, final ReusableBitmap value) { argument
132 if (mNullRequests != null && (value == null || value == NullReusableBitmap.getInstance())) {
137 return super.put(key, value);
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DBmsgTokenizer.java37 public final String value; field in class:BmsgTokenizer.Property
39 public Property(String name, String value) { argument
40 if (name == null || value == null) {
45 this.value = value;
52 return name + ":" + value;
57 return ((o instanceof Property) && ((Property) o).name.equals(name) && ((Property) o).value
58 .equals(value));
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
H A DBmsgTokenizer.java37 public final String value; field in class:BmsgTokenizer.Property
39 public Property(String name, String value) { argument
40 if (name == null || value == null) {
45 this.value = value;
52 return name + ":" + value;
57 return ((o instanceof Property) && ((Property) o).name.equals(name) && ((Property) o).value
58 .equals(value));
/frameworks/support/v4/api21/android/support/v4/media/
H A DMediaMetadataCompatApi21.java51 public static void putBitmap(Object builderObj, String key, Bitmap value) { argument
52 ((MediaMetadata.Builder)builderObj).putBitmap(key, value);
55 public static void putLong(Object builderObj, String key, long value) { argument
56 ((MediaMetadata.Builder)builderObj).putLong(key, value);
63 public static void putText(Object builderObj, String key, CharSequence value) { argument
64 ((MediaMetadata.Builder) builderObj).putText(key, value);
67 public static void putString(Object builderObj, String key, String value) { argument
68 ((MediaMetadata.Builder) builderObj).putString(key, value);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicLUTThunker.java45 public void setRed(int index, int value) { argument
47 mN.setRed(index, value);
53 public void setGreen(int index, int value) { argument
55 mN.setGreen(index, value);
61 public void setBlue(int index, int value) { argument
63 mN.setBlue(index, value);
69 public void setAlpha(int index, int value) { argument
71 mN.setAlpha(index, value);
/frameworks/base/location/java/android/location/
H A DGpsMeasurement.java224 public void setPrn(byte value) { argument
225 mPrn = value;
233 * The sign of this value is given by the following equation:
236 * The value provides an individual time-stamp for the measurement, and allows sub-nanosecond
246 public void setTimeOffsetInNs(double value) { argument
247 mTimeOffsetInNs = value;
254 * This value helps interpret {@link #getReceivedGpsTowInNs()}.
263 public void setState(short value) { argument
264 switch (value) {
270 mState = value;
318 setReceivedGpsTowInNs(long value) argument
332 setReceivedGpsTowUncertaintyInNs(long value) argument
349 setCn0InDbHz(double value) argument
364 setPseudorangeRateInMetersPerSec(double value) argument
379 setPseudorangeRateUncertaintyInMetersPerSec(double value) argument
395 setAccumulatedDeltaRangeState(short value) argument
442 setAccumulatedDeltaRangeInMeters(double value) argument
459 setAccumulatedDeltaRangeUncertaintyInMeters(double value) argument
483 setPseudorangeInMeters(double value) argument
517 setPseudorangeUncertaintyInMeters(double value) argument
552 setCodePhaseInChips(double value) argument
585 setCodePhaseUncertaintyInChips(double value) argument
651 setCarrierCycles(long value) argument
688 setCarrierPhase(double value) argument
721 setCarrierPhaseUncertainty(double value) argument
744 setLossOfLock(byte value) argument
827 setTimeFromLastBitInMs(short value) argument
863 setDopplerShiftInHz(double value) argument
896 setDopplerShiftUncertaintyInHz(double value) argument
919 setMultipathIndicator(byte value) argument
1038 setElevationUncertaintyInDeg(double value) argument
1073 setAzimuthInDeg(double value) argument
1108 setAzimuthUncertaintyInDeg(double value) argument
1134 setUsedInFix(boolean value) argument
[all...]
/frameworks/av/media/libstagefright/wifi-display/
H A DParameters.cpp63 AString value(&data[valueStart], i - valueStart);
64 value.trim();
66 mDict.add(name, value);
76 bool Parameters::findParameter(const char *name, AString *value) const {
83 value->clear();
88 *value = mDict.valueAt(index);
/frameworks/base/core/java/android/util/
H A DJsonWriter.java27 * encoded value to a stream, one token at a time. The stream includes both
38 * Write each of the array's elements with the appropriate {@link #value}
43 * {@link #name} with the property's value. Write property values with the
44 * appropriate {@link #value} method or by nesting other objects or arrays.
88 * writer.name("id").value(message.getId());
89 * writer.name("text").value(message.getText());
103 * writer.name("name").value(user.getName());
104 * writer.name("followers_count").value(user.getFollowersCount());
110 * for (Double value : doubles) {
111 * writer.value(valu
299 value(String value) argument
324 value(boolean value) argument
337 value(double value) argument
351 value(long value) argument
364 value(Number value) argument
400 string(String value) argument
[all...]
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DEffectParameter.java46 public void displayValue(int value, boolean fromTouch) { argument
47 String text = Integer.toString(value)+" "+mUnit;
50 mSeekBar.setProgress(value - mMin);
58 public abstract void setParameter(Integer value); argument
72 int value = progress + mMin;
74 setParameter(value);
/frameworks/base/rs/java/android/renderscript/
H A DByte3.java75 * @param value
77 public void add(byte value) { argument
78 x += value;
79 y += value;
80 z += value;
129 * @param value
131 public void sub(byte value) { argument
132 x -= value;
133 y -= value;
134 z -= value;
185 mul(byte value) argument
239 div(byte value) argument
370 setAt(int i, byte value) argument
392 addAt(int i, byte value) argument
[all...]

Completed in 691 milliseconds

1234567891011>>