Searched defs:value (Results 1 - 25 of 1091) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdCountLeadingZeros.s25 value RN 0 label
45 CLZ value, value
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdCountLeadingZeros.S24 #define value r0 define
44 CLZ value, value
/frameworks/base/core/java/android/annotation/
H A DSuppressLint.java37 String[] value(); method in interface:SuppressLint
H A DTargetApi.java34 int value(); method in interface:TargetApi
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DBindingMethods.java24 * {@link BindingMethod} annotations in the value.
28 BindingMethod[] value(); method in interface:BindingMethods
H A DInverseBindingMethods.java22 * Used to enumerate attribute, getter, and event association. The value is an array of
27 InverseBindingMethod[] value(); method in interface:InverseBindingMethods
H A DUntaggable.java26 String[] value(); method in interface:Untaggable
H A DBindingAdapter.java24 * and the value to set:
61 * parameter as well. If it does, it will be passed the value passed in during binding, either
62 * directly in the inflate method or indirectly, using the value from
74 String[] value(); method in interface:BindingAdapter
80 * for which there was no binding expression (even a normal XML value) will
81 * cause the associated parameter receive the Java default value. Care must be
82 * taken to ensure that a default value is not confused with a valid XML value.
85 * value is true.
/frameworks/base/cmds/bootanimation/
H A Dbootanimation_main.cpp37 char value[PROPERTY_VALUE_MAX]; local
38 property_get("debug.sf.nobootanimation", value, "0");
39 int noBootAnimation = atoi(value);
/frameworks/base/core/java/android/webkit/
H A DValueCallback.java24 * Invoked when the value is available.
25 * @param value The value.
27 public void onReceiveValue(T value); argument
/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/media/mca/filterfw/java/android/filterfw/core/
H A DGenerateProgramPorts.java28 GenerateProgramPort[] value(); method in interface:GenerateProgramPorts
/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.h29 void* value; member in struct:__anon1106
35 int GetIntValue(Value value);
36 float GetFloatValue(Value value);
37 const char* GetStringValue(Value value);
38 const char* GetBufferValue(Value value);
39 char* GetMutableBufferValue(Value value);
40 int* GetIntArrayValue(Value value);
41 float* GetFloatArrayValue(Value value);
44 int ValueIsNull(Value value);
45 int ValueIsInt(Value value);
[all...]
/frameworks/base/tools/aapt2/util/
H A DTypeTraits.h35 static constexpr bool value = test<T, U>(int()); \
46 static constexpr bool value = has_eq_op<T, U>::value && has_lt_op<T, U>::value; member in struct:aapt::is_comparable
/frameworks/rs/
H A DrsCompatibilityLib.cpp22 int property_get(const char *key, char *value, const char *default_value) { argument
25 len = __system_property_get(key, value);
35 memcpy(value, default_value, len + 1);
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dget_amr_wb_bits.cpp121 int16 value = 0; local
126 value <<= 2;
130 value |= 2;
135 value |= 1;
142 value <<= 1;
146 value |= 1;
151 return (value);
157 int16 value = 0; local
161 value = 1;
163 return (value);
[all...]
/frameworks/base/core/java/android/util/
H A DContainerHelpers.java22 static int binarySearch(int[] array, int size, int value) { argument
30 if (midVal < value) {
32 } else if (midVal > value) {
35 return mid; // value found
38 return ~lo; // value not present
41 static int binarySearch(long[] array, int size, long value) { argument
49 if (midVal < value) {
51 } else if (midVal > value) {
54 return mid; // value found
57 return ~lo; // value no
[all...]
/frameworks/base/core/java/com/android/internal/annotations/
H A DGuardedBy.java31 String value(); method in interface:GuardedBy
/frameworks/base/core/java/com/android/internal/util/
H A DFastMath.java29 public static int round(float value) { argument
30 long lx = (long) (value * (65536 * 256f));
/frameworks/base/core/jni/android/graphics/
H A DHarfBuzzNGFaceSkia.h49 static inline hb_position_t SkScalarToHBFixed(SkScalar value) { argument
50 return HBFloatToFixed(SkScalarToFloat(value));
/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/keystore/java/android/security/keystore/
H A DUtils.java29 static Date cloneIfNotNull(Date value) { argument
30 return (value != null) ? (Date) value.clone() : null;
33 static byte[] cloneIfNotNull(byte[] value) { argument
34 return (value != null) ? value.clone() : null;

Completed in 463 milliseconds

1234567891011>>