Searched defs:value (Results 101 - 125 of 1088) sorted by relevance

1234567891011>>

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/util/
H A DIntArray.java25 public void add(int value) { argument
31 mData[mSize++] = value;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameValue.java29 public void setValue(Object value) { argument
31 backing.setData(value);
H A DTransformUtils.java72 public static void setTextureParameter(FrameImage2D frame, int param, int value) { argument
74 texture.setParameter(param, value);
H A DVariableSource.java32 public synchronized void setValue(Object value) { argument
33 mValue = value;
43 .addOutputPort("value", Signature.PORT_REQUIRED, FrameType.single())
49 mOutputPort = getConnectedOutputPort("value");
/frameworks/base/tools/layoutlib/bridge/src/android/text/
H A DPrimitive.java74 public Primitive getNewPrimitive(int location, float value) { argument
77 return new Primitive(this, location, value, 0f);
79 return new Primitive(this, location, 0f, value);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DPromoteFieldClassAdapter.java43 Object value) {
49 return super.visitField(access, name, desc, signature, value);
42 visitField(int access, String name, String desc, String signature, Object value) argument
/frameworks/base/tools/split-select/
H A DTestRules.cpp27 const Rule EqRule(Rule::Key key, long value) { argument
31 rule.longArgs.add(value);
35 const Rule GtRule(Rule::Key key, long value) { argument
39 rule.longArgs.add(value);
43 const Rule LtRule(Rule::Key key, long value) { argument
47 rule.longArgs.add(value);
/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntry.h52 ValueType& value() { return m_Value; } function in class:mcld::HashEntry
54 const ValueType& value() const { return m_Value; } function in class:mcld::HashEntry
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DGroupExpr.java50 public KCode toInverseCode(KCode value) { argument
52 return getWrapped().toInverseCode(value);
H A DStaticIdentifierExpr.java44 public KCode toInverseCode(KCode value) { argument
/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/data-binding/extensions/library/src/main/java/android/databinding/
H A DObservableBoolean.java31 * field's value, not of the field itself.
42 * Creates an ObservableBoolean with the given initial value.
44 * @param value the initial value for the ObservableBoolean
46 public ObservableBoolean(boolean value) { argument
47 mValue = value;
51 * Creates an ObservableBoolean with the initial value of <code>false</code>.
57 * @return the stored value.
64 * Set the stored value.
66 public void set(boolean value) { argument
[all...]
H A DObservableByte.java31 * field's value, not of the field itself.
42 * Creates an ObservableByte with the given initial value.
44 * @param value the initial value for the ObservableByte
46 public ObservableByte(byte value) { argument
47 mValue = value;
51 * Creates an ObservableByte with the initial value of <code>0</code>.
57 * @return the stored value.
64 * Set the stored value.
66 public void set(byte value) { argument
[all...]
H A DObservableChar.java31 * field's value, not of the field itself.
42 * Creates an ObservableChar with the given initial value.
44 * @param value the initial value for the ObservableChar
46 public ObservableChar(char value) { argument
47 mValue = value;
51 * Creates an ObservableChar with the initial value of <code>0</code>.
57 * @return the stored value.
64 * Set the stored value.
66 public void set(char value) { argument
[all...]
H A DObservableDouble.java31 * field's value, not of the field itself.
42 * Creates an ObservableDouble with the given initial value.
44 * @param value the initial value for the ObservableDouble
46 public ObservableDouble(double value) { argument
47 mValue = value;
51 * Creates an ObservableDouble with the initial value of <code>0</code>.
57 * @return the stored value.
64 * Set the stored value.
66 public void set(double value) { argument
[all...]
H A DObservableFloat.java31 * field's value, not of the field itself.
42 * Creates an ObservableFloat with the given initial value.
44 * @param value the initial value for the ObservableFloat
46 public ObservableFloat(float value) { argument
47 mValue = value;
51 * Creates an ObservableFloat with the initial value of <code>0f</code>.
57 * @return the stored value.
64 * Set the stored value.
66 public void set(float value) { argument
[all...]
H A DObservableInt.java32 * field's value, not of the field itself.
43 * Creates an ObservableInt with the given initial value.
45 * @param value the initial value for the ObservableInt
47 public ObservableInt(int value) { argument
48 mValue = value;
52 * Creates an ObservableInt with the initial value of <code>0</code>.
58 * @return the stored value.
65 * Set the stored value.
67 public void set(int value) { argument
[all...]
H A DObservableLong.java31 * field's value, not of the field itself.
42 * Creates an ObservableLong with the given initial value.
44 * @param value the initial value for the ObservableLong
46 public ObservableLong(long value) { argument
47 mValue = value;
51 * Creates an ObservableLong with the initial value of <code>0L</code>.
57 * @return the stored value.
64 * Set the stored value.
66 public void set(long value) { argument
[all...]
H A DObservableShort.java31 * field's value, not of the field itself.
42 * Creates an ObservableShort with the given initial value.
44 * @param value the initial value for the ObservableShort
46 public ObservableShort(short value) { argument
47 mValue = value;
51 * Creates an ObservableShort with the initial value of <code>0</code>.
57 * @return the stored value.
64 * Set the stored value.
66 public void set(short value) { argument
[all...]
/frameworks/data-binding/integration-tests/MultiModuleTestApp/app/src/androidTest/java/com/android/databinding/multimoduletestapp/
H A DEventIdsTest.java127 private void assertProperty(int propertyId, int value) { argument
128 assertEquals(get(propertyId), value);
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
H A DNameClashAdapter.java23 public void setGabbleBabble(View view, String value) { argument
28 public void setGabbleBabbleFlabble(View view, String value, String value2) { argument
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter2/
H A DNameClashAdapter.java23 public void setGoogleFlooble(View view, String value) { argument
28 public void setGoogleFloobleBooble(View view, String value, String value2) { argument
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DIntFloat.java8 public float value; field in class:IntFloat
33 out.writeFloat(value);
38 value = in.readFloat();
H A DStringFloat.java8 public float value; field in class:StringFloat
26 value = newValue;
39 out.writeFloat(value);
44 value = in.readFloat();
H A DStringString.java8 public String value; field in class:StringString
34 out.writeString(value);
39 value = in.readString();

Completed in 614 milliseconds

1234567891011>>