PageRenderTime 334ms queryTime 27ms sortTime 3ms getByIdsTime 230ms findMatchingLines 14ms

100+ results results for 'i++; source:CodePlex' (334 ms)

Not the results you expected?
edpopup.js https://Triad.svn.codeplex.com/svn | JavaScript | 392 lines
                    
16var gTabbableTags=["A","BUTTON","TEXTAREA","INPUT","IFRAME"];
                    
17function disableTabIndexes(){if(document.all){var i=0;for(var j=0;j<gTabbableTags.length;j++){var tagElements=document.getElementsByTagName(gTabbableTags[j]);for(var k=0;k<tagElements.length;k++){gTabIndexes[i]=tagElements[k].tabIndex;tagElements[k].tabIndex="-1";i++;}}}}
                    
18function restoreTabIndexes(){if(document.all){var i=0;for(var j=0;j<gTabbableTags.length;j++){var tagElements=document.getElementsByTagName(gTabbableTags[j]);for(var k=0;k<tagElements.length;k++){tagElements[k].tabIndex=gTabIndexes[i];tagElements[k].tabEnabled=true;i++;}}}}
                    
                
RubyArrayTests.cs https://hg.codeplex.com/quartz | C# | 360 lines
                    
129                Assert(item.Equals(values[i]));
                    
130                i++;
                    
131            }
                    
                
WCFTenantMembershipProvider.cs https://SaaSCrab.svn.codeplex.com/svn | C# | 358 lines
                    
156                {
                    
157                    i++;
                    
158                }
                    
                
Program.cs https://mimoza.svn.codeplex.com/svn | C# | 379 lines
                    
71                            root[i] = (byte)Convert.ToInt16(c.ToString(), 16);
                    
72                            i++;
                    
73
                    
                
template_postgoods.js https://pinvoke.svn.codeplex.com/svn | JavaScript | 306 lines
                    
22        $("locus_1").options[i] = new Option(states[i-1].state, states[i-1].state);
                    
23        i++;
                    
24    }
                    
                
AttachmentUpload.aspx.cs https://ccflow.svn.codeplex.com/svn | C# | 236 lines
                    
126        {
                    
127            i++;
                    
128            this.Pub1.AddTR();
                    
                
Access.cs https://NBgeili.svn.codeplex.com/svn | C# | 222 lines
                    
76                    }
                    
77                    i++;
                    
78                }
                    
124                    }
                    
125                    i++;
                    
126                }
                    
                
FeedRdfXmlParser.cs https://infoservice.svn.codeplex.com/svn | C# | 124 lines
                    
85                        rFeed.Items.Add(feedItem);
                    
86                        i++;
                    
87                    }
                    
                
JsDecoder.js https://hg.codeplex.com/dtweet | JavaScript | 1 lines
                    
1function JsDecoder(){this.s="",this.len=0,this.i=0,this.lvl=0,this.code=[""],this.row=0,this.switches=[],this.lastWord="",this.nextChar="",this.prevChar="",this.isAssign=!1,this.decode=function(){this.s=this.s.replace(/[\r\n\f]+/g,"\n"),this.len=this.s.length;while(this.i<this.len){var n=this.s.charAt(this.i);this.charInit(),this.switch_c(n),this.i++}return this.code.join("\n")},this.switch_c=function(n){switch(n){case"\n":this.linefeed();break;case" ":case"\t":this.space();break;case"{":this.blockBracketOn();break;case"}":this.blockBracketOff();break;case":":this.colon();break;case";":this.semicolon();break;case"(":this.bracketOn();break;case")":this.bracketOff();break;case"[":this.squareBracketOn();break;case"]":this.squareBracketOff();break;case'"':case"'":this.quotation(n);break;case"/":"/"==this.nextChar?this.lineComment():"*"==this.nextChar?this.comment():this.slash();break;case",":this.comma();break;case".":this.dot();break;case"~":case"^":this.symbol1(n);break;case"-":case"+":case"*":case"%":case"<":case"=":case">":case"?":case":":case"&":case"|":case"/":this.symbol2(n);break;case"!":"="==this.nextChar?this.symbol2(n):this.symbol1(n);break;default:/\w/.test(n)?this.alphanumeric(n):this.unknown(n)}n=this.s.charAt(this.i),/\w/.test(n)||(this.lastWord="")},this.blockBracketOn=function(){var t,r,i;this.isAssign=!1,t=this.nextNonWhite(this.i);if("}"==t){r=this.prevChar==")"?" ":"",this.write(r+"{"),this.lvl++;return}/^\s*switch\s/.test(this.getCurrentLine())&&this.switches.push(this.lvl);var u=this.getCurrentLine(),f=this.row,n=/(,)\s*(\w+\s*:\s*function\s*\([^\)]*\)\s*)$/;n.test(u)&&(this.replaceLine(this.code[f].replace(n,"$1")),this.writeLine(),i=n.exec(u),this.write(i[2]));if(/^\s*return\s*/.test(this.code[this.row])){/^\s*return\s+\w+/.test(this.code[this.row])?this.writeLine():this.prevChar!=" "&&this.write(" "),this.write("{"),this.writeLine(),this.lvl++;return}/function\s*/.test(this.code[this.row])||this.isBlockBig()?this.writeLine():this.prevChar!=" "&&this.prevChar!="\n"&&this.prevChar!="("&&this.write(" "),this.write("{"),this.lvl++,"{"!=t&&this.writeLine()},this.isBlockBig=function(){var t=this.i+1,i=0,r=0,u=0,n;while(t<this.len-1){t++,n=this.s.charAt(t);if(/\s/.test(n))continue;if("}"==n&&r==u)break;"{"==n&&r++,"}"==n&&u++,i++;if(i>80)return!0}return i>80},this.blockBracketOff=function(){var n=this.nextNonWhite(this.i),r=this.prevNonWhite(this.i),i=this.getCurrentLine(),f;r!="{"&&(i.length&&n!=";"&&n!="}"&&n!=")"&&n!=","?this.writeLine():i.length&&r!=";"&&n=="}"&&this.isAssign?this.semicolon():i.length&&this.isAssign&&r!=";"?this.semicolon():i.length&&r!=";"&&(/^\s*(else)?\s*return[\s(]+/i.test(i)?this.semicolon():this.writeLine())),this.write("}"),","==n&&(this.write(","),this.goNextNonWhite()),f=this.nextManyNW(3),f=="(),"?(this.write("(),"),this.goNextManyNW("(),"),this.writeLine()):f=="();"?(this.write("();"),this.goNextManyNW("();"),this.writeLine()):f=="():"?(this.write("()"),this.goNextManyNW("()"),this.write(" : "),this.goNextNonWhite()):"{"==r?","==n&&this.getCurrentLine().length<80?this.write(" "):(this.nextWord()||"}"==n)&&this.writeLine():")"!=n&&"]"!=n&&(","==n&&/^[\s\w,]+\)/.test(this.s.substr(this.i,20))?this.write(" "):this.writeLine()),this.lvl--;if(this.switches.length&&this.switches[this.switches.length-1]==this.lvl){var t=this.row-1,h=str_repeat(" ",this.lvl*4),s=str_repeat(" ",(this.lvl+1)*4),c=new RegExp("^"+h+"(switch\\s|{)"),l=new RegExp("^"+s+"(case|default)[\\s:]"),a=new RegExp("^"+s+"[^\\s]");while(t>0){t--;if(c.test(this.code[t]))break;if(l.test(this.code[t]))continue;this.replaceLine("    "+this.code[t],t)}this.switches.pop()}if(this.sub)return;var o=/^(\s*else\s*if)\s*\(/,e=/^(\s*else)\s+[^{]+/,u=this.s.substr(this.i+1,100);o.test(u)?(this.i+=o.exec(u)[1].length,this.write("else if"),this.lastWord="if",this.fixSub("else if")):e.test(u)&&(this.i+=e.exec(u)[1].length,this.write("else"),this.lastWord="else",this.fixSub("else"))},this.bracketOn=function(){this.isKeyword()&&this.prevChar!=" "&&this.prevChar!="\n"?this.write(" ("):this.write("(")},this.bracketOff=function(){var r,n,i,t;this.write(")");if(this.sub)return;r=new RegExp("^\\s*(if|for|while|do)\\s*\\([^{}]+\\)$","i"),n=this.getCurrentLine();if(r.test(n)){i=this.nextNonWhite(this.i);if("{"!=i&&";"!=i&&")"!=i){var e=0,u=0,o=!1,s=!1,f=!1;for(t=0;t<n.length;t++){n.charAt(t)=="("&&(o=!0,e++);if(n.charAt(t)==")"){u++;if(o&&e==u)if(t==n.length-1)f=!0;else break}}f&&this.fixSub(r.exec(n)[1])}}},this.sub=!1,this.orig_i=null,this.orig_lvl=null,this.orig_code=null,this.orig_row=null,this.orig_switches=null,this.restoreOrig=function(n){this.sub=!1,n||(this.i=this.orig_i),this.lvl=this.orig_lvl,this.code=this.orig_code,this.row=this.orig_row,this.switches=this.orig_switches,this.prevCharInit(),this.lastWord="",this.charInit(),this.isAssign=!1},this.combineSub=function(){for(i=0;i<this.code.length;i++){var n=this.orig_code[this.orig_row];0==i&&n.length?(n.substr(n.length-1,1)!=" "&&(this.orig_code[this.orig_row]+=" "),this.orig_code[this.orig_row]+=this.code[i].trim()):this.orig_code[this.orig_row+i]=this.code[i]}},this.fixSub=function(n){var i,h,e,s;if(this.sub)return;if("{"==this.nextNonWhite(this.i))return;i=this.nextWord(),this.orig_i=this.i,this.orig_lvl=this.lvl,this.orig_code=this.code,this.orig_row=this.row,this.orig_switches=this.switches,this.sub=!0,this.code=[""],this.prevChar="",this.row=0,this.switches=[],this.isAssign=!1,this.i++;var u=0,r=0,f=0;"else if"==n&&(h=!1);var t=!1,o=!1,c=!1;while(!t&&this.i<this.len){e=this.s.charAt(this.i),this.charInit();switch(e){case"{":u++;break;case"}":u--;if(0==u&&0==r&&0==f&&this.lvl-1==this.orig_lvl){s=this.nextWord();if("switch"==i){t=!0;break}if("try"==i&&"catch"==o){t=!0;break}if("while"==i&&"do"==o){t=!0;break}"if"==i;if("if"==n&&"else"==s&&"if"!=i){t=!0;break}o=s}break;case"(":r++;break;case")":r--;if("else if"==n&&0==r&&!h){if(this.nextNonWhite(this.i)=="{"){this.write(e),this.combineSub(),this.restoreOrig(!0);return}this.write(e),this.combineSub(),this.restoreOrig(!0),this.fixSub("if");return}break;case"[":f++;break;case"]":f--;break;case";":0==u&&0==r&&0==f&&this.lvl==this.orig_lvl&&"if"!=i&&(t=!0)}if(-1==u&&r==0&&f==0&&this.prevNonWhite(this.i)!="}")this.write(";"),this.i--,t=!0;else if(u<0||r<0||f<0){t=!1;break}else this.switch_c(e);this.i++}this.i--,t&&(this.s=this.s.substr(0,this.orig_i+1)+"{"+this.code.join("\n")+"}"+this.s.substr(this.i+1),this.len=this.s.length),this.restoreOrig(!1)},this.squareBracketOn=function(){this.checkKeyword(),this.write("[")},this.squareBracketOff=function(){this.write("]")},this.isKeyword=function(){return this.lastWord.length&&this.keywords.indexOf(this.lastWord)!=-1},this.linefeed=function(){},this.space=function(){if(!this.prevChar.length)return;if(" "==this.prevChar||"\n"==this.prevChar)return;"}"==this.prevChar&&"]"==this.nextChar,this.write(" ");return},this.checkKeyword=function(){this.isKeyword()&&this.prevChar!=" "&&this.prevChar!="\n"&&this.write(" ")},this.nextWord=function(){var i=this.i,t="",n;while(i<this.len-1){i++,n=this.s.charAt(i);if(t.length)if(/\s/.test(n))break;else if(/\w/.test(n))t+=n;else break;else if(/\s/.test(n))continue;else if(/\w/.test(n))t+=n;else break}return t.length?t:!1},this.nextManyNW=function(n){var r="",i=this.i,t;while(i<this.len-1){i++,t=this.s.charAt(i);if(!/^\s+$/.test(t)){r+=t;if(r.length==n)return r}}return!1},this.goNextManyNW=function(n){var r="",t=this.i,i;while(t<this.len-1){t++,i=this.s.charAt(t);if(!/^\s+$/.test(i)){r+=i;if(r==n)return this.i=t,this.charInit(),!0;if(r.length>=n.length)return!1}}return!1},this.nextNonWhite=function(n){while(n<this.len-1){n++;var t=this.s.charAt(n);if(!/^\s+$/.test(t))return t}return!1},this.prevNonWhite=function(n){while(n>0){n--;var t=this.s.charAt(n);if(!/^\s+$/.test(t))return t}return!1},this.goNextNonWhite=function(){var n=this.i,t;while(n<this.len-1){n++,t=this.s.charAt(n);if(!/^\s+$/.test(t))return this.i=n,this.charInit(),!0}return!1},this.colon=function(){var n=this.getCurrentLine();/^\s*case\s/.test(n)||/^\s*default$/.test(n)?(this.write(":"),this.writeLine()):this.symbol2(":")},this.isStart=function(){return this.getCurrentLine().length===0},this.backLine=function(){if(!this.isStart)throw"backLine() may be called only at the start of the line";this.code.length=this.code.length-1,this.row--},this.semicolon=function(){this.isAssign=!1,this.isStart()&&this.backLine(),this.write(";"),/^\s*for\s/.test(this.getCurrentLine())?this.write(" "):this.writeLine()},this.quotation=function(n){var i,t;this.checkKeyword(),i=!1,this.write(n);while(this.i<this.len-1){this.i++,t=this.s.charAt(this.i),"\\"==t&&(i=i?!1:!0),this.write(t);if(t==n)if(!i)break;"\\"!=t&&(i=!1)}},this.lineComment=function(){this.write("//"),this.i++;while(this.i<this.len-1){this.i++;var n=this.s.charAt(this.i);if("\n"==n){this.writeLine();break}this.write(n)}},this.comment=function(){this.write("/*"),this.i++;var n="",t="";while(this.i<this.len-1){this.i++,t=n,n=this.s.charAt(this.i)," "==n||"\t"==n||"\n"==n?" "==n?this.getCurrentLine().length>100?this.writeLine():this.write(" ",!0):"\t"==n?this.write("    ",!0):"\n"==n&&this.writeLine():this.write(n,!0);if("/"==n&&"*"==t)break}this.writeLine()},this.slash=function(){for(var n=this.i-1,u=this.s.charAt(n),e,o,f,s,i,r,t,n=this.i-1;n>=0;n--){e=this.s.charAt(n);if(" "==e||"\t"==e)continue;u=this.s.charAt(n);break}o=/^\w+$/.test(u)||"]"==u||")"==u,f="*"==this.prevChar;if(o||f)o?"="==this.nextChar?(s=this.prevChar==" "?"":" ",this.write(s+"/")):this.write(" / "):f&&this.write("/ ");else if(")"==this.prevChar)this.write(" / ");else{i="",i+="="==this.prevChar||":"==this.prevChar?" /":"/",r=!1;while(this.i<this.len-1){this.i++,t=this.s.charAt(this.i),"\\"==t&&(r=r?!1:!0),i+=t;if("/"==t)if(!r)break;"\\"!=t&&(r=!1)}this.write(i)}},this.comma=function(){this.write(", ");var n=this.getCurrentLine();n.replace(" ","").length>100&&this.writeLine()},this.dot=function(){this.write(".")},this.symbol1=function(n){"="==this.prevChar&&"!"==n?this.write(" "+n):this.write(n)},this.symbol2=function(n){if("+"==n||"-"==n)if(n==this.nextChar||n==this.prevChar){this.write(n);return}var i=this.prevChar==" "?"":" ",t=" ";"("==this.prevChar&&(i="",t="");if("-"==n&&(">"==this.prevChar||">"==this.prevChar)){this.write(" "+n);return}this.symbols2.indexOf(this.prevChar)!=-1?this.symbols2.indexOf(this.nextChar)!=-1?this.write(n+(this.nextChar=="!"?" ":"")):this.write(n+t):this.symbols2.indexOf(this.nextChar)!=-1?this.write(i+n):this.write(i+n+t),"="==n&&/^[\w\]]$/.test(this.prevNonWhite(this.i))&&/^[\w\'\"\[]$/.test(this.nextNonWhite(this.i))&&(this.isAssign=!0)},this.alphanumeric=function(n){this.lastWord?this.lastWord+=n:this.lastWord=n,")"==this.prevChar&&(n=" "+n),this.write(n)},this.unknown=function(n){this.write(n)},this.charInit=function(){this.nextChar=this.len-1===this.i?"":this.s.charAt(this.i+1)},this.write=function(n,t){var r,i;if(t)/\s/.test(n)||this.code[this.row].length<this.lvl*4&&(this.code[this.row]+=str_repeat(" ",this.lvl*4-this.code[this.row].length)),this.code[this.row]+=n;else if(0===this.code[this.row].length){for(r="}"==n?this.lvl-1:this.lvl,i=0;i<r;i++)this.code[this.row]+="    ";this.code[this.row]+=n}else this.code[this.row]+=n;this.prevCharInit()},this.writeLine=function(){this.code.push(""),this.row++,this.prevChar="\n"},this.replaceLine=function(n,t){"undefined"==typeof t&&(t=!1);if(t!==!1)if(!/^\d+$/.test(t)||t<0||t>this.row)throw"replaceLine() failed: invalid row="+t;t!==!1?this.code[t]=n:this.code[this.row]=n,(t===!1||t==this.row)&&this.prevCharInit()},this.prevCharInit=function(){this.prevChar=this.code[this.row].charAt(this.code[this.row].length-1)},this.writeTab=function(){this.write("    "),this.prevChar=" "},this.getCurrentLine=function(){return this.code[this.row]},this.symbols1="~!^",this.symbols2="-+*%<=>?:&|/!",this.keywords=["abstract","boolean","break","byte","case","catch","char","class","const","continue","default","delete","do","double","else","extends","false","final","finally","float","for","function","goto","if","implements","import","in","instanceof","int","interface","long","native","new","null","package","private","protected","public","return","short","static","super","switch","synchronized","this","throw","throws","transient","true","try","typeof","var","void","while","with"]}function str_repeat(n,t){ret="";for(var i=0;i<t;i++)ret+=n;return ret}function debug(n,t){var i,r;if(!debug_w){var f=600,e=600,o=screen.width/2-f/2,u=screen.height/2-e/2;debug_w=window.open("","","scrollbars=yes,resizable=yes,width="+f+",height="+e+",screenX="+o+",screenY="+u+",left="+o+",top="+u),debug_w.document.open(),debug_w.document.write("<html><head><style>body{margin: 1em;padding: 0;font-family: courier new; font-size: 12px;}h1,h2{margin: 0.2em 0;}</style></head><body><h1>Debug</h1></body></html>"),debug_w.document.close()}i="","undefined"!=typeof t&&t.length&&(i="<h2>"+t+"</h2>\n");if("object"==typeof n)for(r=0;r<n.length;r++)i+="["+r+"] => "+n[r]+"\n";else if("string"==typeof n)i+=n;else{try{i+=n.toString()}catch(s){}i+=" ("+typeof n+")"}debug_w.document.body.innerHTML+="<pre>"+i+"</pre>"}typeof Array.prototype.indexOf=="undefined"&&(Array.prototype.indexOf=function(n){for(var t=0;t<this.length;t++)if(typeof this[t]==typeof n&&this[t]==n)return t;return-1}),String.prototype.trim||(String.prototype.trim=function(){return this.replace(/^\s*|\s*$/g,"")});var debug_w
                    
                
YnQuadTree.cs https://git01.codeplex.com/yna | C# | 268 lines
                    
261                    else
                    
262                        i++;
                    
263                }
                    
                
ExpressionParserBase.cs https://hg.codeplex.com/napp | C# | 346 lines
                    
180					// get the next quoted string
                    
181					i++;
                    
182
                    
                
Directory.cs https://hg01.codeplex.com/discutils | C# | 292 lines
                    
227                candidate = baseName.Substring(0, Math.Min(8 - suffix.Length, baseName.Length)) + suffix + (ext.Length > 0 ? "." + ext : string.Empty);
                    
228                i++;
                    
229            }
                    
                
Weather.cs https://infoservice.svn.codeplex.com/svn | C# | 265 lines
                    
257                    _weatherData.WeatherForecast.Add(wfc);
                    
258                    i++;
                    
259                }
                    
                
MockBuilder.cs https://NMock3.svn.codeplex.com/svn | C# | 233 lines
                    
211            {
                    
212                i++;
                    
213            }
                    
                
DataRowConverter.cs https://netjswire.svn.codeplex.com/svn | C# | 195 lines
                    
106                ser.Serialize( writer, row[ i ] );
                    
107                i++;
                    
108            }
                    
                
ElementCollectionEditor.xaml.cs https://entlib.svn.codeplex.com/svn | C# | 170 lines
                    
123                gridSplitter.SetValue(Grid.RowSpanProperty, viewModel.ChildElements.Count() + 1);
                    
124                i++;
                    
125            }
                    
151
                    
152                    i++;
                    
153                }
                    
                
ParamsArgBuilder.cs https://IronPython.svn.codeplex.com/svn | C# | 185 lines
                    
116
                    
117                i++;
                    
118            }
                    
                
FunctionsTemplate.cs https://nhydrate.svn.codeplex.com/svn | C# | 211 lines
                    
98			{
                    
99				ii++;
                    
100				output.Append(column.DatabaseName.ToLower());
                    
117			{
                    
118				ii++;
                    
119				output.Append("\t@" + ValidationHelper.MakeDatabaseScriptIdentifier(parameter.DatabaseName) + " " +
                    
                
OggStream.cs https://hg.codeplex.com/acal | C# | 417 lines
                    
252							info.synthesis_headerin(comment, packet);
                    
253							i++;
                    
254						}
                    
                
PartialFileRead.cs https://bofc.svn.codeplex.com/svn | C# | 434 lines
                    
250
                    
251                            i++;
                    
252                            OnReadFileProgress(i, Lines);
                    
268
                    
269                            i++;
                    
270                            OnReadFileProgress(ReadChars, (long) percent);
                    
301                    sr.ReadLine();
                    
302                    i++;
                    
303                    OnReadFileProgress(i, StartLine);
                    
316
                    
317                    i++;
                    
318                    OnReadFileProgress(i, EndLine);
                    
                
FormsyServiceTest.cs https://formsy.svn.codeplex.com/svn | C# | 379 lines
                    
244                    break;
                    
245                formName = m_FormName + i++;
                    
246            }
                    
                
KeywordTrigger.cs https://smartersql.svn.codeplex.com/svn | C# | 302 lines
                    
21		public static void HandleEnableDisableTrigger(List<TokenInfo> lstTokens, ref int i) {
                    
22			i++;
                    
23			TokenInfo nextToken = InStatement.GetNextNonCommentToken(lstTokens, ref i);
                    
115			Parser parser = TextEditor.CurrentWindowData.Parser;
                    
116			i++;
                    
117			TokenInfo nextToken = InStatement.GetNextNonCommentToken(lstTokens, ref i);
                    
                
StringUtility.cs https://CodeRunner.svn.codeplex.com/svn | C# | 244 lines
                    
154                    lines.Insert(i, line.Substring(0, e + 1));
                    
155                    i++;
                    
156                }
                    
157                
                    
158                i++;
                    
159            }
                    
                
UserRegionViewController.cs https://hg01.codeplex.com/greatmaps | C# | 262 lines
                    
219				{
                    
220					i++;
                    
221				}
                    
                
LexCOBOL.cxx https://ScintillaNET.svn.codeplex.com/svn | C++ | 369 lines
                    
71        s[i] = static_cast<char>(tolower(styler[start + i]));
                    
72        i++;
                    
73    }
                    
                
FeatureCollection.cs https://SharpMap.svn.codeplex.com/svn | C# | 405 lines
                    
149                }
                    
150                i++;
                    
151            }
                    
166                }
                    
167                i++;
                    
168            }
                    
183                }
                    
184                i++;
                    
185            }
                    
                
ProviderMovingPictures.cs https://infoservice.svn.codeplex.com/svn | C# | 223 lines
                    
133                items.Add(ra);
                    
134                i++;
                    
135                if (i == MaxRecentlyItems + 1) break;
                    
180                    logger.WriteLog(string.Format("Moving Pictures: Recently Watched Movie {0} is {1}", i, movie.Title), LogLevel.Debug, InfoServiceModul.RecentlyAddedWatched);
                    
181                    i++;
                    
182                    if (i == MaxRecentlyItems + 1)  break;
                    
                
EnumeratedValueArgument.cs https://commandlineparser.svn.codeplex.com/svn | C# | 225 lines
                    
42                typedValues[i] = Convert(value);
                    
43                i++;
                    
44            }
                    
                
XYPolygon.cs https://hg01.codeplex.com/hydrodesktop | C# | 360 lines
                    
143        {
                    
144          i++;
                    
145        }
                    
                
MessageClient.cs https://socketslight.svn.codeplex.com/svn | C# | 310 lines
                    
177                messageByteList.Insert(i, 0);
                    
178                i++;
                    
179            }
                    
                
FileNaming.cs https://hg.codeplex.com/cachecopy | C# | 251 lines
                    
106            {
                    
107                i++;    // if file exists, add counter
                    
108                string nameNoExtension = Path.GetFileNameWithoutExtension(newFullName);
                    
                
SharpNES.cs https://nesemu7.svn.codeplex.com/svn | C# | 428 lines
                    
109                    if (files[i].ToString().ToLower().EndsWith(".nes"))
                    
110                        i++;
                    
111                    else
                    
                
CssParser.cs https://jumony.svn.codeplex.com/svn | C# | 521 lines
                    
358        if ( enumerator.Current == '(' )
                    
359          i++;
                    
360
                    
                
buffer-bar.cc https://hg.codeplex.com/xyzzy | C++ | 495 lines
                    
177          current = i;
                    
178        i++;
                    
179        bp->b_buffer_bar_modified &= Buffer::BUFFER_BAR_LAST_MODIFIED_FLAG;
                    
                
pongLens.cpp https://mona.svn.codeplex.com/svn | C++ | 336 lines
                    
78      {
                    
79         i++;
                    
80         if (i >= argc)
                    
90      {
                    
91         i++;
                    
92         if (i >= argc)
                    
107      {
                    
108         i++;
                    
109         if (i >= argc)
                    
150         {
                    
151            i++;
                    
152            i = atoi(&buf[i]);
                    
175         {
                    
176            i++;
                    
177            i = atoi(&buf[i]);
                    
                
TagFromFileHelper.cs https://gdflactool.svn.codeplex.com/svn | C# | 365 lines
                    
115
                    
116                        i++;
                    
117                    }
                    
                
AsyncTests.Creation.cs https://git01.codeplex.com/rx | C# | 409 lines
                    
248                {
                    
249                    i++;
                    
250                    return new MyD(() => { d++; });
                    
269                {
                    
270                    i++;
                    
271                    return new MyD(() => { d++; });
                    
294                {
                    
295                    i++;
                    
296                    return new MyD(() => { d++; });
                    
316                {
                    
317                    i++;
                    
318                    return new MyD(() => { disposed = true; });
                    
343                {
                    
344                    i++;
                    
345                    return new MyD(() => { disposed = true; });
                    
                
Program.cs https://bf3admin.svn.codeplex.com/svn | C# | 238 lines
                    
33                            {
                    
34                                i++; //increment because reading to next arg
                    
35                                if (Directory.Exists(args[i]))
                    
                
grid.custom.js https://hg01.codeplex.com/razorpad | JavaScript | 0 lines
                    
186						ruleGroup += "\"data\":\"" + n.replace(/\\/g,'\\\\').replace(/\"/g,'\\"') + "\"}";
                    
187						gi++;
                    
188					});
                    
257						ruleGroup += "\"data\":\"" + n.replace(/\\/g,'\\\\').replace(/\"/g,'\\"') + "\"}";
                    
258						gi++;
                    
259					});
                    
                
MatrixConverter.cs https://SpatialIndexing.svn.codeplex.com/svn | C# | 339 lines
                    
155                int* ii = (int*)b;
                    
156                imax = *ii++;
                    
157                jmax = *ii++;
                    
                
VoronoiDiagram.cs https://SpatialIndexing.svn.codeplex.com/svn | C# | 452 lines
                    
365
                    
366                    i++;
                    
367                }
                    
                
ArrOps.cs https://cbucks.svn.codeplex.com/svn | C# | 1383 lines
                    
339					switch(iis[i]) {
                    
340						case -1: iis[i]++; res[i] = a[i]; i++; break;
                    
341						case 0: iis[i]++; res[i] = b[i]; i++; break;
                    
                
CompilerTestUtils.cs https://cbucks.svn.codeplex.com/svn | C# | 577 lines
                    
207				}
                    
208				i++;
                    
209			}  // end of while()
                    
                
CompilerTestUtils.cs https://cbucks.svn.codeplex.com/svn | C# | 457 lines
                    
197					return false;
                    
198				i++;
                    
199			}  // end of while()
                    
                
ArrOps.cs https://cbucks.svn.codeplex.com/svn | C# | 834 lines
                    
137					switch(iis[i]) {
                    
138						case -1: iis[i]++; res[i] = a[i]; i++; break;
                    
139						case 0: iis[i]++; res[i] = b[i]; i++; break;
                    
187				if(j == s) {
                    
188					i++;
                    
189					j = 0;
                    
232				if(j == s) {
                    
233					i++;
                    
234					j = 0;
                    
257						if(j == s) {
                    
258							i++;
                    
259							j = 0;
                    
283						if(j == s) {
                    
284							i++;
                    
285							j = 0;
                    
                
ArrOps.cs https://cbucks.svn.codeplex.com/svn | C# | 645 lines
                    
62				if(j == s) {
                    
63					i++;
                    
64					j = 0;
                    
107				if(j == s) {
                    
108					i++;
                    
109					j = 0;
                    
132						if(j == s) {
                    
133							i++;
                    
134							j = 0;
                    
158						if(j == s) {
                    
159							i++;
                    
160							j = 0;
                    
180				if(j == s) {
                    
181					i++;
                    
182					j = 0;
                    
                
AmuABI.cs https://cbucks.svn.codeplex.com/svn | C# | 548 lines
                    
425                cur += (char)str[i];
                    
426                i++;
                    
427            }
                    
                
Lattice.h https://pgl.svn.codeplex.com/svn | C Header | 631 lines
                    
339	vFace[0].first=GetXVertex(i);		vFace[0].second=GetYVertex(i);
                    
340	i++;	
                    
341	vFace[1].first=GetXVertex(i);		vFace[1].second=GetYVertex(i);
                    
358	vFace[0]=i;
                    
359	i++;	
                    
360	vFace[1]=i;
                    
                
PainelCarrossel.cs https://brasilframework.svn.codeplex.com/svn | C# | 377 lines
                    
227                elementoCaracteristica.alfa = listaAlfa[i - 1];
                    
228                i++;
                    
229                if (elementoCaracteristica.indice == 1)
                    
                
PaymentReminderPresenter.cs https://paymentreminder.svn.codeplex.com/svn | C# | 362 lines
                    
78            {
                    
79                i++;
                    
80                currentCalendarDay = this.allDaysInARangeForCalendar[i] as CalendarDay;
                    
217                this.upcomingPayments.ResetItem(i);
                    
218                i++;
                    
219            }
                    
                
PaymentReminder.xaml.cs https://paymentreminder.svn.codeplex.com/svn | C# | 458 lines
                    
138                        balances[i] = Decimal.ToDouble(day.EndOfDayBalance);
                    
139                        i++;
                    
140                    }
                    
                
Count_TipoProb.cs https://inventariohardsoft.svn.codeplex.com/svn | C# | 430 lines
                    
72                dg.Rows.Add(obj);                
                    
73                i++;
                    
74            }
                    
117                dg.Rows.Add(obj);
                    
118                i++;
                    
119            }
                    
182                dg.Rows.Add(obj);
                    
183                i++;
                    
184            }
                    
229                dg.Rows.Add(obj);
                    
230                i++;
                    
231            }
                    
                
ArchiveReaderSequential_Test.cs https://openHistorian.svn.codeplex.com/svn | C# | 529 lines
                    
389                {
                    
390                    xi++;
                    
391                }
                    
                
MainTest.cs https://PropertyExpression.svn.codeplex.com/svn | C# | 386 lines
                    
43            {
                    
44                return i++;
                    
45            }
                    
                
MainTest.cs https://PropertyExpression.svn.codeplex.com/svn | C# | 344 lines
                    
40//            {
                    
41//                return i++;
                    
42//            }
                    
                
SegmentUtils.cs https://smartersql.svn.codeplex.com/svn | C# | 976 lines
                    
237							}
                    
238							i++;
                    
239						}
                    
331					}
                    
332					i++;
                    
333				}
                    
                
HiddenRegion.cs https://smartersql.svn.codeplex.com/svn | C# | 936 lines
                    
120							statementSpans = statementSpans.JoinedSpanNext;
                    
121							i++;
                    
122						}
                    
                
InStatement.cs https://smartersql.svn.codeplex.com/svn | C# | 739 lines
                    
26			int start = i;
                    
27			i++;
                    
28			for (int j = 0; j < kindToFind.Length; j++) {
                    
40			int start = i;
                    
41			i++;
                    
42			for (int j = 0; j < typeToFind.Length; j++) {
                    
67			for (int j = 0; j < kindToFind.Length; j++) {
                    
68				i++;
                    
69				nextToken = GetNextNonCommentToken(lstTokens, ref i);
                    
81			for (int j = 0; j < typeToFind.Length; j++) {
                    
82				i++;
                    
83				nextToken = GetNextNonCommentToken(lstTokens, ref i);
                    
                
KeywordSelect.cs https://smartersql.svn.codeplex.com/svn | C# | 367 lines
                    
45				if (!InStatement.GetIfAllNextValidToken(lstTokens, ref i, out token, TokenKind.KeywordSelect)) {
                    
46					i++;
                    
47					return;
                    
54					Expression expression;
                    
55					i++;
                    
56					if (!Expression.FindExpression(parser, lstTokens, ref i, endIndex, out expression)) {
                    
                
Parser.cs https://smartersql.svn.codeplex.com/svn | C# | 1550 lines
                    
247					KeywordSelect.ParseSelectForColumns(this, out currentStartSpan, lstSysObjects, ref i, lstTokens, ref sysObjectId);
                    
248					i++;
                    
249
                    
314
                    
315					i++;
                    
316					TokenInfo nextToken = InStatement.GetNextNonCommentToken(lstTokens, ref i);
                    
369					// [ FOR UPDATE [ OF column_name [ ,...n ] ] ]
                    
370					i++;
                    
371					TokenInfo nextToken = InStatement.GetNextNonCommentToken(lstTokens, ref i);
                    
372					if (null != nextToken && nextToken.Kind == TokenKind.KeywordUpdate) {
                    
373						i++;
                    
374						nextToken = InStatement.GetNextNonCommentToken(lstTokens, ref i);
                    
375						if (null != nextToken && nextToken.Kind == TokenKind.KeywordOf) {
                    
376							i++;
                    
377						}
                    
                
Tokenizer.cs https://smartersql.svn.codeplex.com/svn | C# | 921 lines
                    
210						if (((i + 1) < data.Length) && (data[i] == '\n')) {
                    
211							i++;
                    
212						}
                    
                
DbCommandHelper.cs https://scl.svn.codeplex.com/svn | C# | 340 lines
                    
210                    newParam = string.Format("@p{0}", i);
                    
211                    i++;
                    
212                }
                    
                
JavaBinCodec.cs https://easynet.svn.codeplex.com/svn | C# | 816 lines
                    
474                            utf32 = ((code - 0xD7C0) << 10) + (utf32 & 0x3FF);
                    
475                            i++;
                    
476                            bytes[upto++] = (byte)(0xF0 | (utf32 >> 18));
                    
                
Audio.cs https://winbird.svn.codeplex.com/svn | C# | 669 lines
                    
102                    num++;
                    
103                    i++;
                    
104                }
                    
                
GenericDesigner.cs https://groupcontrols.svn.codeplex.com/svn | C# | 778 lines
                    
75				}
                    
76				i++;
                    
77			}
                    
                
Component.cs https://blackstar.svn.codeplex.com/svn | C# | 854 lines
                    
339            foreach (Component c in this.Children)
                    
340            { c.naturalOrder = i; i++; }
                    
341
                    
                
GeometricRecognizer.cs https://WindowsTouchGesture.svn.codeplex.com/svn | C# | 629 lines
                    
105                }
                    
106                i++;
                    
107            }
                    
125                d = Utils.PathDistance(newPoints, pts2);
                    
126                i++;
                    
127            }
                    
                
CoordinateArrays.cs https://azukimap.svn.codeplex.com/svn | C# | 417 lines
                    
50                    return compare;
                    
51                i++;
                    
52            }
                    
                
GridTitleSelectionPage.cs https://SharpMedia.svn.codeplex.com/svn | C# | 541 lines
                    
148
                    
149                i++;
                    
150            }
                    
214                    return i;
                    
215                i++;
                    
216            }
                    
                
HUDVideoOptions.cs https://SharpMedia.svn.codeplex.com/svn | C# | 880 lines
                    
428                hat.Add(lbl);
                    
429                i++;
                    
430            }
                    
                
Shannon.cs https://sharpotify.svn.codeplex.com/svn | C# | 637 lines
                    
418    				
                    
419				    i++;
                    
420    				
                    
474    				
                    
475				    i++;
                    
476    				
                    
505    				
                    
506				    i++;
                    
507    				
                    
                
Output.cs https://lizardtf.svn.codeplex.com/svn | C# | 611 lines
                    
207						lineCol.AddLine(Lines[i].State, Lines[i].Text);
                    
208						i++;
                    
209						incDone = true;
                    
242				if (!incDone)
                    
243					i++;
                    
244			}
                    
                
cSockets.cs https://TSChanMan.svn.codeplex.com/svn | C# | 442 lines
                    
217
                    
218                                i++;
                    
219                            }
                    
                
BarcodeEngine.cs https://SilverlightUGStarter.svn.codeplex.com/svn | C# | 871 lines
                    
127                byte ch = (byte)a[i];
                    
128                i++;
                    
129                if (ch <= 127)
                    
138                    {
                    
139                        i++;
                    
140                        if (bInd == 0)
                    
                
DocumentAnalyze.java https://keygraph.svn.codeplex.com/svn | Java | 540 lines
                    
297				else
                    
298					ii++;
                    
299			}
                    
                
MainTwitter.java https://keygraph.svn.codeplex.com/svn | Java | 399 lines
                    
81			try {
                    
82				i++;
                    
83				if (i % 100000 == 0)
                    
                
NewsMain.java https://keygraph.svn.codeplex.com/svn | Java | 594 lines
                    
121			out.close();
                    
122			i++;
                    
123			if (i % 100 == 0)
                    
                
AwesomeGridView.js https://awesomescript.svn.codeplex.com/svn | JavaScript | 829 lines
                    
366            else {
                    
367                i++;
                    
368                if (i >= d.length) {
                    
                
IndexFile.cs https://RaptorDBkv.svn.codeplex.com/svn | C# | 400 lines
                    
274                    var val = node.tree[kp];
                    
275                    int idx = index + _rowSize * i++;
                    
276                    // key bytes
                    
                
SVMViewerUserControl.cs https://svmplugin.svn.codeplex.com/svn | C# | 403 lines
                    
165                }
                    
166                i++;
                    
167                
                    
                
Utils.java https://lockcrypt.svn.codeplex.com/svn | Java | 480 lines
                    
45                } else {
                    
46                    i++;
                    
47                }
                    
                
LocationResolver.cs https://mbf.svn.codeplex.com/svn | C# | 609 lines
                    
265                            seqData[i] = subSeq[m];
                    
266                            i++; 
                    
267                            m++;
                    
                
H5HFpkg.h https://mohid.svn.codeplex.com/svn | C++ Header | 787 lines
                    
161#define H5HF_MAN_ID_DECODE(i, h, f, o, l)                                     \
                    
162    f = *(uint8_t *)i++;                                                      \
                    
163    UINT64DECODE_VAR((i), (o), (h)->heap_off_size);                           \
                    
                
OpenFileDialog .xaml.cs https://mbf.svn.codeplex.com/svn | C# | 530 lines
                    
244                    filters[i] = filter.Replace(".", string.Empty);
                    
245                    i++;
                    
246                }
                    
                
DensePairAnsiBvtTestCases.cs https://mbf.svn.codeplex.com/svn | C# | 435 lines
                    
250                Assert.AreEqual(denseMatObj.RowKeys[i], rowKey);
                    
251                i++;
                    
252            }
                    
                
BAMBvtTestCases.cs https://mbf.svn.codeplex.com/svn | C# | 1227 lines
                    
401                        Assert.AreEqual(length.ToString((IFormatProvider)null), insertLength[i]);
                    
402                        i++;
                    
403                    }
                    
                
SparseSequenceBvtTestCases.cs https://mbf.svn.codeplex.com/svn | C# | 490 lines
                    
342                Assert.AreEqual(byteArrayObj[i], by.Item);
                    
343                i++;
                    
344            }
                    
                
modelengine.cpp https://mohid.svn.codeplex.com/svn | C++ | 12908 lines
                    
201		}
                    
202    i++;		
                    
203		
                    
230
                    
231					i++;
                    
232				}
                    
                
PolygonShape.cs https://vecdraw.svn.codeplex.com/svn | C# | 824 lines
                    
331                {
                    
332                    i++;
                    
333                }
                    
339                    {
                    
340                        i++;
                    
341                        tcnt = 0;
                    
349                    {
                    
350                        i++;
                    
351                        tcnt = 0;
                    
356
                    
357                ti++;
                    
358            }
                    
                
Form1.cs https://XlLateBinding.svn.codeplex.com/svn | C# | 556 lines
                    
139                rowIndex++;
                    
140                i++;
                    
141            }
                    
                
hyphen.cpp https://sandassist.svn.codeplex.com/svn | C++ | 1075 lines
                    
364          } else {
                    
365            if (*word == '.') i++;
                    
366            /* convert UTF-8 char. positions of discretionary hyph. replacements to 8-bit */
                    
                
DragDropGrid.cs https://layout.svn.codeplex.com/svn | C# | 537 lines
                    
242                }
                    
243                i++;
                    
244            }
                    
                
QuestGroupControl.cs https://questtracker.svn.codeplex.com/svn | C# | 474 lines
                    
379                {
                    
380                    i++;
                    
381                } while (!(Controls[i] is QuestControl));
                    
                
QuestTabControl.cs https://questtracker.svn.codeplex.com/svn | C# | 581 lines
                    
391                {
                    
392                    i++;
                    
393                } while (!(quests.Controls[i] is QuestGroupControl));
                    
                
Create_Alter.cs https://Ixsd2db.svn.codeplex.com/svn | C# | 619 lines
                    
131                                        {
                    
132                                            i++;
                    
133                                        }
                    
                
SqlHelper.cs https://MDXParameter.svn.codeplex.com/svn | C# | 2717 lines
                    
104                    commandParameter.Value = dataRow[commandParameter.ParameterName.Substring(1)];
                    
105                i++;
                    
106            }
                    
                
Utils.cs https://VSXtra.svn.codeplex.com/svn | C# | 402 lines
                    
198        else
                    
199          i++;
                    
200      }
                    
                
Program.cs https://NosoiFighters.svn.codeplex.com/svn | C# | 308 lines
                    
29                simulation.saveSimulationResultToGraphML("simstep" + i + ".graphml.xml");
                    
30                i++;
                    
31            } while (simulation.simulationRunning);
                    
261                output.WriteLine();
                    
262                i++;
                    
263            } while (simulation.simulationRunning);
                    
                
DataListUnion.cs https://Cerebrum.svn.codeplex.com/svn | C# | 772 lines
                    
151					list = this.Lists[listi] as System.Collections.IList;
                    
152					itemi++;
                    
153					if(itemi < list.Count)
                    
158					{
                    
159						listi++;
                    
160						if(listi < this.Lists.Count)
                    
                
Component.cs https://rapidhdl.svn.codeplex.com/svn | C# | 807 lines
                    
300					oNode.Net.SimulationStabilizeNet();
                    
301					i++;
                    
302				}
                    
                
Net.cs https://rapidhdl.svn.codeplex.com/svn | C# | 533 lines
                    
427                }
                    
428				i++;
                    
429			}	
                    
                
Common.cs https://facebooklinq.svn.codeplex.com/svn | C# | 943 lines
                    
308
                    
309				i++;
                    
310			}
                    
330
                    
331				i++;
                    
332			}
                    
354
                    
355				i++;
                    
356			}
                    
374
                    
375				i++;
                    
376			}
                    
                
ASTReference.cs https://eblog.svn.codeplex.com/svn | C# | 588 lines
                    
468					{
                    
469						i++;
                    
470					}
                    
506					{
                    
507						i++;
                    
508					}
                    
                
Form1.cs https://VirtualScreenMax.svn.codeplex.com/svn | C# | 520 lines
                    
214                config.AppSettings.Settings.Add("ScreenHorizontal" + i, ms.Horizontal ? "true" : "false");
                    
215                i++;
                    
216            }
                    
                
ReportDevice.cs https://SharpBoard.svn.codeplex.com/svn | C# | 509 lines
                    
177                        Array.Copy(report, 6, buffer, offset + i * 16, size);
                    
178                        i++;
                    
179                        if (size != 16 || i * 16 == count)
                    
                
Initialize.cs https://hg01.codeplex.com/miconvexhull | C# | 421 lines
                    
402                    extremes.Add(i);
                    
403                    i++;
                    
404                }
                    
                
TPCCGenData.cs https://tpccbench.svn.codeplex.com/svn | C# | 648 lines
                    
93
                    
94            i++;
                    
95        }
                    
155
                    
156            i++;
                    
157        }
                    
218
                    
219            i++;
                    
220        }
                    
264            dr["I_DATA"] = RandomString(26, 50);
                    
265            i++;
                    
266            dt.Rows.Add(dr);
                    
338
                    
339            i++;
                    
340        }
                    
                
VCard.cs https://cyclopschat.svn.codeplex.com/svn | C# | 990 lines
                    
319                numbers[i] = (VTelephone) n;
                    
320                i++;
                    
321            }
                    
352                addresses[i] = (VAddress) n;
                    
353                i++;
                    
354            }
                    
384                emails[i] = (VEmail)n;
                    
385                i++;
                    
386            }
                    
                
tokenize_c.cs https://PasswordMgr.svn.codeplex.com/svn | C# | 674 lines
                    
194            if ( iOffset + i == z.Length ) c = 0;
                    
195            if ( c != 0 ) i++;
                    
196            tokenType = TK_SPACE; /* IMP: R-22934-25134 */
                    
304                {
                    
305                  i++;
                    
306                }
                    
366            {
                    
367              i++;
                    
368              while ( z.Length > iOffset + i && sqlite3Isdigit( z[iOffset + i] ) ) { i++; }
                    
377              i += 2;
                    
378              while ( z.Length > iOffset + i && sqlite3Isdigit( z[iOffset + i] ) ) { i++; }
                    
379              tokenType = TK_FLOAT;
                    
384              tokenType = TK_ILLEGAL;
                    
385              i++;
                    
386            }
                    
                
 

Source

Language