Searched refs:typeOrganizedRuleMap (Results 1 – 1 of 1) sorted by relevance
50 Map<Integer, Map<String, List<Rule>>> typeOrganizedRuleMap = new HashMap(); in splitRulesIntoIndexBuckets() local51 typeOrganizedRuleMap.put(NOT_INDEXED, new HashMap()); in splitRulesIntoIndexBuckets()52 typeOrganizedRuleMap.put(PACKAGE_NAME_INDEXED, new HashMap<>()); in splitRulesIntoIndexBuckets()53 typeOrganizedRuleMap.put(APP_CERTIFICATE_INDEXED, new HashMap<>()); in splitRulesIntoIndexBuckets()69 if (!typeOrganizedRuleMap.get(ruleIndexType).containsKey(ruleKey)) { in splitRulesIntoIndexBuckets()70 typeOrganizedRuleMap.get(ruleIndexType).put(ruleKey, new ArrayList()); in splitRulesIntoIndexBuckets()73 typeOrganizedRuleMap.get(ruleIndexType).get(ruleKey).add(rule); in splitRulesIntoIndexBuckets()76 return typeOrganizedRuleMap; in splitRulesIntoIndexBuckets()