Home | History | Annotate | Download | only in layout

Lines Matching defs:fqcn

330      * old-id => tuple (String new-id, String fqcn) where fqcn is the FQCN of
347 * Fills idMap with a map String id => tuple (String id, String fqcn) where
348 * fqcn is the FQCN of the element (in case we want to generate new IDs
408 protected static String findNewId(String fqcn, Set<String> existingIdSet) {
409 // Get the last component of the FQCN (e.g. "android.view.Button" =>
411 String name = fqcn.substring(fqcn.lastIndexOf('.') + 1);
561 String fqcn = element.getFqcn();
562 INode childNode = newNode.appendChild(fqcn);
593 String fqcn = element.getFqcn();
595 INode newChild = targetNode.insertChildAt(fqcn, insertPos);