Searched refs:value (Results 51 - 75 of 845) sorted by relevance

1234567891011>>

/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DReadRecInd.java26 * @param from the from value
27 * @param messageId the message ID value
29 * @param readStatus the read status value
30 * @param to the to value
58 * Get Date value.
60 * @return the value
67 * Set Date value.
69 * @param value the value
71 public void setDate(long value) { argument
90 setMessageId(byte[] value) argument
109 setTo(EncodedStringValue[] value) argument
128 setReadStatus(int value) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_vlc.c50 /* definition of special code num, this along with the return value is used
81 2^32-1 is indicated by BIG_CODE_NUM with return value HANTRO_OK
82 while symbol 2^32 is indicated by BIG_CODE_NUM with return value
88 DecodeExpGolombSigned to express value -2^31.
214 by unsigned 32-bit value. This is signaled as a special case from
222 value decoded code word is stored here
230 u32 h264bsdDecodeExpGolombSigned(strmData_t *pStrmData, i32 *value) argument
240 ASSERT(value);
255 *value = (i32)(2147483648U);
263 * (codeNum+1)>>1 when value i
300 h264bsdDecodeExpGolombMapped(strmData_t *pStrmData, u32 *value, u32 isIntra) argument
363 h264bsdDecodeExpGolombTruncated( strmData_t *pStrmData, u32 *value, u32 greaterThanOne) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DAppInterface.java71 CommandType(int value) { argument
72 mValue = value;
75 public int value() { method in class:AppInterface.CommandType
82 * @param value Integer value to be converted to a CommandType object.
83 * @return CommandType object whose "Type of Command" value is {@code
84 * value}. If no CommandType object has that value, null is
87 public static CommandType fromInt(int value) { argument
89 if (e.mValue == value) {
[all...]
H A DComprehensionTlvTag.java20 * Enumeration for representing the tag value of COMPREHENSION-TLV objects. If
21 * you want to get the actual value, call {@link #value() value} method.
53 ComprehensionTlvTag(int value) { argument
54 mValue = value;
58 * Returns the actual value of this COMPREHENSION-TLV object.
60 * @return Actual tag value of this object
62 public int value() { method in class:ComprehensionTlvTag
66 public static ComprehensionTlvTag fromInt(int value) { argument
[all...]
/frameworks/av/drm/libdrmframework/plugins/common/util/include/
H A DSessionMap.h42 * Adds a new value in the session map table. It expects memory to be allocated already
46 * @param value - session object to add
48 * @return boolean result of adding value. returns false if key is already exist.
50 bool addValue(int key, TValue value) { argument
53 map.add(key, value);
84 * @param index - index of the value required
89 TValue value = NULL; local
93 value = map.valueAt(index);
95 return value;
101 * @param key - key of the value t
142 deleteValue(TValue value) argument
179 TValue value = NULL; local
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DResourceHelper.java63 * Returns the color value represented by the given string value
64 * @param value the color value
68 public static int getColor(String value) { argument
69 if (value != null) {
70 if (value.startsWith("#") == false) {
72 String.format("Color value '%s' must start with #", value));
75 value
167 getDrawable(ResourceValue value, BridgeContext context) argument
342 getValue(String attribute, String value, boolean requireUnit) argument
358 parseFloatAttribute(String attribute, String value, TypedValue outValue, boolean requireUnit) argument
433 computeTypedValue(TypedValue outValue, float value, float scale) argument
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorBGAudioProcessing.cpp153 // Duck the BG track to ducking factor value before mixing
169 *pBTMdata1 = -32766; // less then max allowed value
176 *pBTMdata1 = 32767; // less than max allowed value
238 // Fast way to compute 10 * log(value)
239 M4OSA_Int32 VideoEditorBGAudioProcessing::getDecibelSound(M4OSA_UInt32 value) { argument
240 ALOGV("getDecibelSound: %ld", value);
242 if (value <= 0 || value > 0x8000) {
244 } else if (value > 0x4000) { // 32768
246 } else if (value >
[all...]
/frameworks/av/include/media/
H A DAudioParameter.h36 // keyRouting: to change audio routing, value is an int in audio_devices_t
37 // keySamplingRate: to change sampling rate routing, value is an int
38 // keyFormat: to change audio format, value is an int in audio_format_t
39 // keyChannels: to change audio channel configuration, value is an int in audio_channels_t
40 // keyFrameCount: to change audio output frame count, value is an int
41 // keyInputSource: to change audio input source, value is an int in audio_source_t
54 status_t add(const String8& key, const String8& value);
55 status_t addInt(const String8& key, const int value);
56 status_t addFloat(const String8& key, const float value);
60 status_t get(const String8& key, String8& value);
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl.cpp94 static inline void setGlTraceThreadSpecific(gl_hooks_t const *value) { argument
95 pthread_setspecific(gGLTraceKey, value);
103 char value[PROPERTY_VALUE_MAX]; local
104 property_get("debug.egl.trace", value, "0");
106 sEGLGetErrorEnabled = !strcasecmp(value, "error");
113 sEGLSystraceEnabled = !strcasecmp(value, "systrace");
119 int propertyLevel = atoi(value);
126 char value[PROPERTY_VALUE_MAX]; local
127 property_get("debug.egl.debug_proc", value, "");
128 if (strlen(value) >
152 setGLHooksThreadSpecific(gl_hooks_t const *value) argument
190 setGLHooksThreadSpecific(gl_hooks_t const *value) argument
207 char value[PROPERTY_VALUE_MAX]; local
342 setGlThreadSpecific(gl_hooks_t const *value) argument
356 setGlThreadSpecific(gl_hooks_t const *value) argument
[all...]
/frameworks/rs/scriptc/
H A Drs_atomic.rsh29 * Atomic add one to the value at addr.
32 * @param addr Address of value to increment
34 * @return old value
39 * Atomic add one to the value at addr.
42 * @param addr Address of value to increment
44 * @return old value
50 * Atomic subtract one from the value at addr. Equal to rsAtomicSub(addr, 1)
52 * @param addr Address of value to decrement
54 * @return old value
59 * Atomic subtract one from the value a
[all...]
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_atomic.rsh29 * Atomic add one to the value at addr.
32 * @param addr Address of value to increment
34 * @return old value
39 * Atomic add one to the value at addr.
42 * @param addr Address of value to increment
44 * @return old value
50 * Atomic subtract one from the value at addr. Equal to rsAtomicSub(addr, 1)
52 * @param addr Address of value to decrement
54 * @return old value
59 * Atomic subtract one from the value a
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dprm2bits.cpp91 value = value to be converted to binary of type Word16
92 no_of_bits = number of bits associated with value of type Word16
128 Word16 value, // input : value to be converted to binary
129 Word16 no_of_bits, // input : number of bits associated with value
139 bit = value & MASK;
148 value = shr (value, 1);
179 Word16 value, /* inpu
178 Int2bin( Word16 value, Word16 no_of_bits, Word16 *bitstream ) argument
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteProgram.java124 * Bind a NULL value to this statement. The value remains bound until
134 * Bind a long value to this statement. The value remains bound until
138 * @param value The value to bind
140 public void bindLong(int index, long value) { argument
141 bind(index, value);
145 * Bind a double value to this statement. The value remain
151 bindDouble(int index, double value) argument
162 bindString(int index, String value) argument
176 bindBlob(int index, byte[] value) argument
210 bind(int index, Object value) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/os/
H A DBuild_Delegate.java40 String value = properties.get(property);
41 if (value != null) {
42 return value;
/frameworks/native/include/utils/
H A DTypeHelpers.h33 template <typename T> struct trait_trivial_ctor { enum { value = false }; }; enumerator in enum:android::trait_trivial_ctor::__anon1405
34 template <typename T> struct trait_trivial_dtor { enum { value = false }; }; enumerator in enum:android::trait_trivial_dtor::__anon1406
35 template <typename T> struct trait_trivial_copy { enum { value = false }; }; enumerator in enum:android::trait_trivial_copy::__anon1407
36 template <typename T> struct trait_trivial_move { enum { value = false }; }; enumerator in enum:android::trait_trivial_move::__anon1408
37 template <typename T> struct trait_pointer { enum { value = false }; }; enumerator in enum:android::trait_pointer::__anon1409
38 template <typename T> struct trait_pointer<T*> { enum { value = true }; }; enumerator in enum:android::trait_pointer::__anon1410
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::key_value_pair_t
250 { enum { value = aggregate_traits<K,V>::has_trivial_ctor }; }; enumerator in enum:android::trait_trivial_ctor::__anon1413
253 { enum { value = aggregate_traits<K,V>::has_trivial_dtor }; }; enumerator in enum:android::trait_trivial_dtor::__anon1414
256 { enum { value = aggregate_traits<K,V>::has_trivial_copy }; }; enumerator in enum:android::trait_trivial_copy::__anon1415
259 { enum { value = aggregate_traits<K,V>::has_trivial_move }; }; enumerator in enum:android::trait_trivial_move::__anon1416
294 hash_type(const T*& value) argument
[all...]
/frameworks/av/media/libstagefright/wifi-display/
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/
H A DViewPropertyAnimator.java40 * property to animate, and the value to animate either to or by, and this class handles the
158 * values holder is the list of all property/value objects.
214 * values are used to calculate the animated value for a given animation fraction
241 * By default, the animator uses the default value for ValueAnimator. Calling this method
242 * will cause the declared value to be used instead.
243 * @param duration The length of ensuing property animations, in milliseconds. The value
259 * object, that value is returned. Otherwise, the default value of the underlying Animator
270 // the value has not been set otherwise
277 * object, that value i
373 x(float value) argument
386 xBy(float value) argument
399 y(float value) argument
412 yBy(float value) argument
425 rotation(float value) argument
438 rotationBy(float value) argument
451 rotationX(float value) argument
464 rotationXBy(float value) argument
477 rotationY(float value) argument
490 rotationYBy(float value) argument
503 translationX(float value) argument
516 translationXBy(float value) argument
529 translationY(float value) argument
542 translationYBy(float value) argument
555 scaleX(float value) argument
568 scaleXBy(float value) argument
581 scaleY(float value) argument
594 scaleYBy(float value) argument
607 alpha(float value) argument
620 alphaBy(float value) argument
843 setValue(int propertyConstant, float value) argument
[all...]
/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/core/java/android/text/format/
H A DFormatter.java32 * @param number size value to be formatted
74 String value;
76 value = String.format("%.2f", result);
79 value = String.format("%.1f", result);
81 value = String.format("%.2f", result);
85 value = String.format("%.0f", result);
87 value = String.format("%.2f", result);
90 value = String.format("%.0f", result);
94 value, context.getString(suffix));
/frameworks/base/graphics/java/android/graphics/
H A DPathDashPathEffect.java26 Style(int value) { argument
27 native_style = value;
/frameworks/base/tools/aapt/
H A DResourceFilter.cpp31 uint32_t value; local
32 if (AaptGroupEntry::parseNamePart(part, &axis, &value)) {
50 sv.add(value);
54 if (value & 0xffff0000) {
55 sv.add(value & 0x0000ffff);
73 ResourceFilter::match(int axis, uint32_t value) const
75 if (value == 0) {
85 return sv.indexOf(value) >= 0;

Completed in 1073 milliseconds

1234567891011>>