Lines Matching refs:cp
223 const char* cp = argv[0] +1;
225 while (*cp != '\0') {
226 switch (*cp) {
392 if (strcmp(cp, "-min-sdk-version") == 0) {
401 } else if (strcmp(cp, "-target-sdk-version") == 0) {
410 } else if (strcmp(cp, "-max-sdk-version") == 0) {
419 } else if (strcmp(cp, "-version-code") == 0) {
428 } else if (strcmp(cp, "-version-name") == 0) {
437 } else if (strcmp(cp, "-values") == 0) {
439 } else if (strcmp(cp, "-custom-package") == 0) {
448 } else if (strcmp(cp, "-utf16") == 0) {
450 } else if (strcmp(cp, "-rename-manifest-package") == 0) {
459 } else if (strcmp(cp, "-rename-instrumentation-target-package") == 0) {
468 } else if (strcmp(cp, "-auto-add-overlay") == 0) {
471 fprintf(stderr, "ERROR: Unknown option '-%s'\n", cp);
475 cp += strlen(cp) - 1;
478 fprintf(stderr, "ERROR: Unknown flag '-%c'\n", *cp);
483 cp++;