Searched defs:pbase (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/content/res/
H A DTypedArray.java648 * @param pbase The parent base value of this fraction. In other
657 public float getFraction(int index, int base, int pbase, float defValue) { argument
669 data[index+AssetManager.STYLE_DATA], base, pbase);
H A DResources.java667 * @param pbase The parent base value of this fraction. In other
676 public float getFraction(int id, int base, int pbase) { argument
684 return TypedValue.complexToFraction(value.data, base, pbase);
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeTypedArray.java499 * @param pbase The parent base value of this fraction. In other
509 public float getFraction(int index, int base, int pbase, float defValue) { argument
516 return mValue.getFraction(base, pbase);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DTintTypedArray.java140 public float getFraction(int index, int base, int pbase, float defValue) { argument
141 return mWrapped.getFraction(index, base, pbase, defValue);
/frameworks/base/core/java/android/util/
H A DTypedValue.java360 * @param pbase The parent base value of this fraction. In other
367 public static float complexToFraction(int data, float base, float pbase) argument
373 return complexToFloat(data) * pbase;
384 * @param pbase The parent base value of this fraction. In other
391 public float getFraction(float base, float pbase) argument
393 return complexToFraction(data, base, pbase);

Completed in 151 milliseconds