Lines Matching refs:i

108 	for( var i=0; i<this.wordFlags.length; i++ ) {
109 this.wordFlags[i] = [];
155 for( var i = ti; i < this.wordWin.textInputs.length; i++ ) {
156 for( var j = 0; j < this.wordWin.totalWords( i ); j++ ) {
157 if(( i == ti && j > wi ) || i > ti ) {
161 if(( this.wordWin.getTextVal( i, j ) == s_word_to_repl )
162 && ( !this.wordFlags[i][j] )) {
163 this._setAsIgnored( i, j, this.fromIgnrAll );
220 for( var i = ti; i < this.wordWin.textInputs.length; i++ ) {
221 for( var j = 0; j < this.wordWin.totalWords( i ); j++ ) {
222 if(( i == ti && j > wi ) || i > ti ) {
226 if(( this.wordWin.getTextVal( i, j ) == s_word_to_repl )
227 && ( !this.wordFlags[i][j] )) {
228 this._setWordText( i, j, newspell, this.fromReplAll );
271 for( var i = 0; i < this.textInputs.length; i++ ) {
274 if( this.wordWin.textInputs[i] ) {
275 this.textInputs[i].value = this.wordWin.textInputs[i];
324 var i, j, origSpell ;
330 for( i = text_idx; i < this.wordWin.textInputs.length; i++ ) {
331 for( j = 0; j < this.wordWin.totalWords( i ); j++ ) {
332 if(( i == text_idx && j >= idx ) || i > text_idx ) {
333 origSpell = this.wordWin.originalSpellings[i][j];
335 this._setWordText ( i, j, origSpell, undefined );
345 for( i = text_idx; i < this.wordWin.textInputs.length; i++ ) {
346 for( j = 0; j < this.wordWin.totalWords( i ); j++ ) {
347 if(( i == text_idx && j >= idx ) || i > text_idx ) {
348 origSpell = this.wordWin.originalSpellings[i][j];
350 this.wordFlags[i][j] = undefined;
431 for( var i = 0; i < this.wordFlags.length; i++ ) {
432 for( var j = 0; j < this.wordFlags[i].length; j++ ) {
433 if(( this.wordFlags[i][j] == this.replWordFlag )
434 || ( this.wordFlags[i][j] == this.replAllFlag )
435 || ( this.wordFlags[i][j] == this.fromReplAll )) {
453 for( var i = 0; i < document.forms.length; i++ ) {
454 for( var j = 0; j < document.forms[i].elements.length; j++ ) {
455 if( document.forms[i].elements[j].type.match( inputPattern )) {
456 inputs[inputs.length] = document.forms[i].elements[j];