Searched refs:pbase (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/util/
H A DTypedValue.java364 * @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/core/java/android/content/res/
H A DTypedArray.java529 * @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 DResources.java607 * @param pbase The parent base value of this fraction. In other
616 public float getFraction(int id, int base, int pbase) { argument
621 return TypedValue.complexToFraction(value.data, base, pbase);
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeTypedArray.java599 * @param pbase The parent base value of this fraction. In other
609 public float getFraction(int index, int base, int pbase, float defValue) { argument
625 return mValue.getFraction(base, pbase);

Completed in 91 milliseconds