Home
last modified time | relevance | path

Searched refs:blockIDs (Results 1 – 1 of 1) sorted by relevance

/external/emma/core/java12/com/vladium/emma/data/
DMethodDescriptor.java145 IntSet blockIDs = (IntSet) lineMap.get (line); in getLineMap() local
147 if (blockIDs == null) in getLineMap()
149 blockIDs = new IntSet (); in getLineMap()
150 lineMap.put (line, blockIDs); in getLineMap()
153 blockIDs.add (bl); in getLineMap()
162 final int [] blockIDs = ((IntSet) lineMap.get (line)).values (); in getLineMap() local
163 …if ($assert.ENABLED) $assert.ASSERT (blockIDs != null && blockIDs.length > 0, "wrong line mapping … in getLineMap()
165 lineMap.put (line, blockIDs); // overwrite IntSet as the value in getLineMap()