Lines Matching defs:Commands
3120 ImVector<const char*> Commands;
3132 Commands.push_back("HELP");
3133 Commands.push_back("HISTORY");
3134 Commands.push_back("CLEAR");
3135 Commands.push_back("CLASSIFY"); // "classify" is only here to provide an example of "C"+[tab] completing to "CL" and displaying matches.
3310 AddLog("Commands:");
3311 for (int i = 0; i < Commands.Size; i++)
3312 AddLog("- %s", Commands[i]);
3357 for (int i = 0; i < Commands.Size; i++)
3358 if (Strnicmp(Commands[i], word_start, (int)(word_end-word_start)) == 0)
3359 candidates.push_back(Commands[i]);