Home | History | Annotate | Download | only in tts

Lines Matching refs:mFeatures

68     private final Set<String> mFeatures;
81 this.mFeatures = features;
90 this.mFeatures = new HashSet<String>();
91 Collections.addAll(this.mFeatures, in.readStringArray());
101 dest.writeStringList(new ArrayList<String>(mFeatures));
182 return mFeatures;
193 .append(", features: ").append(mFeatures.toString())
201 result = prime * result + ((mFeatures == null) ? 0 : mFeatures.hashCode());
222 if (mFeatures == null) {
223 if (other.mFeatures != null) {
226 } else if (!mFeatures.equals(other.mFeatures)) {