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

/frameworks/base/core/java/android/util/
H A DStateSet.java54 * Return whether the stateSet matches the desired stateSpec.
56 * @param stateSpec an array of required (if positive) or
60 public static boolean stateSetMatches(int[] stateSpec, int[] stateSet) { argument
62 return (stateSpec == null || isWildCard(stateSpec));
64 int stateSpecSize = stateSpec.length;
67 int stateSpecState = stateSpec[i];
114 * Return whether the state matches the desired stateSpec.
116 * @param stateSpec an array of required (if positive) or
120 public static boolean stateSetMatches(int[] stateSpec, in argument
[all...]

Completed in 1015 milliseconds