Searched refs:value (Results 151 - 175 of 2087) sorted by relevance

1234567891011>>

/frameworks/base/rs/java/android/renderscript/
H A DInt4.java84 * @param value
86 public void add(int value) { argument
87 x += value;
88 y += value;
89 z += value;
90 w += value;
142 * @param value
144 public void sub(int value) { argument
145 x -= value;
146 y -= value;
202 mul(int value) argument
260 div(int value) argument
318 mod(int value) argument
458 setAt(int i, int value) argument
483 addAt(int i, int value) argument
[all...]
H A DLong4.java84 * @param value
86 public void add(long value) { argument
87 x += value;
88 y += value;
89 z += value;
90 w += value;
142 * @param value
144 public void sub(long value) { argument
145 x -= value;
146 y -= value;
202 mul(long value) argument
260 div(long value) argument
318 mod(long value) argument
458 setAt(int i, long value) argument
483 addAt(int i, long value) argument
[all...]
H A DShort4.java84 * @param value
86 public void add(short value) { argument
87 x += value;
88 y += value;
89 z += value;
90 w += value;
142 * @param value
144 public void sub(short value) { argument
145 x -= value;
146 y -= value;
202 mul(short value) argument
260 div(short value) argument
318 mod(short value) argument
458 setAt(int i, short value) argument
483 addAt(int i, short value) argument
[all...]
/frameworks/rs/script_api/
H A Drs_atomic.spec37 arg: volatile int32_t* addr, "Address of the value to modify."
38 arg: int32_t value, "Amount to add."
41 Atomicly adds a value to the value at addr, i.e. <code>*addr += value</code>.
49 arg: uint32_t value
56 arg: volatile int32_t* addr, "Address of the value to modify."
57 arg: int32_t value, "Value to and with."
61 i.e. <code>*addr &amp;= value</code>.
69 arg: uint32_t value
[all...]
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java40 * property to animate, and the value to animate either to or by, and this class handles the
176 * values holder is the list of all property/value objects.
232 * values are used to calculate the animated value for a given animation fraction
259 * By default, the animator uses the default value for ValueAnimator. Calling this method
260 * will cause the declared value to be used instead.
261 * @param duration The length of ensuing property animations, in milliseconds. The value
277 * object, that value is returned. Otherwise, the default value of the underlying Animator
288 // the value has not been set otherwise
298 * object, that value i
450 x(float value) argument
463 xBy(float value) argument
476 y(float value) argument
489 yBy(float value) argument
502 z(float value) argument
515 zBy(float value) argument
528 rotation(float value) argument
541 rotationBy(float value) argument
554 rotationX(float value) argument
567 rotationXBy(float value) argument
580 rotationY(float value) argument
593 rotationYBy(float value) argument
606 translationX(float value) argument
619 translationXBy(float value) argument
632 translationY(float value) argument
645 translationYBy(float value) argument
658 translationZ(float value) argument
671 translationZBy(float value) argument
683 scaleX(float value) argument
696 scaleXBy(float value) argument
709 scaleY(float value) argument
722 scaleYBy(float value) argument
735 alpha(float value) argument
748 alphaBy(float value) argument
984 setValue(int propertyConstant, float value) argument
[all...]
/frameworks/rs/cpp/util/
H A DTypeHelpers.h33 template <typename T> struct trait_trivial_ctor { enum { value = false }; }; enumerator in enum:android::RSC::trait_trivial_ctor::__anon1966
34 template <typename T> struct trait_trivial_dtor { enum { value = false }; }; enumerator in enum:android::RSC::trait_trivial_dtor::__anon1967
35 template <typename T> struct trait_trivial_copy { enum { value = false }; }; enumerator in enum:android::RSC::trait_trivial_copy::__anon1968
36 template <typename T> struct trait_trivial_move { enum { value = false }; }; enumerator in enum:android::RSC::trait_trivial_move::__anon1969
37 template <typename T> struct trait_pointer { enum { value = false }; }; enumerator in enum:android::RSC::trait_pointer::__anon1970
38 template <typename T> struct trait_pointer<T*> { enum { value = true }; }; enumerator in enum:android::RSC::trait_pointer::__anon1971
44 is_pointer = trait_pointer<TYPE>::value,
46 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value,
48 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value,
50 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value,
232 VALUE value; member in struct:android::RSC::key_value_pair_t
250 { enum { value = aggregate_traits<K,V>::has_trivial_ctor }; }; enumerator in enum:android::RSC::trait_trivial_ctor::__anon1974
253 { enum { value = aggregate_traits<K,V>::has_trivial_dtor }; }; enumerator in enum:android::RSC::trait_trivial_dtor::__anon1975
256 { enum { value = aggregate_traits<K,V>::has_trivial_copy }; }; enumerator in enum:android::RSC::trait_trivial_copy::__anon1976
259 { enum { value = aggregate_traits<K,V>::has_trivial_move }; }; enumerator in enum:android::RSC::trait_trivial_move::__anon1977
294 hash_type(T* const & value) argument
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A DParsedMessage.h25 // key/value pairs making up the headers and an optional body/content.
30 bool findString(const char *name, AString *value) const;
31 bool findInt32(const char *name, int32_t *value) const;
40 static bool GetAttribute(const char *s, const char *key, AString *value);
43 const char *s, const char *key, int32_t *value);
/frameworks/av/media/libstagefright/foundation/include/foundation/
H A DParsedMessage.h25 // key/value pairs making up the headers and an optional body/content.
30 bool findString(const char *name, AString *value) const;
31 bool findInt32(const char *name, int32_t *value) const;
40 static bool GetAttribute(const char *s, const char *key, AString *value);
43 const char *s, const char *key, int32_t *value);
/frameworks/av/media/libstagefright/include/foundation/
H A DParsedMessage.h25 // key/value pairs making up the headers and an optional body/content.
30 bool findString(const char *name, AString *value) const;
31 bool findInt32(const char *name, int32_t *value) const;
40 static bool GetAttribute(const char *s, const char *key, AString *value);
43 const char *s, const char *key, int32_t *value);
/frameworks/base/core/java/android/view/autofill/
H A DHelper.java43 final Object value = bundle.get(key);
45 builder.append((value instanceof Object[])
46 ? Arrays.toString((Objects[]) value) : value);
/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/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/src/com/android/multidexlegacytestapp/annotation/
H A DTestAnnotation.java24 AnnotationValue value(); method in interface:TestAnnotation
H A DTestAnnotation2.java24 AnnotationValue value(); method in interface:TestAnnotation2
/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
/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/base/packages/MtpDocumentsProvider/src/com/android/mtp/annotations/
H A DUsedByNative.java30 String value(); method in interface:UsedByNative
/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
H A DInstallNonMarketAppsDeprecationTest.java103 String value = getSetting(SETTING_TYPE_SECURE, Settings.Secure.INSTALL_NON_MARKET_APPS);
104 assertEquals("install_non_market_apps should be 1", value, "1");
110 value = getSetting(SETTING_TYPE_SECURE, Settings.Secure.INSTALL_NON_MARKET_APPS);
111 assertEquals("install_non_market_apps not reset to 1", value, "1");
118 String value = getSecureSettingForUserViaShell(newUser.id);
119 assertEquals("install_non_market_apps should be 1 for a new user", value, "1");
124 String value = getSetting(SETTING_TYPE_SECURE, Settings.Secure.INSTALL_NON_MARKET_APPS);
125 assertEquals(value, mHasUserRestriction ? "0" : "1");
135 value = waitTillValueChanges(
136 "Changing user restriction did not change the value o
[all...]
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/annotations/
H A DDependencies.java26 DependsOn[] value(); method in interface:Dependencies
H A DRequirements.java26 Requires[] value(); method in interface:Requirements
/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);

Completed in 5310 milliseconds

1234567891011>>