Searched defs:getDimension (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/content/res/
H A DTypedArray.java478 public float getDimension(int index, float defValue) { method in class:TypedArray
502 * {@link #getDimension}, except the returned value is converted to
513 * @see #getDimension
540 * {@link #getDimension}, except the returned value is converted to
552 * @see #getDimension
H A DResources.java595 public float getDimension(int id) throws NotFoundException { method in class:Resources
614 * {@link #getDimension}, except the returned value is converted to
627 * @see #getDimension
650 * {@link #getDimension}, except the returned value is converted to
664 * @see #getDimension
/frameworks/base/test-runner/src/android/test/mock/
H A DMockResources.java107 public float getDimension(int id) throws NotFoundException { method in class:MockResources
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeResources.java329 public float getDimension(int id) throws NotFoundException { method in class:BridgeResources
349 return mTmpValue.getDimension(getDisplayMetrics());
H A DBridgeTypedArray.java360 public float getDimension(int index, float defValue) { method in class:BridgeTypedArray
376 return mValue.getDimension(mBridgeResources.getDisplayMetrics());
385 * {@link #getDimension}, except the returned value is converted to
396 * @see #getDimension
401 return (int) getDimension(index, defValue);
407 * {@link #getDimension}, except the returned value is converted to
419 * @see #getDimension
425 return getDimension(index);
456 return getDimension(index);
475 private int getDimension(in method in class:BridgeTypedArray
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DTintTypedArray.java120 public float getDimension(int index, float defValue) { method in class:TintTypedArray
121 return mWrapped.getDimension(index, defValue);
H A DResourcesWrapper.java110 public float getDimension(int id) throws NotFoundException { method in class:ResourcesWrapper
111 return mResources.getDimension(id);
/frameworks/base/core/java/android/util/
H A DTypedValue.java369 public float getDimension(DisplayMetrics metrics) method in class:TypedValue
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFrameFormat.java101 public int getDimension(int i) { method in class:FrameFormat
220 int specDim = specification.getDimension(i);
221 if (specDim != SIZE_UNSPECIFIED && getDimension(i) != specDim) {
280 int specDim = specification.getDimension(i);
282 && getDimension(i) != SIZE_UNSPECIFIED
283 && getDimension(i) != specDim) {

Completed in 3686 milliseconds