Lines Matching refs:Index
32 UINT32 Index;
39 for (Index = 1; Index < Argc; Index++) {
40 if (Argv[Index][0] == '-') {
41 AsciiPrint("Warning: '%a' not recognized.\n",Argv[Index]);
43 AsciiVariableName = Argv[Index];
96 UINT32 Index;
105 for (Index = 1; Index < Argc; Index++) {
106 if (AsciiStrCmp(Argv[Index],"-v") == 0) {
108 } else if (Argv[Index][0] == '-') {
109 AsciiPrint("Warning: '%a' not recognized.\n",Argv[Index]);
111 AsciiVariableSetting = Argv[Index];
161 for (Index = 0; Index < AsciiValueLength; Index++) {
162 if ((Index > 0) && (AsciiValue[Index-1] == '\\') && (AsciiValue[Index] == '"')) {
165 AsciiValue[Index-EscapedQuotes] = AsciiValue[Index];
168 for (Index = 0; Index < EscapedQuotes; Index++) {
169 AsciiValue[AsciiValueLength-1-Index] = '\0';