Lines Matching refs:index
21 index: number; property
89 let index; variable
96 index = this.lastSearchIndex;
97 index < this.lrcItems.length - 1;
98 ++index
101 position >= this.lrcItems[index].time &&
102 position < this.lrcItems[index + 1].time
104 this.lastSearchIndex = index;
105 return this.lrcItems[index];
109 for (index = 0; index < this.lastSearchIndex; ++index) {
111 position >= this.lrcItems[index].time &&
112 position < this.lrcItems[index + 1].time
114 this.lastSearchIndex = index;
115 return this.lrcItems[index];
119 index = this.lrcItems.length - 1;
120 this.lastSearchIndex = index;
121 return this.lrcItems[index];
216 index: j,
224 index: j,
231 lrcItems = raw.split('\n').map((_, index) => ({
234 index,