Lines Matching refs:strands

838         val strands: HashMap<Int, DNAStrand> = HashMap<Int, DNAStrand>()  in createDNAStrands()  constant
843 strands.put(CONFLICT_COLOR, blackStrand) in createDNAStrands()
863 addAllDayToStrands(currEvent, strands, firstJulianDay, dayXs.size) in createDNAStrands()
915 addNewSegment(segments, event, strands, firstJulianDay, 0, minMinutes) in createDNAStrands()
963 strands.get(rhs.color)?.count = strands.get(rhs.color)?.count?.inc() as Int in createDNAStrands()
984 strands.get(lhs.color)?.count = strands.get(lhs.color)?.count?.inc() as Int in createDNAStrands()
1000 strands.get(currSegment.color)?.count = in createDNAStrands()
1001 strands.get(currSegment.color)?.count?.dec() as Int in createDNAStrands()
1014 strands.get(currSegment.color)?.count = in createDNAStrands()
1015 strands.get(currSegment.color)?.count?.dec() as Int in createDNAStrands()
1027 strands.get(currSegment.color)?.count = in createDNAStrands()
1028 strands.get(currSegment.color)?.count?.dec() as Int in createDNAStrands()
1030 strands.get(CONFLICT_COLOR)?.count = in createDNAStrands()
1031 strands.get(CONFLICT_COLOR)?.count?.inc() as Int in createDNAStrands()
1039 segments, event, strands, firstJulianDay, lastSegment.endMinute, in createDNAStrands()
1044 weaveDNAStrands(segments, firstJulianDay, strands, top, bottom, dayXs) in createDNAStrands()
1045 return strands in createDNAStrands()
1051 strands: HashMap<Int, DNAStrand>, in addAllDayToStrands()
1055 val strand = getOrCreateStrand(strands, CONFLICT_COLOR) in addAllDayToStrands()
1079 strands: HashMap<Int, DNAStrand>, in weaveDNAStrands()
1085 val strandIterator = strands.values.iterator() in weaveDNAStrands()
1098 val strand: DNAStrand? = strands.get(segment.color) in weaveDNAStrands()
1161 strands: HashMap<Int, DNAStrand>, in addNewSegment()
1182 addNewSegment(segments, lhs, strands, firstJulianDay, minStart, minMinutes) in addNewSegment()
1212 val strand = getOrCreateStrand(strands, segment.color) in addNewSegment()
1220 private fun getOrCreateStrand(strands: HashMap<Int, DNAStrand>, color: Int): DNAStrand? { in getOrCreateStrand()
1221 var strand: DNAStrand? = strands.get(color) in getOrCreateStrand()
1226 strands.put(strand.color, strand) in getOrCreateStrand()