Lines Matching full:main
43 * The main cycle of the program will sequentially read lines from standard
45 * There are 2 possible configuration in regard to main cycle.
47 * 1. The main cycle is on C++ side. Program should be run with
48 * --main-cycle-in-cpp option. Script must declare a function named
49 * "ProcessLine". The main cycle in C++ reads lines and calls this function
57 * 2. The main cycle is in JavaScript. Program should be run with
58 * --main-cycle-in-js option. Script gets run one time at all and gets
150 } else if (strcmp(str, "--main-cycle-in-cpp") == 0) {
152 } else if (strcmp(str, "--main-cycle-in-js") == 0) {
305 int main(int argc, char* argv[]) {