/frameworks/base/core/java/android/content/ |
D | DefaultDataHandler.java | 100 String uriStr = atts.getValue(URI_STR); in parseRow() 107 atts.getValue(URI_STR) + " parsing failure"); in parseRow() 112 String postfix = atts.getValue(POSTFIX); in parseRow() 165 String key = atts.getValue(0); in startElement() 166 String value = atts.getValue(1); in startElement() 176 Uri u = Uri.parse(atts.getValue(URI_STR)); in startElement() 179 atts.getValue(URI_STR) + " parsing failure"); in startElement() 185 selectionArgs[i] = atts.getValue(i+2); in startElement() 187 mContentResolver.delete(u, atts.getValue(1), selectionArgs); in startElement() 189 mContentResolver.delete(u, atts.getValue(1), null); in startElement()
|
/frameworks/base/core/tests/coretests/src/android/text/ |
D | PackedIntVectorTest.java | 59 assertEquals(0, p.getValue(at, j)); in testBasic() 61 assertEquals(p.getValue(at, j), i + j); in testBasic() 72 assertEquals(p.getValue(i, j), i * j); in testBasic() 90 assertEquals(p.getValue(i, j), expect); in testBasic() 109 assertEquals(p.getValue(i, j), expect); in testBasic() 122 assertEquals(p.getValue(i, j), i * j); in testBasic() 143 assertEquals(p.getValue(i, j), i * j); in testBasic() 149 assertEquals(p.getValue(i, j), (i + height - p.size()) * j); in testBasic()
|
/frameworks/base/core/java/android/animation/ |
D | KeyframeSet.java | 163 public Object getValue(float fraction) { in getValue() method in KeyframeSet 170 return mEvaluator.evaluate(fraction, mFirstKeyframe.getValue(), in getValue() 171 mLastKeyframe.getValue()); in getValue() 182 return mEvaluator.evaluate(intervalFraction, mFirstKeyframe.getValue(), in getValue() 183 nextKeyframe.getValue()); in getValue() 193 return mEvaluator.evaluate(intervalFraction, prevKeyframe.getValue(), in getValue() 194 mLastKeyframe.getValue()); in getValue() 207 return mEvaluator.evaluate(intervalFraction, prevKeyframe.getValue(), in getValue() 208 nextKeyframe.getValue()); in getValue() 213 return mLastKeyframe.getValue(); in getValue() [all …]
|
D | Keyframe.java | 173 public abstract Object getValue(); in getValue() method in Keyframe 253 public Object getValue() { in getValue() method in Keyframe.ObjectKeyframe 296 public Object getValue() { in getValue() method in Keyframe.IntKeyframe 340 public Object getValue() { in getValue() method in Keyframe.FloatKeyframe
|
D | FloatKeyframeSet.java | 44 public Object getValue(float fraction) { in getValue() method in FloatKeyframeSet 130 return ((Number)mKeyframes.get(mNumKeyframes - 1).getValue()).floatValue(); in getFloatValue()
|
D | IntKeyframeSet.java | 44 public Object getValue(float fraction) { in getValue() method in IntKeyframeSet 129 return ((Number)mKeyframes.get(mNumKeyframes - 1).getValue()).intValue(); in getIntValue()
|
/frameworks/compile/linkloader/include/impl/ |
D | ELFSymbol.hxx | 106 PRINT_LINT("Value", getValue() ); in print() 120 setw(7) << getValue() << in print() 169 my_addr =const_cast<unsigned char *>(&st[0] + (off_t)getValue()); in getAddress() 176 uint32_t *p = (uint32_t *)(&st[0] + (size_t)getValue()); in getAddress() 195 std::max((size_t)getValue(), sizeof(void*)), in getAddress() 200 my_addr = memalign(std::max((size_t)getValue(), sizeof(void *)), in getAddress() 209 size_t align = (size_t)getValue(); in getAddress() 244 my_addr = const_cast<unsigned char *>(&st[0] + (off_t)getValue()); in getAddress() 274 my_addr = const_cast<unsigned char *>(&st[0] + (off_t)getValue()); in getAddress() 303 my_addr = const_cast<unsigned char *>(&st[0] + (off_t)getValue()); in getAddress()
|
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/ |
D | BridgeResources.java | 178 return ResourceHelper.getColor(value.getSecond().getValue()); in getColor() 221 String v = resValue.getValue(); in getText() 251 File xml = new File(value.getValue()); in getLayout() 264 "Failed to configure parser for " + value.getValue(), e, null /*data*/); in getLayout() 288 File xml = new File(value.getValue()); in getAnimation() 298 "Failed to configure parser for " + value.getValue(), e, null /*data*/); in getAnimation() 333 String v = resValue.getValue(); in getDimension() 367 String v = resValue.getValue(); in getDimensionPixelOffset() 395 String v = resValue.getValue(); in getDimensionPixelSize() 423 String v = resValue.getValue(); in getInteger() [all …]
|
D | BridgeTypedArray.java | 139 return mResourceData[index].getValue(); in getText() 160 return mResourceData[index].getValue(); in getString() 184 String s = mResourceData[index].getValue(); in getBoolean() 210 String s = mResourceData[index].getValue(); in getInt() 278 String s = mResourceData[index].getValue(); in getFloat() 346 String value = resValue.getValue(); in getColorStateList() 433 String s = mResourceData[index].getValue(); in getDimension() 505 String s = mResourceData[index].getValue(); in getDimensionPixelSize() 560 String s = mResourceData[index].getValue(); in getDimension() 610 String value = mResourceData[index].getValue(); in getFraction() [all …]
|
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/ |
D | PlaybackGraphs.java | 50 public double getValue(TileData[] frame); in getValue() method 61 public double getValue(TileData[] frame) { 78 public double getValue(TileData[] frame) { 105 public double getValue(double sortedValues[]); in getValue() method 124 public double getValue(double[] sortedValues) { 134 public double getValue(double[] sortedValues) { 144 public double getValue(double[] sortedValues) { 181 double absoluteValue = s.getValue(frame); in setData() 201 Stats[statIndex].getValue(metricValues); in setData()
|
/frameworks/base/sax/tests/saxtests/src/android/sax/ |
D | SafeSaxTest.java | 246 String url = attributes.getValue("", "url"); in newContentHandler() 256 String url = attributes.getValue("", "url"); in newContentHandler() 266 String url = attributes.getValue("", "url"); in newContentHandler() 304 String seconds = attributes.getValue("", "seconds"); in newContentHandler() 313 String viewCount = attributes.getValue("", "viewCount"); in newContentHandler() 322 String average = attributes.getValue("", "average"); in newContentHandler() 390 String url = attributes.getValue("", "url"); in startElement() 398 String url = attributes.getValue("", "url"); in startElement() 406 String url = attributes.getValue("", "url"); in startElement() 427 attributes.getValue("", "seconds"), 0); in startElement() [all …]
|
/frameworks/base/drm/common/ |
D | DrmMetadata.cpp | 39 if (NULL != getValue(&key)) { in get() 40 return String8(getValue(&key)); in get() 47 const char* DrmMetadata::getValue(const String8* key) const { in getValue() function in DrmMetadata 61 return getValue(key); in getAsByteArray()
|
D | DrmConstraints.cpp | 44 if (NULL != getValue(&key)) { in get() 45 return String8(getValue(&key)); in get() 50 const char* DrmConstraints::getValue(const String8* key) const { in getValue() function in DrmConstraints 58 return getValue(key); in getAsByteArray()
|
/frameworks/ex/common/tests/src/com/android/common/ |
D | Rfc822ValidatorTest.java | 55 assertEquals(e.getValue(), validator.fixText(e.getKey()).toString()); in testEmailValidator() 70 assertEquals(e.getValue(), validator.fixText(e.getKey()).toString()); in testEmailValidatorNullDomain() 86 assertEquals(e.getValue(), validator.fixText(e.getKey()).toString()); in testEmailValidatorRemoveInvalid()
|
/frameworks/base/core/java/android/text/ |
D | DynamicLayout.java | 373 return mInts.getValue(line, TOP); in getLineTop() 378 return mInts.getValue(line, DESCENT); in getLineDescent() 383 return mInts.getValue(line, START) & START_MASK; in getLineStart() 388 return (mInts.getValue(line, TAB) & TAB_MASK) != 0; in getLineContainsTab() 393 return mInts.getValue(line, DIR) >> DIR_SHIFT; in getParagraphDirection() 398 return mObjects.getValue(line, 0); in getLineDirections() 466 return mInts.getValue(line, ELLIPSIS_START); in getEllipsisStart() 475 return mInts.getValue(line, ELLIPSIS_COUNT); in getEllipsisCount()
|
/frameworks/base/libs/utils/ |
D | BlobCache.cpp | 102 sp<Blob> oldValueBlob(mCacheEntries[index].getValue()); in set() 143 sp<Blob> valueBlob(mCacheEntries[index].getValue()); in get() 169 mTotalSize -= entry.getKey()->getSize() + entry.getValue()->getSize(); in clean() 236 sp<BlobCache::Blob> BlobCache::CacheEntry::getValue() const { in getValue() function in android::BlobCache::CacheEntry
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
D | ImportTestProvider.java | 98 Object value = entry.getValue(); in applyBatch() 185 final Object value = entry.getValue(); in convertToEasilyReadableString() 200 final String value = entry.getValue(); in convertToEasilyReadableString() 220 final Object value = entry.getValue(); in equalsForContentValues()
|
/frameworks/opt/calendar/src/com/android/calendarcommon/ |
D | RecurrenceSet.java | 183 String dtstart = dtstartProperty.getValue(); in populateContentValues() 455 return durationProperty.getValue(); in computeDuration() 471 end.parse(dtendProperty.getValue()); in computeDuration() 490 return properties.get(0).getValue(); in flattenProperties() 504 sb.append(property.getValue()); in flattenProperties() 516 return tzidParam.value + ";" + recurrence.getValue(); in extractDates() 518 return recurrence.getValue(); in extractDates()
|
/frameworks/base/core/java/android/content/res/ |
D | Resources.java | 539 getValue(id, value, true); in getDimension() 571 getValue(id, value, true); in getDimensionPixelOffset() 605 getValue(id, value, true); in getDimensionPixelSize() 636 getValue(id, value, true); in getFraction() 663 getValue(id, value, true); in getDrawable() 749 getValue(id, value, true); in getColor() 780 getValue(id, value, true); in getColorStateList() 801 getValue(id, value, true); in getBoolean() 826 getValue(id, value, true); in getInteger() 944 getValue(id, value, true); in openRawResource() [all …]
|
/frameworks/base/core/java/com/android/internal/preference/ |
D | YesNoPreference.java | 75 public boolean getValue() { in getValue() method in YesNoPreference 104 myState.wasPositiveResult = getValue(); in onSaveInstanceState()
|
/frameworks/base/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/ |
D | FwdLockEngine.cpp | 369 ConvertSession *convSession = convertSessionMap.getValue(convertId); 406 ConvertSession *convSession = convertSessionMap.getValue(convertId); 523 DecodeSession* session = decodeSessionMap.getValue(decryptHandle->decryptId); 589 DecodeSession* session = decodeSessionMap.getValue(decryptHandle->decryptId); 614 DecodeSession* session = decodeSessionMap.getValue(decryptHandle->decryptId); 642 (NULL != (decoderSession = decodeSessionMap.getValue(decryptHandle->decryptId))) &&
|
/frameworks/base/core/java/android/net/ |
D | LinkCapabilities.java | 315 sb.append(entry.getValue()); in toString() 330 dest.writeString(entry.getValue()); in writeToParcel()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | RenderSessionImpl.java | 978 TypedValue typedValue = ResourceHelper.getValue("status_bar_height", in findStatusBar() 979 value.getValue(), true /*requireUnit*/); in findStatusBar() 1011 TypedValue typedValue = ResourceHelper.getValue("actionBarSize", value.getValue(), in findActionBar() 1036 TypedValue typedValue = ResourceHelper.getValue("windowTitleSize", in findActionBar() 1037 value.getValue(), true /*requireUnit*/); in findActionBar() 1059 TypedValue typedValue = ResourceHelper.getValue("status_bar_height", in findSystemBar() 1060 value.getValue(), true /*requireUnit*/); in findSystemBar() 1079 if (value == null || value.getValue() == null) { in getBooleanThemeValue() 1083 return XmlUtils.convertValueToBoolean(value.getValue(), defaultValue); in getBooleanThemeValue()
|
/frameworks/base/test-runner/src/android/test/mock/ |
D | MockResources.java | 172 public void getValue(int id, TypedValue outValue, boolean resolveRefs) in getValue() method in MockResources 178 public void getValue(String name, TypedValue outValue, boolean resolveRefs) in getValue() method in MockResources
|
/frameworks/base/tests/TileBenchmark/tests/src/com/test/tilebenchmark/ |
D | PerformanceTest.java | 59 mDataMap.put(e.getKey(), aggVal + e.getValue()); in aggregate() 67 b.putDouble(e.getKey(), e.getValue() / count); in getBundle()
|