Lines Matching defs:postString
253 UString postString;
255 postString) ;
503 NUpdateArchive::CActionSet &actionSet, UString &postString)
511 postString = command.Mid(i);
525 postString.Empty();
548 UString postString;
549 if (!ParseUpdateCommandString2(updateString, actionSet, postString))
551 postString.IsEmpty())
558 if (MyCharUpper(postString[0]) != kUpdateNewArchivePostCharID)
561 UString archivePath = postString.Mid(1);
646 const UString &postString = parser[NKey::kWorkingDir].PostStrings[0];
647 if (postString.IsEmpty())
650 options.WorkingDir = postString;
677 const UString &postString = parser[NKey::kProperty].PostStrings[i];
678 int index = postString.Find(L'=');
680 property.Name = postString;
683 property.Name = postString.Left(index);
684 property.Value = postString.Mid(index + 1);
718 const UString &postString = parser[NKey::kLargePages].PostStrings.Front();
719 if (postString.IsEmpty())
1001 UString postString = parser[NKey::kProperty].PostStrings[i];
1002 postString.MakeUpper();
1003 if (postString.Length() < 2)
1005 if (postString[0] == 'D')
1008 if (postString[pos] == '=')
1011 if (!ConvertStringToUInt32((const wchar_t *)postString + pos, logSize))
1017 else if (postString[0] == 'M' && postString[1] == 'T' )
1020 if (postString[pos] == '=')
1022 if (postString[pos] != 0)
1023 if (!ConvertStringToUInt32((const wchar_t *)postString + pos, options.NumThreads))
1026 else if (postString[0] == 'M' && postString[1] == '=' )
1029 if (postString[pos] != 0)
1030 options.Method = postString.Mid(2);