Home | History | Annotate | Download | only in gle2

Lines Matching defs:mIncludes

97     private Map<String, List<String>> mIncludes = null;
100 * Reverse map of {@link #mIncludes}; points to other layouts that are including a
157 return mIncludes.get(includer);
218 if (mIncludes == null) {
226 mIncludes = new HashMap<String, List<String>>();
358 // Serialize the mIncludes map into a compact String. The mIncludedBy map can be
360 String encoded = encodeMap(mIncludes);
391 mIncludes = decodeMap(encoded);
395 mIncludedBy = new HashMap<String, List<String>>(2 * mIncludes.size());
396 for (Map.Entry<String, List<String>> entry : mIncludes.entrySet()) {
627 List<String> oldIncludes = mIncludes.get(includer);
637 mIncludes.put(includer, included);
752 if (mIncludes.size() > 0) {
753 Set<String> visiting = new HashSet<String>(mIncludes.size());
770 List<String> includes = mIncludes.get(from);
916 finder.mIncludes = new HashMap<String, List<String>>();