Home | History | Annotate | Download | only in res

Lines Matching defs:mResDir

23     final String mResDir;
33 mResDir = resDir;
42 hash = 31 * hash + (mResDir == null ? 0 : mResDir.hashCode());
66 if ((mResDir == null) && (peer.mResDir != null)) {
69 if ((mResDir != null) && (peer.mResDir == null)) {
72 if ((mResDir != null) && (peer.mResDir != null)) {
73 if (!mResDir.equals(peer.mResDir)) {