Searched refs:value (Results 201 - 225 of 493) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/view/animation/
H A DTranslateAnimation.java62 mFromXValue = d.value;
67 mToXValue = d.value;
72 mFromYValue = d.value;
77 mToYValue = d.value;
113 * animation. This value can either be an absolute number if fromXType
119 * animation. This value can either be an absolute number if toXType
125 * animation. This value can either be an absolute number if fromYType
131 * animation. This value can either be an absolute number if toYType
/frameworks/base/core/java/com/google/android/mms/pdu/
H A DEncodedStringValue.java29 * Encoded-string-value = Text-string | Value-length Char-set Text-string
37 * The Char-set value.
42 * The Text-string value.
49 * @param charset the Char-set value
50 * @param data the Text-string value
51 * @throws NullPointerException if Text-string value is null.
67 * @param data the Text-string value
68 * @throws NullPointerException if Text-string value is null.
84 * Get Char-set value.
86 * @return the value
265 copy(EncodedStringValue value) argument
[all...]
H A DPduComposer.java195 protected void append(int value) { argument
196 mMessage.write(value);
201 * Append short integer value to mMessage.
205 protected void appendShortInteger(int value) { argument
209 * ; Integers in range 0-127 shall be encoded as a one octet value
211 * ; the value in the remaining least significant bits.
215 append((value | 0x80) & 0xff);
221 * A value between 0 and 127 should be appended by using appendShortInteger.
234 protected void appendShortLength(int value) { argument
239 append(value);
355 appendUintvarInteger(long value) argument
405 appendValueLength(long value) argument
[all...]
/frameworks/base/core/tests/utillib/src/coretestutils/http/
H A DMockResponse.java79 public MockResponse addHeader(String header, String value) { argument
80 headers.put(header.toLowerCase(), value);
84 public MockResponse addHeader(String header, long value) { argument
85 return addHeader(header, Long.toString(value));
/frameworks/base/graphics/java/android/renderscript/
H A DScriptC.java113 public void addDefine(String name, int value) { argument
114 mIntDefines.put(name, value);
117 public void addDefine(String name, float value) { argument
118 mFloatDefines.put(name, value);
/frameworks/base/media/libdrm/mobile1/include/xml/
H A Dxml_tinyParser.h76 uint8_t **value, int32_t *valueLen);
126 uint8_t **value,
147 uint8_t value[XML_MAX_ATTR_VALUE_LEN]; member in struct:_XML_TREE_ATTR
154 uint8_t value[XML_MAX_VALUE_LEN]; member in struct:_XML_TREE
/frameworks/base/media/libdrm/mobile1/src/xml/
H A Dxml_tinyparser.c41 uint8_t *name, *value; local
63 XML_DOM_getAttr(buffer, &name, &nameLen, &value, &valueLen))
66 buffer = value + valueLen + 1;
188 /* If it's an end_tag, no value should be returned */
227 /* the following is a tag instead of the value */
228 if (*buffer == '<') { /* nono value, such as <test></test> */
405 uint8_t **value, int32_t *valueLen)
430 if (NULL == (pStart = XML_DOM_getValue(pStart, value, valueLen)))
446 return *value;
531 uint8_t **value, int32_
404 XML_DOM_getNodeValue(uint8_t *buffer, uint8_t *node, uint8_t **value, int32_t *valueLen) argument
529 WBXML_DOM_getNodeValue(uint8_t *buffer, int32_t bufferLen, uint8_t *node, uint8_t **value, int32_t *valueLen) argument
[all...]
/frameworks/base/media/libmedia/
H A DMediaScannerClient.cpp65 bool MediaScannerClient::addStringTag(const char* name, const char* value) argument
70 // check to see if value (which should be utf8) has any non-ASCII characters
72 const char* chp = value;
84 mValues->push_back(value);
92 return handleStringTag(name, value);
155 // for each value string, convert from native encoding to UTF-8
213 // finally, push all name/value pairs to the client
/frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
H A Dbits.h85 Word16 value, /* input : parameter value */
/frameworks/base/media/libstagefright/include/
H A DHTTPStream.h53 const string &key, string *value) const;
55 // Pass a negative value to disable the timeout.
/frameworks/base/tools/localize/
H A DValuesFile_test.cpp23 str.value->ContentsToString(ANDROID_NAMESPACES).c_str(),
H A Dmerge_res_and_xliff.cpp39 printf("id=%s index=%d config=%s file=%s value='%s'\n", it->id.c_str(), it->index,
41 it->value->ToString(ANDROID_NAMESPACES).c_str());
49 return StringResource(s.pos, file, config, s.id, s.index, s.value ? s.value->Clone() : NULL,
56 XMLNode* value = res.value; local
57 if (value == NULL) {
60 string contents = value->ContentsToString(ANDROID_NAMESPACES);
100 string xx_o_value = xx_o->value->ToString(ANDROID_NAMESPACES);
101 string xx_c_value = xx_c->value
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DHashtableTest.java71 int value;
75 value = hTable.get(keys[i]);
76 value = hTable.get(keys[i]);
77 value = hTable.get(keys[i]);
78 value = hTable.get(keys[i]);
79 value = hTable.get(keys[i]);
80 value = hTable.get(keys[i]);
81 value = hTable.get(keys[i]);
82 value = hTable.get(keys[i]);
83 value
[all...]
H A DTreeMapPerformanceTest.java72 int value;
76 value = map.get(keys[i]);
77 value = map.get(keys[i]);
78 value = map.get(keys[i]);
79 value = map.get(keys[i]);
80 value = map.get(keys[i]);
81 value = map.get(keys[i]);
82 value = map.get(keys[i]);
83 value = map.get(keys[i]);
84 value
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/
H A DPositionTesterContextMenuListener.java100 private boolean isTrue(String message, boolean value) { argument
101 if (!value) {
/frameworks/base/keystore/java/android/security/
H A DCredentials.java101 public void install(Context context, String type, byte[] value) { argument
104 intent.putExtra(type, value);
/frameworks/base/services/audioflinger/
H A DAudioHardwareInterface.cpp74 char value[PROPERTY_VALUE_MAX]; local
80 if (property_get("ro.kernel.qemu", value, 0)) {
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DResponseData.java45 int tag = 0x80 | ComprehensionTlvTag.ITEM_ID.value();
88 int tag = 0x80 | ComprehensionTlvTag.TEXT_STRING.value();
/frameworks/base/graphics/java/android/graphics/
H A DBitmapFactory.java54 * If set to a value > 1, requests the decoder to subsample the original
59 * number of pixels. Any value <= 1 is treated the same as 1. Note: the
316 public static Bitmap decodeResourceStream(Resources res, TypedValue value, argument
323 if (opts.inDensity == 0 && value != null) {
324 final int density = value.density;
356 final TypedValue value = new TypedValue();
357 is = res.openRawResource(id, value);
359 bm = decodeResourceStream(res, value, is, null, opts);
454 // value should be.
465 // into is.read(...) This number is not related to the value passe
[all...]
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmAnalyzerTest.java154 ClassReader value = found.get(key);
155 assertNotNull("No value for " + key, value);
156 assertEquals(key, AsmAnalyzer.classReaderToClassName(value));
176 ClassReader value = found.get(key);
177 assertNotNull("No value for " + key, value);
178 assertEquals(key, AsmAnalyzer.classReaderToClassName(value));
/frameworks/base/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp259 // Return true if the value is in [0, 0x007FFFFFFF]
497 const String8 &key, const String8 &value) {
498 LOGV("setParameter: key (%s) => value (%s)", key.string(), value.string());
501 if (safe_strtoi64(value.string(), &max_duration_ms)) {
506 if (safe_strtoi64(value.string(), &max_filesize_bytes)) {
511 if (safe_strtoi32(value.string(), &durationUs)) {
516 if (safe_strtoi32(value.string(), &timeScale)) {
521 if (safe_strtoi32(value.string(), &use64BitOffset)) {
526 if (safe_strtoi64(value
496 setParameter( const String8 &key, const String8 &value) argument
608 String8 value; local
[all...]
/frameworks/base/services/jni/
H A Dcom_android_server_BatteryService.cpp163 jboolean value = false; local
166 value = true;
169 env->SetBooleanField(obj, fieldID, value);
177 jint value = 0; local
179 value = atoi(buf);
181 env->SetIntField(obj, fieldID, value);
189 jint value = 0; local
191 value = atoi(buf);
192 value /= gVoltageDivisor;
194 env->SetIntField(obj, fieldID, value);
[all...]
/frameworks/base/core/java/android/server/
H A DBluetoothService.java111 // INIT_AUTO_PAIRING_FAILURE_ATTEMPT_DELAY as the initial value and
112 // MAX_AUTO_PAIRING_FAILURE_ATTEMPT_DELAY as the max value.
645 // message. The initial value is
646 // INIT_AUTO_PAIRING_FAILURE_ATTEMPT_DELAY and the max value is
647 // MAX_AUTO_PAIRING_FAILURE_ATTEMPT_DELAY. If the max value is
895 String[] value = line.split("=");
896 if (value != null && value.length == 2) {
897 String[] val = value[1].split(",");
898 if (value[
1018 setProperty(String name, String value) argument
1035 setPropertyString(String key, String value) argument
1041 setPropertyInteger(String key, int value) argument
1047 setPropertyBoolean(String key, boolean value) argument
1437 setRemoteDeviceProperty(String address, String name, String value) argument
1453 setTrust(String address, boolean value) argument
2361 setAdapterPropertyStringNative(String key, String value) argument
2362 setAdapterPropertyIntegerNative(String key, int value) argument
2363 setAdapterPropertyBooleanNative(String key, int value) argument
2385 setDevicePropertyBooleanNative(String objectPath, String key, int value) argument
2394 setAuthorizationNative(String address, boolean value, int data) argument
[all...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java174 * The orientation of the camera image. The value is the angle that the
181 * right edge of the screen in natural orientation, the value should be
183 * the right of the screen, the value should be 270.
614 * onAutoFocus will be called immediately with a fake value of
750 * Zooms to the requested value smoothly. The driver will notify {@link
751 * OnZoomChangeListener} of the zoom value and whether zoom is stopped at
753 * is called with value 3. The
758 * value before zoom stops. If the supplied zoom value equals to the current
759 * zoom value, n
769 startSmoothZoom(int value) argument
1330 set(String key, String value) argument
1349 set(String key, int value) argument
1911 setWhiteBalance(String value) argument
1952 setColorEffect(String value) argument
2042 setSceneMode(String value) argument
2079 setFlashMode(String value) argument
2119 setFocusMode(String value) argument
2187 setExposureCompensation(int value) argument
2247 setZoom(int value) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_XmlBlock.cpp334 Res_value value; local
335 if (st->getAttributeValue(idx, &value) < 0) {
339 return value.dataType == value.TYPE_REFERENCE
340 || value.dataType == value.TYPE_ATTRIBUTE
341 ? value.data : 0;

Completed in 476 milliseconds

1234567891011>>