Home | History | Annotate | Download | only in layout

Lines Matching refs:idMap

335         Map<String, Pair<String, String>> idMap = new HashMap<String, Pair<String, String>>();
338 collectIds(idMap, elements);
340 idMap = remapIds(targetNode, idMap);
343 return idMap;
347 * Fills idMap with a map String id => tuple (String id, String fqcn) where
354 Map<String, Pair<String, String>> idMap,
361 idMap.put(id, Pair.of(id, element.getFqcn()));
365 collectIds(idMap, element.getInnerElements());
368 return idMap;
375 Map<String, Pair<String, String>> idMap) {
381 for (Map.Entry<String, Pair<String, String>> entry : idMap.entrySet()) {
522 * Copies all the attributes from oldElement to newNode. Uses the idMap to
527 Map<String, Pair<String, String>> idMap, AttributeFilter filter) {
537 if (idMap.containsKey(value)) {
538 value = idMap.get(value).getFirst();
554 * Attributes are adjusted by calling addAttributes with idMap as necessary,
558 Map<String, Pair<String, String>> idMap) {
564 addAttributes(childNode, element, idMap, null /* filter */);
565 addInnerElements(childNode, element, idMap);
583 final Map<String, Pair<String, String>> idMap = getDropIdMap(targetNode, elements,
604 addAttributes(newChild, element, idMap, DEFAULT_ATTR_FILTER);
605 addInnerElements(newChild, element, idMap);