• Home
  • Raw
  • Download

Lines Matching refs:strand

1067         DNAStrand strand = getOrCreateStrand(strands, CONFLICT_COLOR);  in addAllDayToStrands()  local
1069 if (strand.allDays == null) { in addAllDayToStrands()
1070 strand.allDays = new int[numDays]; in addAllDayToStrands()
1076 if (strand.allDays[i] != 0) { in addAllDayToStrands()
1078 strand.allDays[i] = CONFLICT_COLOR; in addAllDayToStrands()
1081 strand.allDays[i] = event.color; in addAllDayToStrands()
1093 DNAStrand strand = strandIterator.next(); in weaveDNAStrands() local
1094 if (strand.count < 1 && strand.allDays == null) { in weaveDNAStrands()
1098 strand.points = new float[strand.count * 4]; in weaveDNAStrands()
1099 strand.position = 0; in weaveDNAStrands()
1104 DNAStrand strand = strands.get(segment.color); in weaveDNAStrands() local
1122 strand.points[strand.position++] = x; in weaveDNAStrands()
1123 strand.points[strand.position++] = y0; in weaveDNAStrands()
1124 strand.points[strand.position++] = x; in weaveDNAStrands()
1125 strand.points[strand.position++] = y1; in weaveDNAStrands()
1199 DNAStrand strand = getOrCreateStrand(strands, segment.color); in addNewSegment() local
1200 strand.count++; in addNewSegment()
1207 DNAStrand strand = strands.get(color); in getOrCreateStrand() local
1208 if (strand == null) { in getOrCreateStrand()
1209 strand = new DNAStrand(); in getOrCreateStrand()
1210 strand.color = color; in getOrCreateStrand()
1211 strand.count = 0; in getOrCreateStrand()
1212 strands.put(strand.color, strand); in getOrCreateStrand()
1214 return strand; in getOrCreateStrand()