Lines Matching defs:root

214      * @param root Optional parent of the generated hierarchy.
215 * @return The root of the inflated hierarchy. If root was supplied,
216 * this is the root item; otherwise it is the root of the inflated
219 public T inflate(int resource, P root) {
220 return inflate(resource, root, root != null);
234 * @param root Optional parent of the generated hierarchy.
235 * @return The root of the inflated hierarchy. If root was supplied,
236 * this is the that; otherwise it is the root of the inflated
239 public T inflate(XmlPullParser parser, P root) {
240 return inflate(parser, root, root != null);
249 * @param root Optional root to be the parent of the generated hierarchy (if
251 * provides a set of values for root of the returned
254 * the root parameter?
255 * @return The root of the inflated hierarchy. If root was supplied and
256 * attachToRoot is true, this is root; otherwise it is the root of
259 public T inflate(int resource, P root, boolean attachToRoot) {
263 return inflate(parser, root, attachToRoot);
280 * @param root Optional to be the parent of the generated hierarchy (if
282 * provides a set of values for root of the returned
285 * the root parameter?
286 * @return The root of the inflated hierarchy. If root was supplied and
287 * attachToRoot is true, this is root; otherwise it is the root of
290 public T inflate(XmlPullParser parser, P root,
295 T result = (T) root;
298 // Look for the root node.
312 System.out.println("Creating root: "
316 // Temp is the root that was found in the xml
320 result = (T) onMergeRoots(root, attachToRoot, (P) xmlRoot);