Home | History | Annotate | Download | only in content

Lines Matching refs:mCategories

3009     private HashSet<String> mCategories;
3032 if (o.mCategories != null) {
3033 this.mCategories = new HashSet<String>(o.mCategories);
3057 if (o.mCategories != null) {
3058 this.mCategories = new HashSet<String>(o.mCategories);
3697 return mCategories != null && mCategories.contains(category);
3710 return mCategories;
4518 if (mCategories == null) {
4519 mCategories = new HashSet<String>();
4521 mCategories.add(category.intern());
4533 if (mCategories != null) {
4534 mCategories.remove(category);
4535 if (mCategories.size() == 0) {
4536 mCategories = null;
5620 if (other.mCategories != null
5621 && (mCategories == null || (flags&FILL_IN_CATEGORIES) != 0)) {
5622 if (other.mCategories != null) {
5623 mCategories = new HashSet<String>(other.mCategories);
5789 if (mCategories != other.mCategories) {
5790 if (mCategories != null) {
5791 if (!mCategories.equals(other.mCategories)) {
5795 if (!other.mCategories.equals(mCategories)) {
5829 if (mCategories != null) {
5830 code += mCategories.hashCode();
5871 if (mCategories != null) {
5877 Iterator<String> i = mCategories.iterator();
6026 if (mCategories != null) {
6027 for (String category : mCategories) {
6095 if (mCategories != null) {
6096 out.writeInt(mCategories.size());
6097 for (String category : mCategories) {
6143 mCategories = new HashSet<String>();
6146 mCategories.add(in.readString().intern());
6149 mCategories = null;