Home | History | Annotate | Download | only in list

Lines Matching defs:mSections

29   private String[] mSections;
51 this.mSections = sections;
55 if (TextUtils.isEmpty(mSections[i])) {
56 mSections[i] = BLANK_HEADER_STRING;
57 } else if (!mSections[i].equals(BLANK_HEADER_STRING)) {
58 mSections[i] = mSections[i].trim();
68 return mSections;
72 if (section < 0 || section >= mSections.length) {
98 if (mSections != null) {
100 if (mSections.length > 0 && header.equals(mSections[0])) {
106 String[] tempSections = new String[mSections.length + 1];
111 tempSections[i] = mSections[i - 1];
114 mSections = tempSections;