Lines Matching refs:i

108 	for( var i=0; i<this.wordFlags.length; i++ ) {
109 this.wordFlags[i] = [];
160 for( var i = ti; i < this.wordWin.textInputs.length; i++ ) {
161 for( var j = 0; j < this.wordWin.totalWords( i ); j++ ) {
162 if(( i == ti && j > wi ) || i > ti ) {
166 if(( this.wordWin.getTextVal( i, j ) == s_word_to_repl )
167 && ( !this.wordFlags[i][j] )) {
168 this._setAsIgnored( i, j, this.fromIgnrAll );
231 for( var i = ti; i < this.wordWin.textInputs.length; i++ ) {
232 for( var j = 0; j < this.wordWin.totalWords( i ); j++ ) {
233 if(( i == ti && j > wi ) || i > ti ) {
237 if(( this.wordWin.getTextVal( i, j ) == s_word_to_repl )
238 && ( !this.wordFlags[i][j] )) {
239 this._setWordText( i, j, newspell, this.fromReplAll );
283 for( var i = 0; i < this.textInputs.length; i++ ) {
286 if( this.wordWin.textInputs[i] ) {
287 this.textInputs[i].value = this.wordWin.textInputs[i];
336 var i, j, origSpell ;
342 for( i = text_idx; i < this.wordWin.textInputs.length; i++ ) {
343 for( j = 0; j < this.wordWin.totalWords( i ); j++ ) {
344 if(( i == text_idx && j >= idx ) || i > text_idx ) {
345 origSpell = this.wordWin.originalSpellings[i][j];
347 this._setWordText ( i, j, origSpell, undefined );
357 for( i = text_idx; i < this.wordWin.textInputs.length; i++ ) {
358 for( j = 0; j < this.wordWin.totalWords( i ); j++ ) {
359 if(( i == text_idx && j >= idx ) || i > text_idx ) {
360 origSpell = this.wordWin.originalSpellings[i][j];
362 this.wordFlags[i][j] = undefined;
443 for( var i = 0; i < this.wordFlags.length; i++ ) {
444 for( var j = 0; j < this.wordFlags[i].length; j++ ) {
445 if(( this.wordFlags[i][j] == this.replWordFlag )
446 || ( this.wordFlags[i][j] == this.replAllFlag )
447 || ( this.wordFlags[i][j] == this.fromReplAll )) {
465 for( var i = 0; i < document.forms.length; i++ ) {
466 for( var j = 0; j < document.forms[i].elements.length; j++ ) {
467 if( document.forms[i].elements[j].type.match( inputPattern )) {
468 inputs[inputs.length] = document.forms[i].elements[j];