Searched defs:value (Results 51 - 75 of 796) sorted by relevance

1234567891011>>

/frameworks/base/media/java/android/media/
H A DMediaScannerClient.java30 public void handleStringTag(String name, String value); argument
/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/effect/java/android/media/effect/effects/
H A DBackDropperEffect.java90 public void setParameter(String parameterKey, Object value) { argument
93 background.setInputValue("sourceUrl", value);
96 background.setInputValue("context", value);
H A DIdentityEffect.java49 public void setParameter(String parameterKey, Object value) { argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DProgram.java35 public abstract void setHostValue(String variableName, Object value); argument
H A DProgramVariable.java41 public void setValue(Object value) { argument
46 mProgram.setHostValue(mVarName, value);
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportPrefs.java40 public static void setWarningState(Context context, int value) { argument
43 prefs.edit().putInt(KEY_WARNING_STATE, value).apply();
/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);
/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/services/core/java/com/android/server/net/
H A DNetworkIdentitySet.java80 private static void writeOptionalString(DataOutputStream out, String value) throws IOException { argument
81 if (value != null) {
83 out.writeUTF(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/animation/
H A DFakeAnimator.java44 public void setInterpolator(TimeInterpolator value) { argument
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DFloatMath_Delegate.java39 * positive infinity) integer value which is less than the argument.
41 * @param value to be converted
42 * @return the floor of value
45 /*package*/ static float floor(float value) { argument
46 return (float)Math.floor(value);
51 * negative infinity) integer value which is greater than the argument.
53 * @param value to be converted
54 * @return the ceiling of value
57 /*package*/ static float ceil(float value) { argument
58 return (float)Math.ceil(value);
91 sqrt(float value) argument
103 exp(float value) argument
[all...]
/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.h55 ValueType& value() function in class:mcld::HashEntry
58 const ValueType& value() const function in class:mcld::HashEntry
/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();
/frameworks/native/cmds/ip-up-vpn/
H A Dip-up-vpn.c37 const char *value = getenv(name); local
38 return value ? value : "";
/frameworks/native/libs/binder/
H A DTextOutput.cpp95 static TextOutput& print_float(TextOutput& to, double value) argument
98 sprintf(buf, "%g", value);
/frameworks/native/opengl/tests/configdump/
H A Dconfigdump.cpp80 EGLint value; local
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
82 printf("\t%-32s: %10d (0x%08x)\n", attributes[attr].name, value, value);
/frameworks/native/opengl/tests/lib/
H A DglTestLib.cpp110 EGLint value = -1; local
112 &value);
115 testPrintI(" %s: %d (%#x)", names[j].name, value, value);
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DPooledCache.java22 V put(K key, V value); argument

Completed in 9759 milliseconds

1234567891011>>