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

/frameworks/base/core/java/android/util/
H A DStateSet.java142 * Return whether the stateSet matches the desired stateSpec.
144 * @param stateSpec an array of required (if positive) or
148 public static boolean stateSetMatches(int[] stateSpec, int[] stateSet) { argument
150 return (stateSpec == null || isWildCard(stateSpec));
152 int stateSpecSize = stateSpec.length;
155 int stateSpecState = stateSpec[i];
202 * Return whether the state matches the desired stateSpec.
204 * @param stateSpec an array of required (if positive) or
208 public static boolean stateSetMatches(int[] stateSpec, in argument
[all...]

Completed in 524 milliseconds