/opengrok/src/org/opensolaris/opengrok/util/ |
H A D | Interner.java | 53 private final Map<T, T> map = new HashMap<>(); field in class:Interner 76 T interned = map.get(instance); 80 map.put(interned, interned);
|
/opengrok/egrok/src/org/opensolaris/opengrok/egrok/ui/ |
H A D | ResultsView.java | 29 public void setHits(Map<String, HitContainer> map) { argument 30 viewer.setHits(map);
|
H A D | ResultsControl.java | 55 private Map<String, HitContainer> map; field in class:ResultsControl.ResultsContentProvider 67 if (map == null) { 69 } else if (map.isEmpty()) { 76 return map.get(key).getHits(); 82 map.values()); 101 public void setHits(Map<String, HitContainer> map) { argument 102 this.map = map; 106 return map; 303 public void setHits(Map<String, HitContainer> map) { argument [all...] |
/opengrok/test/org/opensolaris/opengrok/web/ |
H A D | ProjectHelperTestBase.java | 68 Map<Project, List<RepositoryInfo>> map) { 70 Project p = createProject(index, number, grouped, allowed, true, rps, prjs, map); 77 List<RepositoryInfo> infos = map.get(p); 82 map.put(p, infos); 95 Map<Project, List<RepositoryInfo>> map) { 111 Map<Project, List<RepositoryInfo>> map, 120 pattern += createProject(i, 1, true, false, false, rps, prjs, map).getDescription() + "|"; 121 pattern += createProject(i, 2, true, false, false, rps, prjs, map).getDescription() + "|"; 123 pattern += createProject(i, 1, true, true, false, rps, prjs, map).getDescription() + "|"; 124 pattern += createProject(i, 2, true, true, false, rps, prjs, map) 60 createRepository( int index, int number, int cnt, boolean grouped, boolean allowed, List<RepositoryInfo> rps, List<Project> prjs, Map<Project, List<RepositoryInfo>> map) argument 87 createProject( int index, int number, boolean grouped, boolean allowed, boolean repository, List<RepositoryInfo> rps, List<Project> prjs, Map<Project, List<RepositoryInfo>> map) argument 106 createGroups( int start, int cnt, boolean allowed, List<RepositoryInfo> rps, Map<Project, List<RepositoryInfo>> map, List<Project> prjs, List<Group> grps) argument 149 setRepositoriesMap(Map<Project, List<RepositoryInfo>> map) argument [all...] |
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/ |
H A D | ArchiveParser.java | 155 final public void newPhrases(Map map) throws ParseException { argument 165 newPhrase(map); 295 final public void newPhrase(Map map) throws ParseException { argument 315 if (map != null) map.put(key, values.toString());
|
/opengrok/egrok/lib/ |
H A D | json-simple-1.1.1.jar | ... 3Cinit%3E" <init> (java.util.Map) java.util.Map map
public static void writeJSONString ... |
/opengrok/lib/ |
H A D | json-simple-1.1.1.jar | ... 3Cinit%3E" <init> (java.util.Map) java.util.Map map
public static void writeJSONString ... |
H A D | swing-layout-0.9.jar | ... .Map CONTAINER_GAPS private static final java.util.Map INDENT_GAPS private static final java.util.Map VISUAL_MARGINS ... |
H A D | bcel-6.0.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ... |
/opengrok/src/org/opensolaris/opengrok/history/ |
H A D | JDBCHistoryCache.java | 1072 * Get a map from author names to their ids in the database. The authors 1078 * @return a map from author names to author ids 1083 HashMap<String, Integer> map = new HashMap<>(); 1088 map.put(rs.getString(1), rs.getInt(2)); 1096 if (!map.containsKey(author)) { 1101 map.put(author, id); 1106 return map; 1117 * @param dirMap a map which will be filled with directory names and ids 1118 * @param fileMap a map which will be filled with file names and ids 1135 // Add the file to the database and to the map i 1173 populateFileOrDirMap( PreparedStatement ps, int reposId, Map<String, Integer> map) argument 1198 addAllDirs( PreparedStatement ps, int reposId, String fullPath, Map<String, Integer> map) argument [all...] |