Searched refs:pbase (Results 1 - 4 of 4) sorted by relevance
/frameworks/base/core/java/android/util/ |
H A D | TypedValue.java | 364 * @param pbase The parent base value of this fraction. In other 371 public static float complexToFraction(int data, float base, float pbase) argument 377 return complexToFloat(data) * pbase; 388 * @param pbase The parent base value of this fraction. In other 395 public float getFraction(float base, float pbase) argument 397 return complexToFraction(data, base, pbase);
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
H A D | BridgeTypedArray.java | 511 * @param pbase The parent base value of this fraction. In other 521 public float getFraction(int index, int base, int pbase, float defValue) { argument 532 return mValue.getFraction(base, pbase);
|
/frameworks/base/core/java/android/content/res/ |
H A D | TypedArray.java | 529 * @param pbase The parent base value of this fraction. In other 538 public float getFraction(int index, int base, int pbase, float defValue) { argument 546 data[index+AssetManager.STYLE_DATA], base, pbase);
|
H A D | Resources.java | 541 * @param pbase The parent base value of this fraction. In other 550 public float getFraction(int id, int base, int pbase) { argument 555 return TypedValue.complexToFraction(value.data, base, pbase);
|
Completed in 338 milliseconds