Searched refs:realFqcn (Results 1 – 1 of 1) sorted by relevance
758 IViewRule loadRule(String realFqcn, String targetFqcn) { in loadRule() argument759 if (realFqcn == null || targetFqcn == null) { in loadRule()765 IViewRule rule = mRulesCache.get(realFqcn); in loadRule()766 if (rule != null || mRulesCache.containsKey(realFqcn)) { in loadRule()777 if (realFqcn.startsWith("android.") || //$NON-NLS-1$ in loadRule()778 realFqcn.equals(VIEW_MERGE) || in loadRule()779 realFqcn.endsWith(".GridLayout") || //$NON-NLS-1$ // Temporary special case in loadRule()783 realFqcn.startsWith("com.google.android.maps.")) { //$NON-NLS-1$ in loadRule()792 int dotIndex = realFqcn.lastIndexOf('.'); in loadRule()793 String baseName = realFqcn.substring(dotIndex+1); in loadRule()[all …]