Lines Matching refs:i
41 for(int i=0; i<MAX_STOPWATCHES; ++i) in Initialize() local
43 s_paStopwatches[i] = NULL; in Initialize()
71 for(int i=0; i<MAX_STOPWATCHES; ++i) in ResetAll() local
73 if(s_paStopwatches[i]) in ResetAll()
75 s_paStopwatches[i]->Reset(); in ResetAll()
85 for(int i=0; i<MAX_STOPWATCHES; ++i) in PrintAll() local
87 if(s_paStopwatches[i]) in PrintAll()
89 s_paStopwatches[i]->printContents(); in PrintAll()
204 for(int i=0; i<MAX_STOPWATCHES; ++i) in addToList() local
206 if(s_paStopwatches[i]==NULL) in addToList()
208 s_paStopwatches[i] = this; in addToList()
221 for(int i=0; i<MAX_STOPWATCHES; ++i) in removeFromList() local
223 if(s_paStopwatches[i]==this) in removeFromList()
225 s_paStopwatches[i] = NULL; in removeFromList()
253 for(int i=0; i<100; ++i) in Test() local