Home | History | Annotate | Download | only in os-win32

Lines Matching defs:commandLine

52     WCHAR* commandLine = lpCmdLine;
53 while (commandLine[0] != '\0') {
57 while (commandLine[0] == ' ')
58 ++commandLine;
60 if (commandLine[0] == '\"') {
61 ++commandLine;
65 while (commandLine[commandLineLength] != endChar && commandLine[commandLineLength] != '\0')
68 arguments.append(convertToUtf8(commandLine, commandLineLength));
70 commandLine += commandLineLength;
71 if (endChar != ' ' && commandLine[0] != '\0')
72 ++commandLine;