Home | History | Annotate | Download | only in abcc

Lines Matching refs:arg_idx

81   int arg_idx = 3;
83 if (::strcmp(argv[arg_idx], "--triple") == 0) {
84 if ((arg_idx + 2 /* --triple [triple] input */) >= argc) {
89 triple = argv[arg_idx + 1];
90 arg_idx += 2;
93 if (::strcmp(argv[arg_idx], "--android-sysroot") == 0) {
94 if ((arg_idx + 2 /* --android-sysroot [sysroot] input */) >= argc) {
99 sysroot = argv[arg_idx + 1];
100 arg_idx += 2;
119 // input is in argv[arg_idx]
121 input = argv[arg_idx];