Searched refs:pbase (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/util/ |
D | TypedValue.java | 577 public static float complexToFraction(int data, float base, float pbase) in complexToFraction() argument 583 return complexToFloat(data) * pbase; in complexToFraction() 601 public float getFraction(float base, float pbase) in getFraction() argument 603 return complexToFraction(data, base, pbase); in getFraction()
|
/frameworks/base/core/java/android/content/res/ |
D | TypedArray.java | 885 public float getFraction(@StyleableRes int index, int base, int pbase, float defValue) { in getFraction() argument 898 return TypedValue.complexToFraction(data[index + STYLE_DATA], base, pbase); in getFraction()
|
D | Resources.java | 850 public float getFraction(@FractionRes int id, int base, int pbase) { in getFraction() argument 855 return TypedValue.complexToFraction(value.data, base, pbase); in getFraction()
|
/frameworks/layoutlib/bridge/src/android/content/res/ |
D | BridgeTypedArray.java | 540 public float getFraction(int index, int base, int pbase, float defValue) { in getFraction() argument 547 return mValue.getFraction(base, pbase); in getFraction()
|