Home | History | Annotate | Download | only in codesighs

Lines Matching defs:loop

827         **  Loop through our data once more, so that the symbols can
957 ** Loop through for output.
1079 int loop = 0;
1104 for(loop = 1; loop < inArgc && 0 == retval; loop++)
1111 if(0 == strcmp(gSwitches[switchLoop]->mLongName, inArgv[loop]))
1115 else if(0 == strcmp(gSwitches[switchLoop]->mShortName, inArgv[loop]))
1127 if(loop + 1 < inArgc)
1129 loop++;
1132 current->mValue = inArgv[loop];
1148 ERROR_REPORT(retval, inArgv[loop], "Unknown command line switch.");
1154 ERROR_REPORT(retval, inArgv[loop], "Command line switch requires a value.");
1264 int loop = 0;
1272 for(loop = 0; loop < switchCount; loop++)
1274 if(gSwitches[loop]->mHasValue)
1283 printf("\t%s%s\n", gSwitches[loop]->mLongName, valueText);
1284 printf("\t %s%s", gSwitches[loop]->mShortName, valueText);
1285 printf(DESC_NEWLINE "%s\n\n", gSwitches[loop]->mDescription);