Lines Matching refs:indexOf
29 let [index, next] = this.indexOf(text, tag);
67 [index, next] = this.indexOf(text, open, start);
73 [index, next] = this.indexOf(text, close, start);
86 indexOf (string, re, start=0) { method in MoaiEditor.MatchTools
89 const index = string.indexOf(re, start);
93 var indexOf = string.substring(start).search(re);
94 var index = (indexOf >= 0) ? (indexOf + start) : indexOf;
107 const index = string.indexOf(word);
189 const index = string.indexOf(search);
194 const index = string.indexOf(char);
256 const index = words.indexOf(word1);