Home | History | Annotate | Download | only in platform

Lines Matching defs:parents

295                         String parents = parentNode == null ? null : parentNode.getNodeValue();
299 if (parents != null) {
301 parseStyleableParents(parents, mStyleMap, unknownParents);
335 // Simplify parents names. See SDK Bug 3125910.
354 * Parses the "parents" attribute from a <declare-styleable>.
362 * - There can be one or more parents, separated by whitespace or commas. </br>
366 * Styleables do not usually need to declare their parent chain (e.g. the grand-parents
377 * @param parents The parents string to parse. Must not be null or empty.
379 * @param unknownParents A map of all unknown parents collected here.
380 * @return The array of terminal parent names parsed from the parents string.
382 private String[] parseStyleableParents(String parents,
388 for (String parent : parents.split("[ \t\n\r\f,|]")) { //$NON-NLS-1$
395 // parents and only record the terminal one.